oci 2.150.3__py3-none-any.whl → 2.152.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 (758) hide show
  1. oci/__init__.py +2 -5
  2. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  3. oci/addons/__init__.py +20 -0
  4. oci/addons/adk/__init__.py +13 -0
  5. oci/addons/adk/agent.py +852 -0
  6. oci/addons/adk/agent_client.py +682 -0
  7. oci/addons/adk/agent_error.py +36 -0
  8. oci/addons/adk/auth/__init__.py +3 -0
  9. oci/addons/adk/auth/auth_provider.py +28 -0
  10. oci/addons/adk/auth/factory.py +78 -0
  11. oci/addons/adk/auth/oci/__init__.py +3 -0
  12. oci/addons/adk/auth/oci/instance_principal.py +53 -0
  13. oci/addons/adk/auth/oci/resource_principal.py +53 -0
  14. oci/addons/adk/auth/oci/session.py +91 -0
  15. oci/addons/adk/auth/oci/user_principal.py +64 -0
  16. oci/addons/adk/constants.py +17 -0
  17. oci/addons/adk/logger.py +163 -0
  18. oci/addons/adk/run/__init__.py +3 -0
  19. oci/addons/adk/run/response.py +56 -0
  20. oci/addons/adk/run/types.py +32 -0
  21. oci/addons/adk/tool/__init__.py +13 -0
  22. oci/addons/adk/tool/function_tool.py +334 -0
  23. oci/addons/adk/tool/prebuilt/__init__.py +8 -0
  24. oci/addons/adk/tool/prebuilt/agentic_rag_tool.py +49 -0
  25. oci/addons/adk/tool/prebuilt/calculator_toolkit.py +104 -0
  26. oci/addons/adk/tool/tool.py +37 -0
  27. oci/addons/adk/tool/toolkit.py +189 -0
  28. oci/addons/adk/tool/utils.py +120 -0
  29. oci/addons/adk/util.py +325 -0
  30. oci/adm/application_dependency_management_client.py +36 -36
  31. oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
  32. oci/ai_document/ai_service_document_client.py +26 -26
  33. oci/ai_language/ai_service_language_client.py +44 -44
  34. oci/ai_speech/ai_service_speech_client.py +19 -19
  35. oci/ai_vision/ai_service_vision_client.py +28 -28
  36. oci/analytics/analytics_client.py +24 -24
  37. oci/announcements_service/announcement_client.py +5 -5
  38. oci/announcements_service/announcement_subscription_client.py +9 -9
  39. oci/announcements_service/announcements_preferences_client.py +4 -4
  40. oci/announcements_service/service_client.py +1 -1
  41. oci/apigateway/api_gateway_client.py +21 -21
  42. oci/apigateway/deployment_client.py +6 -6
  43. oci/apigateway/gateway_client.py +6 -6
  44. oci/apigateway/subscribers_client.py +6 -6
  45. oci/apigateway/usage_plans_client.py +6 -6
  46. oci/apigateway/work_requests_client.py +5 -5
  47. oci/apm_config/config_client.py +12 -12
  48. oci/apm_control_plane/apm_domain_client.py +14 -14
  49. oci/apm_synthetics/apm_synthetic_client.py +28 -28
  50. oci/apm_traces/attributes_client.py +8 -8
  51. oci/apm_traces/query_client.py +2 -2
  52. oci/apm_traces/trace_client.py +4 -4
  53. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  54. oci/artifacts/artifacts_client.py +32 -32
  55. oci/audit/audit_client.py +3 -3
  56. oci/autoscaling/auto_scaling_client.py +11 -11
  57. oci/bastion/bastion_client.py +15 -15
  58. oci/bds/bds_client.py +84 -84
  59. oci/blockchain/blockchain_platform_client.py +27 -27
  60. oci/budget/budget_client.py +10 -10
  61. oci/capacity_management/capacity_management_client.py +32 -32
  62. oci/certificates/certificates_client.py +5 -5
  63. oci/certificates_management/certificates_management_client.py +32 -32
  64. oci/cims/incident_client.py +6 -6
  65. oci/cloud_bridge/common_client.py +5 -5
  66. oci/cloud_bridge/discovery_client.py +15 -15
  67. oci/cloud_bridge/inventory_client.py +16 -16
  68. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  69. oci/cloud_guard/cloud_guard_client.py +155 -155
  70. oci/cloud_migrations/migration_client.py +43 -43
  71. oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
  72. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  73. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  74. oci/compute_instance_agent/plugin_client.py +2 -2
  75. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  76. oci/container_engine/container_engine_client.py +46 -46
  77. oci/container_instances/container_instance_client.py +18 -18
  78. oci/core/blockstorage_client.py +60 -60
  79. oci/core/compute_client.py +117 -117
  80. oci/core/compute_management_client.py +32 -32
  81. oci/core/virtual_network_client.py +258 -258
  82. oci/dashboard_service/dashboard_client.py +6 -6
  83. oci/dashboard_service/dashboard_group_client.py +6 -6
  84. oci/data_catalog/data_catalog_client.py +149 -149
  85. oci/data_flow/data_flow_client.py +45 -45
  86. oci/data_integration/data_integration_client.py +163 -163
  87. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  88. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  89. oci/data_safe/data_safe_client.py +317 -317
  90. oci/data_science/data_science_client.py +145 -145
  91. oci/database/database_client.py +606 -427
  92. oci/database/models/__init__.py +4 -0
  93. oci/database/models/system_version_minor_version_collection.py +70 -0
  94. oci/database/models/system_version_minor_version_summary.py +70 -0
  95. oci/database_management/db_management_client.py +356 -230
  96. oci/database_management/db_management_client_composite_operations.py +44 -0
  97. oci/database_management/diagnosability_client.py +4 -4
  98. oci/database_management/managed_my_sql_databases_client.py +7 -247
  99. oci/database_management/models/__init__.py +0 -4
  100. oci/database_management/models/database_diagnostics_and_management_feature_details.py +35 -4
  101. oci/database_management/models/disable_database_management_feature_details.py +33 -2
  102. oci/database_management/models/disable_external_container_database_management_feature_details.py +33 -2
  103. oci/database_management/models/discovered_external_database.py +64 -2
  104. oci/database_management/models/exadata_infrastructure_lifecycle_state_values.py +40 -36
  105. oci/database_management/models/external_database_diagnostics_and_management_feature_details.py +64 -2
  106. oci/database_management/models/managed_database.py +2 -4
  107. oci/database_management/models/managed_database_summary.py +2 -4
  108. oci/database_management/models/modify_database_management_feature_details.py +1 -1
  109. oci/database_management/perfhub_client.py +1 -1
  110. oci/database_management/sql_tuning_client.py +17 -17
  111. oci/database_migration/database_migration_client.py +42 -42
  112. oci/database_migration/models/migration.py +7 -3
  113. oci/database_migration/models/migration_job_progress_resource.py +7 -3
  114. oci/database_migration/models/migration_job_progress_summary.py +7 -3
  115. oci/database_migration/models/migration_phase_summary.py +7 -3
  116. oci/database_migration/models/my_sql_migration.py +1 -1
  117. oci/database_migration/models/oracle_migration.py +1 -1
  118. oci/database_migration/models/parameter_file_version.py +1 -1
  119. oci/database_migration/models/parameter_file_version_collection.py +3 -3
  120. oci/database_migration/models/parameter_file_version_summary.py +1 -1
  121. oci/database_migration/models/phase_status.py +7 -3
  122. oci/database_migration/models/resume_job_details.py +7 -3
  123. oci/database_migration/models/start_migration_details.py +7 -3
  124. oci/database_migration/models/update_oracle_migration_details.py +2 -2
  125. oci/database_tools/database_tools_client.py +23 -23
  126. oci/dblm/db_life_cycle_management_client.py +14 -14
  127. oci/delegate_access_control/delegate_access_control_client.py +26 -26
  128. oci/delegate_access_control/work_request_client.py +4 -4
  129. oci/demand_signal/occ_demand_signal_client.py +7 -7
  130. oci/desktops/desktop_service_client.py +21 -21
  131. oci/devops/devops_client.py +141 -141
  132. oci/disaster_recovery/disaster_recovery_client.py +31 -31
  133. oci/dns/dns_client.py +54 -54
  134. oci/dts/appliance_export_job_client.py +6 -6
  135. oci/dts/shipping_vendors_client.py +1 -1
  136. oci/dts/transfer_appliance_client.py +8 -8
  137. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  138. oci/dts/transfer_device_client.py +5 -5
  139. oci/dts/transfer_job_client.py +6 -6
  140. oci/dts/transfer_package_client.py +7 -7
  141. oci/em_warehouse/em_warehouse_client.py +13 -13
  142. oci/email/email_client.py +31 -31
  143. oci/email_data_plane/email_dp_client.py +1 -1
  144. oci/events/events_client.py +6 -6
  145. oci/file_storage/file_storage_client.py +74 -74
  146. oci/fleet_apps_management/__init__.py +8 -2
  147. oci/fleet_apps_management/fleet_apps_management_admin_client.py +396 -84
  148. oci/fleet_apps_management/fleet_apps_management_admin_client_composite_operations.py +92 -11
  149. oci/fleet_apps_management/fleet_apps_management_catalog_client.py +969 -0
  150. oci/fleet_apps_management/fleet_apps_management_catalog_client_composite_operations.py +246 -0
  151. oci/fleet_apps_management/fleet_apps_management_client.py +248 -670
  152. oci/fleet_apps_management/fleet_apps_management_client_composite_operations.py +49 -7
  153. oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +17 -14
  154. oci/fleet_apps_management/fleet_apps_management_maintenance_window_client_composite_operations.py +1 -1
  155. oci/fleet_apps_management/fleet_apps_management_operations_client.py +597 -98
  156. oci/fleet_apps_management/fleet_apps_management_operations_client_composite_operations.py +46 -4
  157. oci/fleet_apps_management/fleet_apps_management_provision_client.py +814 -0
  158. oci/fleet_apps_management/fleet_apps_management_provision_client_composite_operations.py +202 -0
  159. oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +952 -135
  160. oci/fleet_apps_management/fleet_apps_management_runbooks_client_composite_operations.py +218 -6
  161. oci/fleet_apps_management/fleet_apps_management_work_request_client.py +656 -0
  162. oci/fleet_apps_management/fleet_apps_management_work_request_client_composite_operations.py +26 -0
  163. oci/fleet_apps_management/models/__init__.py +155 -5
  164. oci/fleet_apps_management/models/action_group.py +62 -233
  165. oci/fleet_apps_management/models/action_group_based_user_action_details.py +2 -2
  166. oci/fleet_apps_management/models/action_group_details.py +57 -141
  167. oci/fleet_apps_management/models/activity_resource_target.py +1 -1
  168. oci/fleet_apps_management/models/announcement_collection.py +3 -3
  169. oci/fleet_apps_management/models/announcement_summary.py +5 -5
  170. oci/fleet_apps_management/models/api_based_execution_details.py +2 -2
  171. oci/fleet_apps_management/models/artifact_details.py +1 -1
  172. oci/fleet_apps_management/models/associated_fleet_credential_details.py +3 -3
  173. oci/fleet_apps_management/models/associated_fleet_property_details.py +3 -3
  174. oci/fleet_apps_management/models/associated_fleet_resource_details.py +1 -1
  175. oci/fleet_apps_management/models/associated_local_task_details.py +2 -2
  176. oci/fleet_apps_management/models/associated_scheduler_definition.py +1 -32
  177. oci/fleet_apps_management/models/associated_shared_task_details.py +1 -1
  178. oci/fleet_apps_management/models/associated_task_details.py +1 -1
  179. oci/fleet_apps_management/models/catalog_content_details.py +80 -0
  180. oci/fleet_apps_management/models/catalog_git_result_config.py +153 -0
  181. oci/fleet_apps_management/models/catalog_git_source_config.py +152 -0
  182. oci/fleet_apps_management/models/catalog_item.py +874 -0
  183. oci/fleet_apps_management/models/catalog_item_collection.py +70 -0
  184. oci/fleet_apps_management/models/catalog_item_summary.py +689 -0
  185. oci/fleet_apps_management/models/catalog_marketplace_source_config.py +117 -0
  186. oci/fleet_apps_management/models/catalog_par_result_config.py +126 -0
  187. oci/fleet_apps_management/models/catalog_par_source_config.py +218 -0
  188. oci/fleet_apps_management/models/catalog_result_payload.py +146 -0
  189. oci/fleet_apps_management/models/catalog_source_payload.py +130 -0
  190. oci/fleet_apps_management/models/catalog_source_template_config.py +179 -0
  191. oci/fleet_apps_management/models/catalog_template_result_config.py +87 -0
  192. oci/fleet_apps_management/models/change_catalog_item_compartment_details.py +74 -0
  193. oci/fleet_apps_management/models/change_fleet_compartment_details.py +74 -0
  194. oci/fleet_apps_management/models/change_patch_compartment_details.py +74 -0
  195. oci/fleet_apps_management/models/change_platform_configuration_compartment_details.py +74 -0
  196. oci/fleet_apps_management/models/change_property_compartment_details.py +74 -0
  197. oci/fleet_apps_management/models/change_provision_compartment_details.py +74 -0
  198. oci/fleet_apps_management/models/change_runbook_compartment_details.py +74 -0
  199. oci/fleet_apps_management/models/change_task_record_compartment_details.py +74 -0
  200. oci/fleet_apps_management/models/check_resource_tagging_details.py +3 -3
  201. oci/fleet_apps_management/models/clone_catalog_item_details.py +105 -0
  202. oci/fleet_apps_management/models/compliance_detail_policy.py +1 -1
  203. oci/fleet_apps_management/models/compliance_detail_product.py +2 -2
  204. oci/fleet_apps_management/models/compliance_detail_resource.py +3 -3
  205. oci/fleet_apps_management/models/compliance_detail_target.py +2 -2
  206. oci/fleet_apps_management/models/compliance_patch_detail.py +2 -2
  207. oci/fleet_apps_management/models/compliance_policy.py +49 -2
  208. oci/fleet_apps_management/models/compliance_policy_collection.py +3 -3
  209. oci/fleet_apps_management/models/compliance_policy_rule.py +16 -16
  210. oci/fleet_apps_management/models/compliance_policy_rule_collection.py +1 -1
  211. oci/fleet_apps_management/models/compliance_policy_rule_summary.py +16 -16
  212. oci/fleet_apps_management/models/compliance_policy_summary.py +32 -1
  213. oci/fleet_apps_management/models/compliance_record.py +102 -3
  214. oci/fleet_apps_management/models/compliance_record_aggregation.py +3 -3
  215. oci/fleet_apps_management/models/compliance_record_aggregation_collection.py +1 -1
  216. oci/fleet_apps_management/models/compliance_record_collection.py +1 -1
  217. oci/fleet_apps_management/models/compliance_record_dimension.py +1 -1
  218. oci/fleet_apps_management/models/compliance_record_summary.py +102 -3
  219. oci/fleet_apps_management/models/compliance_report.py +32 -1
  220. oci/fleet_apps_management/models/compliance_report_patch_detail.py +1 -1
  221. oci/fleet_apps_management/models/compliance_report_product.py +1 -1
  222. oci/fleet_apps_management/models/compliance_report_resource.py +1 -1
  223. oci/fleet_apps_management/models/compliance_report_target.py +1 -1
  224. oci/fleet_apps_management/models/component_properties.py +20 -30
  225. oci/fleet_apps_management/models/condition.py +1 -1
  226. oci/fleet_apps_management/models/config_association_details.py +1 -1
  227. oci/fleet_apps_management/models/config_category_details.py +20 -4
  228. oci/fleet_apps_management/models/config_file_details.py +99 -0
  229. oci/fleet_apps_management/models/confirm_targets_details.py +1 -1
  230. oci/fleet_apps_management/models/content_details.py +12 -4
  231. oci/fleet_apps_management/models/create_catalog_item_details.py +452 -0
  232. oci/fleet_apps_management/models/create_compliance_policy_rule_details.py +17 -48
  233. oci/fleet_apps_management/models/create_fleet_credential_details.py +1 -32
  234. oci/fleet_apps_management/models/create_fleet_details.py +112 -151
  235. oci/fleet_apps_management/models/create_fleet_property_details.py +1 -32
  236. oci/fleet_apps_management/models/create_fleet_resource_details.py +1 -1
  237. oci/fleet_apps_management/models/create_maintenance_window_details.py +4 -78
  238. oci/fleet_apps_management/models/create_onboarding_details.py +1 -1
  239. oci/fleet_apps_management/models/create_patch_details.py +1 -1
  240. oci/fleet_apps_management/models/create_platform_configuration_details.py +4 -4
  241. oci/fleet_apps_management/models/create_property_details.py +4 -4
  242. oci/fleet_apps_management/models/create_provision_details.py +431 -0
  243. oci/fleet_apps_management/models/create_runbook_details.py +53 -53
  244. oci/fleet_apps_management/models/create_runbook_version_details.py +252 -0
  245. oci/fleet_apps_management/models/create_scheduler_definition_details.py +3 -34
  246. oci/fleet_apps_management/models/create_task_record_details.py +3 -3
  247. oci/fleet_apps_management/models/credential_config_category_details.py +2 -2
  248. oci/fleet_apps_management/models/credential_details.py +1 -1
  249. oci/fleet_apps_management/models/credential_entity_specific_details.py +1 -1
  250. oci/fleet_apps_management/models/custom_schedule.py +118 -0
  251. oci/fleet_apps_management/models/dependent_patch_details.py +1 -1
  252. oci/fleet_apps_management/models/deployed_resource_details.py +200 -0
  253. oci/fleet_apps_management/models/details.py +35 -4
  254. oci/fleet_apps_management/models/discovered_target.py +1 -1
  255. oci/fleet_apps_management/models/dynamic_resource_selection.py +76 -0
  256. oci/fleet_apps_management/models/enable_latest_policy_details.py +1 -1
  257. oci/fleet_apps_management/models/entity_execution_details.py +1 -1
  258. oci/fleet_apps_management/models/environment_config_category_details.py +2 -2
  259. oci/fleet_apps_management/models/environment_fleet_details.py +49 -0
  260. oci/fleet_apps_management/models/execution.py +32 -1
  261. oci/fleet_apps_management/models/execution_collection.py +1 -1
  262. oci/fleet_apps_management/models/execution_details.py +12 -4
  263. oci/fleet_apps_management/models/execution_summary.py +32 -1
  264. oci/fleet_apps_management/models/execution_workflow_details.py +1 -1
  265. oci/fleet_apps_management/models/export_compliance_report_details.py +2 -2
  266. oci/fleet_apps_management/models/file_input_argument.py +63 -0
  267. oci/fleet_apps_management/models/file_task_argument.py +83 -0
  268. oci/fleet_apps_management/models/fleet.py +80 -208
  269. oci/fleet_apps_management/models/fleet_based_action_group.py +186 -0
  270. oci/fleet_apps_management/models/fleet_based_action_group_details.py +223 -0
  271. oci/fleet_apps_management/models/fleet_collection.py +1 -1
  272. oci/fleet_apps_management/models/fleet_credential.py +3 -3
  273. oci/fleet_apps_management/models/fleet_credential_collection.py +1 -1
  274. oci/fleet_apps_management/models/fleet_credential_entity_specific_details.py +1 -1
  275. oci/fleet_apps_management/models/fleet_credential_summary.py +3 -3
  276. oci/fleet_apps_management/models/fleet_details.py +131 -0
  277. oci/fleet_apps_management/models/fleet_product_collection.py +1 -1
  278. oci/fleet_apps_management/models/fleet_product_summary.py +1 -1
  279. oci/fleet_apps_management/models/fleet_property.py +4 -4
  280. oci/fleet_apps_management/models/fleet_property_collection.py +1 -1
  281. oci/fleet_apps_management/models/fleet_property_summary.py +3 -3
  282. oci/fleet_apps_management/models/fleet_resource.py +32 -34
  283. oci/fleet_apps_management/models/fleet_resource_collection.py +1 -1
  284. oci/fleet_apps_management/models/fleet_resource_summary.py +32 -34
  285. oci/fleet_apps_management/models/fleet_summary.py +20 -32
  286. oci/fleet_apps_management/models/fleet_target.py +3 -3
  287. oci/fleet_apps_management/models/fleet_target_collection.py +1 -1
  288. oci/fleet_apps_management/models/fleet_target_summary.py +3 -3
  289. oci/fleet_apps_management/models/generate_compliance_report_details.py +1 -1
  290. oci/fleet_apps_management/models/generic_artifact.py +5 -5
  291. oci/fleet_apps_management/models/generic_artifact_details.py +1 -1
  292. oci/fleet_apps_management/models/generic_fleet_details.py +49 -0
  293. oci/fleet_apps_management/models/group.py +1 -1
  294. oci/fleet_apps_management/models/group_fleet_details.py +49 -0
  295. oci/fleet_apps_management/models/input_argument.py +12 -4
  296. oci/fleet_apps_management/models/input_file_content_details.py +99 -0
  297. oci/fleet_apps_management/models/input_file_object_storage_bucket_content_details.py +174 -0
  298. oci/fleet_apps_management/models/input_parameter.py +1 -1
  299. oci/fleet_apps_management/models/instance_summary.py +140 -0
  300. oci/fleet_apps_management/models/inventory_record.py +547 -0
  301. oci/fleet_apps_management/models/inventory_record_collection.py +70 -0
  302. oci/fleet_apps_management/models/inventory_record_component.py +163 -0
  303. oci/fleet_apps_management/models/inventory_record_patch_details.py +194 -0
  304. oci/fleet_apps_management/models/inventory_record_property.py +101 -0
  305. oci/fleet_apps_management/models/inventory_record_summary.py +535 -0
  306. oci/fleet_apps_management/models/inventory_resource_collection.py +1 -1
  307. oci/fleet_apps_management/models/inventory_resource_summary.py +1 -1
  308. oci/fleet_apps_management/models/job_activity.py +32 -1
  309. oci/fleet_apps_management/models/job_execution_details.py +194 -0
  310. oci/fleet_apps_management/models/key_encryption_credential_details.py +1 -1
  311. oci/fleet_apps_management/models/lifecycle_operation_config_category_details.py +49 -0
  312. oci/fleet_apps_management/models/maintenance_window.py +3 -77
  313. oci/fleet_apps_management/models/maintenance_window_collection.py +1 -1
  314. oci/fleet_apps_management/models/maintenance_window_schedule.py +87 -0
  315. oci/fleet_apps_management/models/maintenance_window_summary.py +3 -77
  316. oci/fleet_apps_management/models/manage_job_execution_details.py +1 -1
  317. oci/fleet_apps_management/models/manage_settings_details.py +1 -1
  318. oci/fleet_apps_management/models/managed_entity_aggregation.py +3 -3
  319. oci/fleet_apps_management/models/managed_entity_aggregation_collection.py +1 -1
  320. oci/fleet_apps_management/models/managed_entity_dimension.py +1 -1
  321. oci/fleet_apps_management/models/manual_resource_selection.py +49 -0
  322. oci/fleet_apps_management/models/model_property.py +10 -6
  323. oci/fleet_apps_management/models/{notification_preferences.py → notification_preference.py} +18 -18
  324. oci/fleet_apps_management/models/object_storage_bucket_config_file_details.py +174 -0
  325. oci/fleet_apps_management/models/object_storage_bucket_content_details.py +2 -2
  326. oci/fleet_apps_management/models/onboarding.py +69 -3
  327. oci/fleet_apps_management/models/onboarding_collection.py +1 -1
  328. oci/fleet_apps_management/models/onboarding_policy_collection.py +1 -1
  329. oci/fleet_apps_management/models/onboarding_policy_summary.py +1 -1
  330. oci/fleet_apps_management/models/onboarding_summary.py +69 -3
  331. oci/fleet_apps_management/models/operation_runbook.py +47 -16
  332. oci/fleet_apps_management/models/outcome.py +1 -1
  333. oci/fleet_apps_management/models/output_variable_details.py +1 -1
  334. oci/fleet_apps_management/models/output_variable_input_argument.py +2 -2
  335. oci/fleet_apps_management/models/output_variable_mapping.py +1 -1
  336. oci/fleet_apps_management/models/patch.py +1 -1
  337. oci/fleet_apps_management/models/patch_collection.py +1 -1
  338. oci/fleet_apps_management/models/patch_file_content_details.py +99 -0
  339. oci/fleet_apps_management/models/patch_file_object_storage_bucket_content_details.py +174 -0
  340. oci/fleet_apps_management/models/patch_level_selection_details.py +1 -1
  341. oci/fleet_apps_management/models/patch_name_selection_details.py +1 -1
  342. oci/fleet_apps_management/models/patch_product.py +2 -2
  343. oci/fleet_apps_management/models/patch_release_date_selection_details.py +1 -1
  344. oci/fleet_apps_management/models/patch_selection_details.py +1 -1
  345. oci/fleet_apps_management/models/patch_summary.py +1 -1
  346. oci/fleet_apps_management/models/patch_type.py +1 -1
  347. oci/fleet_apps_management/models/patch_type_config_category_details.py +2 -2
  348. oci/fleet_apps_management/models/pause_details.py +1 -1
  349. oci/fleet_apps_management/models/plain_text_credential_details.py +1 -1
  350. oci/fleet_apps_management/models/platform_configuration.py +10 -6
  351. oci/fleet_apps_management/models/platform_configuration_collection.py +1 -1
  352. oci/fleet_apps_management/models/platform_configuration_summary.py +3 -3
  353. oci/fleet_apps_management/models/platform_specific_artifact.py +5 -5
  354. oci/fleet_apps_management/models/platform_specific_artifact_details.py +2 -2
  355. oci/fleet_apps_management/models/preferences.py +175 -24
  356. oci/fleet_apps_management/models/previous_task_instance_details.py +128 -0
  357. oci/fleet_apps_management/models/previous_task_instance_run_on_details.py +80 -0
  358. oci/fleet_apps_management/models/product_config_category_details.py +2 -2
  359. oci/fleet_apps_management/models/product_fleet_details.py +49 -0
  360. oci/fleet_apps_management/models/product_stack_as_product_sub_category_details.py +1 -1
  361. oci/fleet_apps_management/models/product_stack_config_category_details.py +2 -2
  362. oci/fleet_apps_management/models/product_stack_generic_sub_category_details.py +1 -1
  363. oci/fleet_apps_management/models/product_stack_sub_category_details.py +1 -1
  364. oci/fleet_apps_management/models/product_version_details.py +1 -1
  365. oci/fleet_apps_management/models/properties.py +1 -1
  366. oci/fleet_apps_management/models/property_collection.py +1 -1
  367. oci/fleet_apps_management/models/property_summary.py +3 -3
  368. oci/fleet_apps_management/models/provision.py +997 -0
  369. oci/fleet_apps_management/models/provision_collection.py +70 -0
  370. oci/fleet_apps_management/models/provision_summary.py +738 -0
  371. oci/fleet_apps_management/models/publish_runbook_details.py +34 -3
  372. oci/fleet_apps_management/models/request_resource_validation_details.py +1 -1
  373. oci/fleet_apps_management/models/request_target_discovery_details.py +1 -1
  374. oci/fleet_apps_management/models/resource_collection.py +1 -1
  375. oci/fleet_apps_management/models/resource_credential_entity_specific_details.py +1 -1
  376. oci/fleet_apps_management/models/resource_selection.py +109 -0
  377. oci/fleet_apps_management/models/resource_summary.py +1 -1
  378. oci/fleet_apps_management/models/resource_tag_check_details.py +1 -1
  379. oci/fleet_apps_management/models/resource_tag_enablement_info.py +1 -1
  380. oci/fleet_apps_management/models/rollback_workflow_details.py +1 -1
  381. oci/fleet_apps_management/models/rule.py +3 -3
  382. oci/fleet_apps_management/models/run_on_details.py +115 -0
  383. oci/fleet_apps_management/models/runbook.py +116 -69
  384. oci/fleet_apps_management/models/runbook_collection.py +1 -1
  385. oci/fleet_apps_management/models/runbook_summary.py +65 -34
  386. oci/fleet_apps_management/models/runbook_version.py +542 -0
  387. oci/fleet_apps_management/models/runbook_version_collection.py +70 -0
  388. oci/fleet_apps_management/models/runbook_version_summary.py +533 -0
  389. oci/fleet_apps_management/models/schedule.py +25 -97
  390. oci/fleet_apps_management/models/schedule_instance_run_on_details.py +80 -0
  391. oci/fleet_apps_management/models/scheduled_fleet_collection.py +1 -1
  392. oci/fleet_apps_management/models/scheduled_fleet_summary.py +35 -82
  393. oci/fleet_apps_management/models/scheduler_definition.py +3 -112
  394. oci/fleet_apps_management/models/scheduler_definition_collection.py +1 -1
  395. oci/fleet_apps_management/models/scheduler_definition_summary.py +5 -83
  396. oci/fleet_apps_management/models/scheduler_execution_collection.py +70 -0
  397. oci/fleet_apps_management/models/scheduler_execution_summary.py +753 -0
  398. oci/fleet_apps_management/models/scheduler_job.py +40 -102
  399. oci/fleet_apps_management/models/scheduler_job_aggregation.py +3 -3
  400. oci/fleet_apps_management/models/scheduler_job_aggregation_collection.py +1 -1
  401. oci/fleet_apps_management/models/scheduler_job_collection.py +1 -1
  402. oci/fleet_apps_management/models/scheduler_job_dimension.py +1 -1
  403. oci/fleet_apps_management/models/scheduler_job_summary.py +18 -96
  404. oci/fleet_apps_management/models/script_based_execution_details.py +66 -4
  405. oci/fleet_apps_management/models/selection_criteria.py +1 -1
  406. oci/fleet_apps_management/models/self_hosted_instance_config_category_details.py +117 -0
  407. oci/fleet_apps_management/models/self_hosted_instance_run_on_details.py +80 -0
  408. oci/fleet_apps_management/models/set_default_runbook_details.py +1 -1
  409. oci/fleet_apps_management/models/step_based_user_action_details.py +2 -2
  410. oci/fleet_apps_management/models/step_collection.py +1 -1
  411. oci/fleet_apps_management/models/step_summary.py +11 -11
  412. oci/fleet_apps_management/models/string_input_argument.py +2 -2
  413. oci/fleet_apps_management/models/string_task_argument.py +87 -0
  414. oci/fleet_apps_management/models/target_credential_entity_specific_details.py +1 -1
  415. oci/fleet_apps_management/models/target_resource.py +1 -1
  416. oci/fleet_apps_management/models/task.py +1 -44
  417. oci/fleet_apps_management/models/task_argument.py +71 -34
  418. oci/fleet_apps_management/models/task_notification_preferences.py +1 -1
  419. oci/fleet_apps_management/models/task_record.py +6 -6
  420. oci/fleet_apps_management/models/task_record_collection.py +4 -4
  421. oci/fleet_apps_management/models/task_record_summary.py +6 -6
  422. oci/fleet_apps_management/models/task_variable.py +1 -1
  423. oci/fleet_apps_management/models/terraform_based_execution_details.py +173 -0
  424. oci/fleet_apps_management/models/time_based_pause_details.py +1 -1
  425. oci/fleet_apps_management/models/upcoming_schedule.py +101 -0
  426. oci/fleet_apps_management/models/update_catalog_item_details.py +229 -0
  427. oci/fleet_apps_management/models/update_compliance_policy_rule_details.py +16 -16
  428. oci/fleet_apps_management/models/update_fleet_credential_details.py +1 -1
  429. oci/fleet_apps_management/models/update_fleet_details.py +69 -32
  430. oci/fleet_apps_management/models/update_fleet_property_details.py +1 -1
  431. oci/fleet_apps_management/models/update_fleet_resource_details.py +1 -1
  432. oci/fleet_apps_management/models/update_maintenance_window_details.py +1 -75
  433. oci/fleet_apps_management/models/update_onboarding_details.py +1 -1
  434. oci/fleet_apps_management/models/update_patch_details.py +1 -32
  435. oci/fleet_apps_management/models/update_platform_configuration_details.py +1 -1
  436. oci/fleet_apps_management/models/update_property_details.py +1 -1
  437. oci/fleet_apps_management/models/update_provision_details.py +167 -0
  438. oci/fleet_apps_management/models/update_runbook_details.py +24 -51
  439. oci/fleet_apps_management/models/update_runbook_version_details.py +155 -0
  440. oci/fleet_apps_management/models/update_scheduler_definition_details.py +1 -32
  441. oci/fleet_apps_management/models/update_scheduler_job_details.py +1 -1
  442. oci/fleet_apps_management/models/update_task_record_details.py +2 -2
  443. oci/fleet_apps_management/models/user_action_based_pause_details.py +1 -1
  444. oci/fleet_apps_management/models/user_action_details.py +12 -4
  445. oci/fleet_apps_management/models/variable.py +1 -1
  446. oci/fleet_apps_management/models/vault_secret_credential_details.py +1 -1
  447. oci/fleet_apps_management/models/{associations.py → version.py} +62 -31
  448. oci/fleet_apps_management/models/work_request.py +84 -4
  449. oci/fleet_apps_management/models/work_request_error.py +1 -1
  450. oci/fleet_apps_management/models/work_request_error_collection.py +1 -1
  451. oci/fleet_apps_management/models/work_request_log_entry.py +1 -1
  452. oci/fleet_apps_management/models/work_request_log_entry_collection.py +1 -1
  453. oci/fleet_apps_management/models/work_request_resource.py +1 -1
  454. oci/fleet_apps_management/models/work_request_summary.py +84 -4
  455. oci/fleet_apps_management/models/work_request_summary_collection.py +1 -1
  456. oci/fleet_apps_management/models/workflow_component.py +1 -1
  457. oci/fleet_apps_management/models/workflow_group.py +1 -1
  458. oci/fleet_apps_management/models/workflow_group_component.py +1 -1
  459. oci/fleet_apps_management/models/workflow_task_component.py +1 -1
  460. oci/fleet_software_update/fleet_software_update_client.py +46 -46
  461. oci/functions/functions_invoke_client.py +1 -1
  462. oci/functions/functions_management_client.py +16 -16
  463. oci/fusion_apps/fusion_applications_client.py +41 -41
  464. oci/generative_ai/generative_ai_client.py +22 -22
  465. oci/generative_ai/models/create_dedicated_ai_cluster_details.py +4 -0
  466. oci/generative_ai/models/dedicated_ai_cluster.py +11 -3
  467. oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
  468. oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
  469. oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
  470. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  471. oci/globally_distributed_database/sharded_database_service_client.py +58 -58
  472. oci/golden_gate/golden_gate_client.py +89 -89
  473. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  474. oci/governance_rules_control_plane/work_request_client.py +5 -5
  475. oci/healthchecks/health_checks_client.py +17 -17
  476. oci/identity/identity_client.py +145 -145
  477. oci/identity_data_plane/dataplane_client.py +2 -2
  478. oci/identity_domains/identity_domains_client.py +311 -311
  479. oci/integration/integration_instance_client.py +19 -19
  480. oci/jms/java_management_service_client.py +79 -79
  481. oci/jms_java_downloads/java_download_client.py +25 -25
  482. oci/key_management/ekm_client.py +5 -5
  483. oci/key_management/kms_crypto_client.py +6 -6
  484. oci/key_management/kms_hsm_cluster_client.py +12 -12
  485. oci/key_management/kms_management_client.py +21 -21
  486. oci/key_management/kms_vault_client.py +14 -14
  487. oci/license_manager/license_manager_client.py +18 -18
  488. oci/limits/limits_client.py +4 -4
  489. oci/limits/quotas_client.py +7 -7
  490. oci/load_balancer/load_balancer_client.py +61 -61
  491. oci/lockbox/lockbox_client.py +24 -24
  492. oci/log_analytics/log_analytics_client.py +1358 -250
  493. oci/log_analytics/models/__init__.py +38 -0
  494. oci/log_analytics/models/abstract_command_descriptor.py +11 -3
  495. oci/log_analytics/models/add_fields_command_descriptor.py +1 -1
  496. oci/log_analytics/models/add_insights_command_descriptor.py +1 -1
  497. oci/log_analytics/models/anomaly_command_descriptor.py +1 -1
  498. oci/log_analytics/models/auto_schedule.py +64 -0
  499. oci/log_analytics/models/bottom_command_descriptor.py +1 -1
  500. oci/log_analytics/models/bucket_command_descriptor.py +1 -1
  501. oci/log_analytics/models/change_lookup_compartment_details.py +70 -0
  502. oci/log_analytics/models/classify_command_descriptor.py +1 -1
  503. oci/log_analytics/models/cluster_command_descriptor.py +1 -1
  504. oci/log_analytics/models/cluster_compare_command_descriptor.py +1 -1
  505. oci/log_analytics/models/cluster_details_command_descriptor.py +1 -1
  506. oci/log_analytics/models/cluster_split_command_descriptor.py +1 -1
  507. oci/log_analytics/models/command_descriptor.py +1 -1
  508. oci/log_analytics/models/compare_command_descriptor.py +1 -1
  509. oci/log_analytics/models/create_log_analytics_object_collection_rule_details.py +134 -1
  510. oci/log_analytics/models/create_standard_task_details.py +1 -1
  511. oci/log_analytics/models/create_table_command_descriptor.py +1 -1
  512. oci/log_analytics/models/create_view_command_descriptor.py +1 -1
  513. oci/log_analytics/models/cron_schedule.py +3 -3
  514. oci/log_analytics/models/dedup_command_descriptor.py +1 -1
  515. oci/log_analytics/models/delete_command_descriptor.py +1 -1
  516. oci/log_analytics/models/delta_command_descriptor.py +1 -1
  517. oci/log_analytics/models/demo_mode_command_descriptor.py +1 -1
  518. oci/log_analytics/models/dependency.py +64 -2
  519. oci/log_analytics/models/dependent_parser.py +1 -1
  520. oci/log_analytics/models/dependent_source.py +1 -1
  521. oci/log_analytics/models/distinct_command_descriptor.py +1 -1
  522. oci/log_analytics/models/estimate_recall_data_size_result.py +64 -2
  523. oci/log_analytics/models/eval_command_descriptor.py +1 -1
  524. oci/log_analytics/models/event_stats_command_descriptor.py +1 -1
  525. oci/log_analytics/models/export_details.py +7 -3
  526. oci/log_analytics/models/extract_command_descriptor.py +1 -1
  527. oci/log_analytics/models/field_summary_command_descriptor.py +1 -1
  528. oci/log_analytics/models/fields_command_descriptor.py +1 -1
  529. oci/log_analytics/models/fixed_frequency_schedule.py +2 -2
  530. oci/log_analytics/models/frequent_command_descriptor.py +1 -1
  531. oci/log_analytics/models/generic_condition_block.py +251 -0
  532. oci/log_analytics/models/geo_stats_command_descriptor.py +1 -1
  533. oci/log_analytics/models/head_command_descriptor.py +1 -1
  534. oci/log_analytics/models/highlight_command_descriptor.py +1 -1
  535. oci/log_analytics/models/highlight_groups_command_descriptor.py +1 -1
  536. oci/log_analytics/models/highlight_rows_command_descriptor.py +1 -1
  537. oci/log_analytics/models/json_extract_command_descriptor.py +1 -1
  538. oci/log_analytics/models/link_command_descriptor.py +1 -1
  539. oci/log_analytics/models/link_details_command_descriptor.py +1 -1
  540. oci/log_analytics/models/log_analytics_entity.py +33 -2
  541. oci/log_analytics/models/log_analytics_entity_summary.py +33 -2
  542. oci/log_analytics/models/log_analytics_entity_topology_link.py +64 -2
  543. oci/log_analytics/models/log_analytics_field.py +64 -2
  544. oci/log_analytics/models/log_analytics_field_summary.py +64 -2
  545. oci/log_analytics/models/log_analytics_field_usages.py +101 -0
  546. oci/log_analytics/models/log_analytics_lookup.py +136 -2
  547. oci/log_analytics/models/log_analytics_object_collection_rule.py +164 -0
  548. oci/log_analytics/models/log_analytics_object_collection_rule_summary.py +31 -0
  549. oci/log_analytics/models/log_analytics_parser_field.py +33 -2
  550. oci/log_analytics/models/log_analytics_resource_category.py +64 -2
  551. oci/log_analytics/models/log_analytics_source_extended_field_definition.py +62 -4
  552. oci/log_analytics/models/log_analytics_template.py +594 -0
  553. oci/log_analytics/models/log_analytics_template_collection.py +70 -0
  554. oci/log_analytics/models/log_analytics_template_summary.py +439 -0
  555. oci/log_analytics/models/lookup_command_descriptor.py +1 -1
  556. oci/log_analytics/models/macro_command_descriptor.py +1 -1
  557. oci/log_analytics/models/map_command_descriptor.py +1 -1
  558. oci/log_analytics/models/metric_extraction.py +3 -3
  559. oci/log_analytics/models/module_command_descriptor.py +127 -3
  560. oci/log_analytics/models/multi_search_command_descriptor.py +1 -1
  561. oci/log_analytics/models/namespace.py +33 -2
  562. oci/log_analytics/models/namespace_summary.py +33 -2
  563. oci/log_analytics/models/nlp_command_descriptor.py +1 -1
  564. oci/log_analytics/models/outlier_command_descriptor.py +1 -1
  565. oci/log_analytics/models/overlapping_recall_summary.py +7 -3
  566. oci/log_analytics/models/parse_query_output.py +64 -2
  567. oci/log_analytics/models/parser_action.py +101 -0
  568. oci/log_analytics/models/parser_action_summary.py +132 -0
  569. oci/log_analytics/models/parser_action_summary_collection.py +70 -0
  570. oci/log_analytics/models/property_definition.py +195 -0
  571. oci/log_analytics/models/query_aggregation.py +89 -0
  572. oci/log_analytics/models/rare_command_descriptor.py +1 -1
  573. oci/log_analytics/models/recall_archived_data_details.py +35 -2
  574. oci/log_analytics/models/recall_definition.py +101 -0
  575. oci/log_analytics/models/recalled_data.py +40 -5
  576. oci/log_analytics/models/recalled_info.py +280 -0
  577. oci/log_analytics/models/recalled_info_collection.py +70 -0
  578. oci/log_analytics/models/regex_command_descriptor.py +1 -1
  579. oci/log_analytics/models/rename_command_descriptor.py +1 -1
  580. oci/log_analytics/models/schedule.py +11 -3
  581. oci/log_analytics/models/scheduled_task_summary.py +49 -2
  582. oci/log_analytics/models/search_command_descriptor.py +1 -1
  583. oci/log_analytics/models/search_lookup_command_descriptor.py +1 -1
  584. oci/log_analytics/models/sequence_command_descriptor.py +1 -1
  585. oci/log_analytics/models/sort_command_descriptor.py +1 -1
  586. oci/log_analytics/models/stats_command_descriptor.py +1 -1
  587. oci/log_analytics/models/stream_action.py +27 -0
  588. oci/log_analytics/models/tail_command_descriptor.py +1 -1
  589. oci/log_analytics/models/template_details.py +101 -0
  590. oci/log_analytics/models/template_facet.py +101 -0
  591. oci/log_analytics/models/template_params.py +101 -0
  592. oci/log_analytics/models/time_cluster_command_descriptor.py +1 -1
  593. oci/log_analytics/models/time_compare_command_descriptor.py +1 -1
  594. oci/log_analytics/models/time_stats_command_descriptor.py +1 -1
  595. oci/log_analytics/models/top_command_descriptor.py +1 -1
  596. oci/log_analytics/models/update_log_analytics_object_collection_rule_details.py +133 -0
  597. oci/log_analytics/models/update_lookup_metadata_details.py +68 -2
  598. oci/log_analytics/models/update_table_command_descriptor.py +122 -0
  599. oci/log_analytics/models/upsert_log_analytics_field_details.py +33 -2
  600. oci/log_analytics/models/usage_status_item.py +33 -2
  601. oci/log_analytics/models/variable_definition.py +214 -0
  602. oci/log_analytics/models/where_command_descriptor.py +1 -1
  603. oci/log_analytics/models/xml_extract_command_descriptor.py +1 -1
  604. oci/logging/logging_management_client.py +30 -30
  605. oci/loggingingestion/logging_client.py +1 -1
  606. oci/loggingsearch/log_search_client.py +1 -1
  607. oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
  608. oci/management_agent/management_agent_client.py +28 -28
  609. oci/management_dashboard/dashx_apis_client.py +14 -14
  610. oci/marketplace/account_client.py +2 -2
  611. oci/marketplace/marketplace_client.py +30 -30
  612. oci/marketplace_private_offer/attachment_client.py +5 -5
  613. oci/marketplace_private_offer/offer_client.py +6 -6
  614. oci/marketplace_publisher/attachment_client.py +5 -5
  615. oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
  616. oci/marketplace_publisher/offer_client.py +6 -6
  617. oci/media_services/media_services_client.py +60 -60
  618. oci/media_services/media_stream_client.py +2 -2
  619. oci/mngdmac/mac_device_client.py +3 -3
  620. oci/mngdmac/mac_order_client.py +11 -11
  621. oci/model_deployment/__init__.py +14 -0
  622. oci/model_deployment/model_deployment_client.py +331 -0
  623. oci/model_deployment/model_deployment_client_composite_operations.py +26 -0
  624. oci/model_deployment/models/__init__.py +14 -0
  625. oci/model_deployment/models/inference_result.py +70 -0
  626. oci/monitoring/monitoring_client.py +18 -18
  627. oci/mysql/channels_client.py +7 -7
  628. oci/mysql/db_backups_client.py +7 -7
  629. oci/mysql/db_system_client.py +17 -17
  630. oci/mysql/mysqlaas_client.py +7 -7
  631. oci/mysql/replicas_client.py +5 -5
  632. oci/mysql/work_requests_client.py +4 -4
  633. oci/network_firewall/network_firewall_client.py +86 -86
  634. oci/network_load_balancer/network_load_balancer_client.py +35 -35
  635. oci/nosql/nosql_client.py +24 -24
  636. oci/object_storage/object_storage_client.py +55 -55
  637. oci/oce/oce_instance_client.py +10 -10
  638. oci/oci_control_center/occ_metrics_client.py +3 -3
  639. oci/ocvp/cluster_client.py +5 -5
  640. oci/ocvp/esxi_host_client.py +8 -8
  641. oci/ocvp/sddc_client.py +14 -14
  642. oci/ocvp/work_request_client.py +4 -4
  643. oci/oda/management_client.py +59 -59
  644. oci/oda/oda_client.py +17 -17
  645. oci/oda/odapackage_client.py +7 -7
  646. oci/onesubscription/billing_schedule_client.py +1 -1
  647. oci/onesubscription/commitment_client.py +2 -2
  648. oci/onesubscription/computed_usage_client.py +3 -3
  649. oci/onesubscription/invoice_summary_client.py +2 -2
  650. oci/onesubscription/organization_subscription_client.py +1 -1
  651. oci/onesubscription/ratecard_client.py +1 -1
  652. oci/onesubscription/subscribed_service_client.py +2 -2
  653. oci/onesubscription/subscription_client.py +1 -1
  654. oci/ons/notification_control_plane_client.py +6 -6
  655. oci/ons/notification_data_plane_client.py +10 -10
  656. oci/opa/opa_instance_client.py +13 -13
  657. oci/opensearch/models/__init__.py +2 -0
  658. oci/opensearch/models/create_opensearch_cluster_details.py +291 -0
  659. oci/opensearch/models/create_opensearch_cluster_pipeline_details.py +31 -0
  660. oci/opensearch/models/opensearch_cluster.py +291 -0
  661. oci/opensearch/models/opensearch_cluster_pipeline.py +31 -0
  662. oci/opensearch/models/opensearch_cluster_pipeline_summary.py +31 -0
  663. oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py +31 -0
  664. oci/opensearch/models/resize_opensearch_cluster_vertical_details.py +217 -0
  665. oci/opensearch/models/shapes_details.py +70 -0
  666. oci/opensearch/models/update_cluster_specs_details.py +186 -0
  667. oci/opensearch/models/update_opensearch_cluster_pipeline_details.py +31 -0
  668. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  669. oci/opensearch/opensearch_cluster_client.py +87 -16
  670. oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
  671. oci/operator_access_control/access_requests_client.py +10 -10
  672. oci/operator_access_control/operator_actions_client.py +2 -2
  673. oci/operator_access_control/operator_control_assignment_client.py +8 -8
  674. oci/operator_access_control/operator_control_client.py +6 -6
  675. oci/opsi/operations_insights_client.py +181 -181
  676. oci/optimizer/optimizer_client.py +26 -26
  677. oci/os_management/event_client.py +15 -15
  678. oci/os_management/os_management_client.py +138 -138
  679. oci/os_management_hub/event_client.py +8 -8
  680. oci/os_management_hub/lifecycle_environment_client.py +13 -13
  681. oci/os_management_hub/managed_instance_client.py +33 -33
  682. oci/os_management_hub/managed_instance_group_client.py +26 -26
  683. oci/os_management_hub/management_station_client.py +10 -10
  684. oci/os_management_hub/onboarding_client.py +13 -13
  685. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  686. oci/os_management_hub/scheduled_job_client.py +7 -7
  687. oci/os_management_hub/software_source_client.py +33 -33
  688. oci/os_management_hub/work_request_client.py +5 -5
  689. oci/osp_gateway/address_rule_service_client.py +1 -1
  690. oci/osp_gateway/address_service_client.py +2 -2
  691. oci/osp_gateway/invoice_service_client.py +5 -5
  692. oci/osp_gateway/subscription_service_client.py +5 -5
  693. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  694. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  695. oci/osub_subscription/commitment_client.py +2 -2
  696. oci/osub_subscription/ratecard_client.py +1 -1
  697. oci/osub_subscription/subscription_client.py +1 -1
  698. oci/osub_usage/computed_usage_client.py +3 -3
  699. oci/psql/postgresql_client.py +34 -34
  700. oci/queue/queue_admin_client.py +11 -11
  701. oci/queue/queue_client.py +8 -8
  702. oci/recovery/database_recovery_client.py +26 -26
  703. oci/redis/redis_cluster_client.py +12 -12
  704. oci/resource_manager/resource_manager_client.py +52 -52
  705. oci/resource_scheduler/schedule_client.py +14 -14
  706. oci/resource_search/resource_search_client.py +3 -3
  707. oci/rover/rover_bundle_client.py +8 -8
  708. oci/rover/rover_cluster_client.py +8 -8
  709. oci/rover/rover_entitlement_client.py +6 -6
  710. oci/rover/rover_node_client.py +15 -15
  711. oci/rover/shape_client.py +1 -1
  712. oci/rover/work_requests_client.py +5 -5
  713. oci/sch/connector_plugins_client.py +2 -2
  714. oci/sch/service_connector_client.py +12 -12
  715. oci/secrets/secrets_client.py +3 -3
  716. oci/security_attribute/security_attribute_client.py +18 -18
  717. oci/service_catalog/service_catalog_client.py +26 -26
  718. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  719. oci/service_mesh/service_mesh_client.py +48 -48
  720. oci/stack_monitoring/stack_monitoring_client.py +87 -87
  721. oci/streaming/stream_admin_client.py +18 -18
  722. oci/streaming/stream_client.py +8 -8
  723. oci/tenant_manager_control_plane/domain_client.py +5 -5
  724. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  725. oci/tenant_manager_control_plane/governance_client.py +2 -2
  726. oci/tenant_manager_control_plane/link_client.py +3 -3
  727. oci/tenant_manager_control_plane/orders_client.py +2 -2
  728. oci/tenant_manager_control_plane/organization_client.py +10 -10
  729. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  730. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  731. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  732. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  733. oci/threat_intelligence/threatintel_client.py +5 -5
  734. oci/usage/resources_client.py +2 -2
  735. oci/usage/rewards_client.py +6 -6
  736. oci/usage/usagelimits_client.py +1 -1
  737. oci/usage_api/usageapi_client.py +33 -33
  738. oci/vault/vaults_client.py +13 -13
  739. oci/vbs_inst/vbs_instance_client.py +10 -10
  740. oci/version.py +1 -1
  741. oci/visual_builder/vb_instance_client.py +14 -14
  742. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  743. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  744. oci/waa/waa_client.py +13 -13
  745. oci/waa/work_request_client.py +4 -4
  746. oci/waas/redirect_client.py +6 -6
  747. oci/waas/waas_client.py +66 -66
  748. oci/waf/waf_client.py +24 -24
  749. oci/work_requests/work_request_client.py +4 -4
  750. oci/zpr/zpr_client.py +15 -15
  751. {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/METADATA +6 -1
  752. {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/RECORD +756 -623
  753. oci/database_management/models/disable_external_mysql_associated_service_details.py +0 -144
  754. oci/database_management/models/enable_external_mysql_associated_service_details.py +0 -144
  755. {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/LICENSE.txt +0 -0
  756. {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  757. {oci-2.150.3.dist-info → oci-2.152.0.dist-info}/WHEEL +0 -0
  758. {oci-2.150.3.dist-info → oci-2.152.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.150.3/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.152.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']
@@ -280,7 +280,7 @@ class DatabaseClient(object):
280
280
  :rtype: :class:`~oci.response.Response`
281
281
 
282
282
  :example:
283
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/add_standby_autonomous_container_database.py.html>`__ to see an example of how to use add_standby_autonomous_container_database API.
283
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/add_standby_autonomous_container_database.py.html>`__ to see an example of how to use add_standby_autonomous_container_database API.
284
284
  """
285
285
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
286
286
  required_arguments = ['autonomousContainerDatabaseId']
@@ -397,7 +397,7 @@ class DatabaseClient(object):
397
397
  :rtype: :class:`~oci.response.Response`
398
398
 
399
399
  :example:
400
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
400
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
401
401
  """
402
402
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
403
403
  required_arguments = ['cloudExadataInfrastructureId']
@@ -512,7 +512,7 @@ class DatabaseClient(object):
512
512
  :rtype: :class:`~oci.response.Response`
513
513
 
514
514
  :example:
515
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
515
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
516
516
  """
517
517
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
518
518
  required_arguments = ['exadataInfrastructureId']
@@ -630,7 +630,7 @@ class DatabaseClient(object):
630
630
  :rtype: :class:`~oci.response.Response`
631
631
 
632
632
  :example:
633
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
633
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
634
634
  """
635
635
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
636
636
  required_arguments = ['cloudVmClusterId']
@@ -750,7 +750,7 @@ class DatabaseClient(object):
750
750
  :rtype: :class:`~oci.response.Response`
751
751
 
752
752
  :example:
753
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
753
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
754
754
  """
755
755
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
756
756
  required_arguments = ['vmClusterId']
@@ -870,7 +870,7 @@ class DatabaseClient(object):
870
870
  :rtype: :class:`~oci.response.Response`
871
871
 
872
872
  :example:
873
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
873
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
874
874
  """
875
875
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
876
876
  required_arguments = ['autonomousDatabaseId']
@@ -987,7 +987,7 @@ class DatabaseClient(object):
987
987
  :rtype: :class:`~oci.response.Response`
988
988
 
989
989
  :example:
990
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
990
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
991
991
  """
992
992
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
993
993
  required_arguments = ['backupId']
@@ -1103,7 +1103,7 @@ class DatabaseClient(object):
1103
1103
  :rtype: :class:`~oci.response.Response`
1104
1104
 
1105
1105
  :example:
1106
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
1106
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
1107
1107
  """
1108
1108
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1109
1109
  required_arguments = ['executionWindowId']
@@ -1220,7 +1220,7 @@ class DatabaseClient(object):
1220
1220
  :rtype: :class:`~oci.response.Response`
1221
1221
 
1222
1222
  :example:
1223
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
1223
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
1224
1224
  """
1225
1225
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1226
1226
  required_arguments = ['schedulingPlanId']
@@ -1340,7 +1340,7 @@ class DatabaseClient(object):
1340
1340
  :rtype: :class:`~oci.response.Response`
1341
1341
 
1342
1342
  :example:
1343
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
1343
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
1344
1344
  """
1345
1345
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1346
1346
  required_arguments = ['autonomousContainerDatabaseId']
@@ -1462,7 +1462,7 @@ class DatabaseClient(object):
1462
1462
  :rtype: :class:`~oci.response.Response`
1463
1463
 
1464
1464
  :example:
1465
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1465
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1466
1466
  """
1467
1467
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1468
1468
  required_arguments = ['autonomousDatabaseId']
@@ -1580,7 +1580,7 @@ class DatabaseClient(object):
1580
1580
  :rtype: :class:`~oci.response.Response`
1581
1581
 
1582
1582
  :example:
1583
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_autonomous_database_software_image_compartment.py.html>`__ to see an example of how to use change_autonomous_database_software_image_compartment API.
1583
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
1584
1584
  """
1585
1585
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1586
1586
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -1698,7 +1698,7 @@ class DatabaseClient(object):
1698
1698
  :rtype: :class:`~oci.response.Response`
1699
1699
 
1700
1700
  :example:
1701
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
1701
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
1702
1702
  """
1703
1703
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1704
1704
  required_arguments = ['autonomousDatabaseId']
@@ -1820,7 +1820,7 @@ class DatabaseClient(object):
1820
1820
  :rtype: :class:`~oci.response.Response`
1821
1821
 
1822
1822
  :example:
1823
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1823
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1824
1824
  """
1825
1825
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1826
1826
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -1938,7 +1938,7 @@ class DatabaseClient(object):
1938
1938
  :rtype: :class:`~oci.response.Response`
1939
1939
 
1940
1940
  :example:
1941
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1941
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1942
1942
  """
1943
1943
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1944
1944
  required_arguments = ['autonomousVmClusterId']
@@ -2060,7 +2060,7 @@ class DatabaseClient(object):
2060
2060
  :rtype: :class:`~oci.response.Response`
2061
2061
 
2062
2062
  :example:
2063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
2063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
2064
2064
  """
2065
2065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2066
2066
  required_arguments = ['backupDestinationId']
@@ -2178,7 +2178,7 @@ class DatabaseClient(object):
2178
2178
  :rtype: :class:`~oci.response.Response`
2179
2179
 
2180
2180
  :example:
2181
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
2181
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
2182
2182
  """
2183
2183
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2184
2184
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -2298,7 +2298,7 @@ class DatabaseClient(object):
2298
2298
  :rtype: :class:`~oci.response.Response`
2299
2299
 
2300
2300
  :example:
2301
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
2301
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
2302
2302
  """
2303
2303
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2304
2304
  required_arguments = ['cloudExadataInfrastructureId']
@@ -2416,7 +2416,7 @@ class DatabaseClient(object):
2416
2416
  :rtype: :class:`~oci.response.Response`
2417
2417
 
2418
2418
  :example:
2419
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
2419
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
2420
2420
  """
2421
2421
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2422
2422
  required_arguments = ['cloudExadataInfrastructureId']
@@ -2534,7 +2534,7 @@ class DatabaseClient(object):
2534
2534
  :rtype: :class:`~oci.response.Response`
2535
2535
 
2536
2536
  :example:
2537
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
2537
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
2538
2538
  """
2539
2539
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2540
2540
  required_arguments = ['cloudVmClusterId']
@@ -2652,7 +2652,7 @@ class DatabaseClient(object):
2652
2652
  :rtype: :class:`~oci.response.Response`
2653
2653
 
2654
2654
  :example:
2655
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
2655
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
2656
2656
  """
2657
2657
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2658
2658
  required_arguments = ['cloudVmClusterId']
@@ -2774,7 +2774,7 @@ class DatabaseClient(object):
2774
2774
  :rtype: :class:`~oci.response.Response`
2775
2775
 
2776
2776
  :example:
2777
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
2777
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
2778
2778
  """
2779
2779
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2780
2780
  required_arguments = ['databaseSoftwareImageId']
@@ -2897,7 +2897,7 @@ class DatabaseClient(object):
2897
2897
  :rtype: :class:`~oci.response.Response`
2898
2898
 
2899
2899
  :example:
2900
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2900
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2901
2901
  """
2902
2902
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2903
2903
  required_arguments = ['autonomousContainerDatabaseId']
@@ -3028,7 +3028,7 @@ class DatabaseClient(object):
3028
3028
  :rtype: :class:`~oci.response.Response`
3029
3029
 
3030
3030
  :example:
3031
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
3031
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
3032
3032
  """
3033
3033
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3034
3034
  required_arguments = ['dbSystemId']
@@ -3139,7 +3139,7 @@ class DatabaseClient(object):
3139
3139
  :rtype: :class:`~oci.response.Response`
3140
3140
 
3141
3141
  :example:
3142
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
3142
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
3143
3143
  """
3144
3144
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3145
3145
  required_arguments = ['autonomousDatabaseId']
@@ -3256,7 +3256,7 @@ class DatabaseClient(object):
3256
3256
  :rtype: :class:`~oci.response.Response`
3257
3257
 
3258
3258
  :example:
3259
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_encryption_key_location.py.html>`__ to see an example of how to use change_encryption_key_location API.
3259
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_encryption_key_location.py.html>`__ to see an example of how to use change_encryption_key_location API.
3260
3260
  """
3261
3261
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3262
3262
  required_arguments = ['databaseId']
@@ -3375,7 +3375,7 @@ class DatabaseClient(object):
3375
3375
  :rtype: :class:`~oci.response.Response`
3376
3376
 
3377
3377
  :example:
3378
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
3378
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
3379
3379
  """
3380
3380
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3381
3381
  required_arguments = ['exadataInfrastructureId']
@@ -3493,7 +3493,7 @@ class DatabaseClient(object):
3493
3493
  :rtype: :class:`~oci.response.Response`
3494
3494
 
3495
3495
  :example:
3496
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
3496
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
3497
3497
  """
3498
3498
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3499
3499
  required_arguments = ['exadbVmClusterId']
@@ -3611,7 +3611,7 @@ class DatabaseClient(object):
3611
3611
  :rtype: :class:`~oci.response.Response`
3612
3612
 
3613
3613
  :example:
3614
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_exadb_vm_cluster_subscription.py.html>`__ to see an example of how to use change_exadb_vm_cluster_subscription API.
3614
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exadb_vm_cluster_subscription.py.html>`__ to see an example of how to use change_exadb_vm_cluster_subscription API.
3615
3615
  """
3616
3616
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3617
3617
  required_arguments = ['exadbVmClusterId']
@@ -3729,7 +3729,7 @@ class DatabaseClient(object):
3729
3729
  :rtype: :class:`~oci.response.Response`
3730
3730
 
3731
3731
  :example:
3732
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_exascale_db_storage_vault_compartment.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_compartment API.
3732
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
3733
3733
  """
3734
3734
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3735
3735
  required_arguments = ['exascaleDbStorageVaultId']
@@ -3847,7 +3847,7 @@ class DatabaseClient(object):
3847
3847
  :rtype: :class:`~oci.response.Response`
3848
3848
 
3849
3849
  :example:
3850
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_exascale_db_storage_vault_subscription.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_subscription API.
3850
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exascale_db_storage_vault_subscription.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_subscription API.
3851
3851
  """
3852
3852
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3853
3853
  required_arguments = ['exascaleDbStorageVaultId']
@@ -3970,7 +3970,7 @@ class DatabaseClient(object):
3970
3970
  :rtype: :class:`~oci.response.Response`
3971
3971
 
3972
3972
  :example:
3973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
3973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
3974
3974
  """
3975
3975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3976
3976
  required_arguments = ['externalContainerDatabaseId']
@@ -4092,7 +4092,7 @@ class DatabaseClient(object):
4092
4092
  :rtype: :class:`~oci.response.Response`
4093
4093
 
4094
4094
  :example:
4095
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
4095
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
4096
4096
  """
4097
4097
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4098
4098
  required_arguments = ['externalNonContainerDatabaseId']
@@ -4217,7 +4217,7 @@ class DatabaseClient(object):
4217
4217
  :rtype: :class:`~oci.response.Response`
4218
4218
 
4219
4219
  :example:
4220
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
4220
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
4221
4221
  """
4222
4222
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4223
4223
  required_arguments = ['externalPluggableDatabaseId']
@@ -4339,7 +4339,7 @@ class DatabaseClient(object):
4339
4339
  :rtype: :class:`~oci.response.Response`
4340
4340
 
4341
4341
  :example:
4342
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
4342
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
4343
4343
  """
4344
4344
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4345
4345
  required_arguments = ['keyStoreId']
@@ -4457,7 +4457,7 @@ class DatabaseClient(object):
4457
4457
  :rtype: :class:`~oci.response.Response`
4458
4458
 
4459
4459
  :example:
4460
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
4460
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
4461
4461
  """
4462
4462
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4463
4463
  required_arguments = ['databaseId']
@@ -4575,7 +4575,7 @@ class DatabaseClient(object):
4575
4575
  :rtype: :class:`~oci.response.Response`
4576
4576
 
4577
4577
  :example:
4578
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
4578
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
4579
4579
  """
4580
4580
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4581
4581
  required_arguments = ['oneoffPatchId']
@@ -4693,7 +4693,7 @@ class DatabaseClient(object):
4693
4693
  :rtype: :class:`~oci.response.Response`
4694
4694
 
4695
4695
  :example:
4696
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
4696
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
4697
4697
  """
4698
4698
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4699
4699
  required_arguments = ['schedulingPlanId']
@@ -4811,7 +4811,7 @@ class DatabaseClient(object):
4811
4811
  :rtype: :class:`~oci.response.Response`
4812
4812
 
4813
4813
  :example:
4814
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
4814
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
4815
4815
  """
4816
4816
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4817
4817
  required_arguments = ['schedulingPolicyId']
@@ -4930,7 +4930,7 @@ class DatabaseClient(object):
4930
4930
  :rtype: :class:`~oci.response.Response`
4931
4931
 
4932
4932
  :example:
4933
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
4933
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
4934
4934
  """
4935
4935
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4936
4936
  required_arguments = ['vmClusterId']
@@ -5047,7 +5047,7 @@ class DatabaseClient(object):
5047
5047
  :rtype: :class:`~oci.response.Response`
5048
5048
 
5049
5049
  :example:
5050
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
5050
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
5051
5051
  """
5052
5052
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5053
5053
  required_arguments = ['externalDatabaseConnectorId']
@@ -5164,7 +5164,7 @@ class DatabaseClient(object):
5164
5164
  :rtype: :class:`~oci.response.Response`
5165
5165
 
5166
5166
  :example:
5167
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
5167
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
5168
5168
  """
5169
5169
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5170
5170
  required_arguments = ['backupId']
@@ -5286,7 +5286,7 @@ class DatabaseClient(object):
5286
5286
  :rtype: :class:`~oci.response.Response`
5287
5287
 
5288
5288
  :example:
5289
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
5289
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
5290
5290
  """
5291
5291
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5292
5292
  required_arguments = ['autonomousDatabaseId']
@@ -5404,7 +5404,7 @@ class DatabaseClient(object):
5404
5404
  :rtype: :class:`~oci.response.Response`
5405
5405
 
5406
5406
  :example:
5407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
5407
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
5408
5408
  """
5409
5409
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5410
5410
  required_arguments = ['exadataInfrastructureId']
@@ -5517,7 +5517,7 @@ class DatabaseClient(object):
5517
5517
  :rtype: :class:`~oci.response.Response`
5518
5518
 
5519
5519
  :example:
5520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
5520
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
5521
5521
  """
5522
5522
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5523
5523
  required_arguments = ['autonomousDatabaseId']
@@ -5632,7 +5632,7 @@ class DatabaseClient(object):
5632
5632
  :rtype: :class:`~oci.response.Response`
5633
5633
 
5634
5634
  :example:
5635
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/confirm_key_store_details_are_correct.py.html>`__ to see an example of how to use confirm_key_store_details_are_correct API.
5635
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
5636
5636
  """
5637
5637
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5638
5638
  required_arguments = ['keyStoreId']
@@ -5753,7 +5753,7 @@ class DatabaseClient(object):
5753
5753
  :rtype: :class:`~oci.response.Response`
5754
5754
 
5755
5755
  :example:
5756
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/convert_standby_autonomous_container_database.py.html>`__ to see an example of how to use convert_standby_autonomous_container_database API.
5756
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_standby_autonomous_container_database.py.html>`__ to see an example of how to use convert_standby_autonomous_container_database API.
5757
5757
  """
5758
5758
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5759
5759
  required_arguments = ['autonomousContainerDatabaseId']
@@ -5866,7 +5866,7 @@ class DatabaseClient(object):
5866
5866
  :rtype: :class:`~oci.response.Response`
5867
5867
 
5868
5868
  :example:
5869
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
5869
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
5870
5870
  """
5871
5871
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5872
5872
  required_arguments = ['databaseId']
@@ -5984,7 +5984,7 @@ class DatabaseClient(object):
5984
5984
  :rtype: :class:`~oci.response.Response`
5985
5985
 
5986
5986
  :example:
5987
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
5987
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
5988
5988
  """
5989
5989
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5990
5990
  required_arguments = ['pluggableDatabaseId']
@@ -6108,7 +6108,7 @@ class DatabaseClient(object):
6108
6108
  :rtype: :class:`~oci.response.Response`
6109
6109
 
6110
6110
  :example:
6111
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/convert_to_standalone.py.html>`__ to see an example of how to use convert_to_standalone API.
6111
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_to_standalone.py.html>`__ to see an example of how to use convert_to_standalone API.
6112
6112
  """
6113
6113
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6114
6114
  required_arguments = ['databaseId']
@@ -6218,7 +6218,7 @@ class DatabaseClient(object):
6218
6218
  :rtype: :class:`~oci.response.Response`
6219
6219
 
6220
6220
  :example:
6221
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
6221
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
6222
6222
  """
6223
6223
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6224
6224
  required_arguments = []
@@ -6311,7 +6311,7 @@ class DatabaseClient(object):
6311
6311
  :rtype: :class:`~oci.response.Response`
6312
6312
 
6313
6313
  :example:
6314
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
6314
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
6315
6315
  """
6316
6316
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6317
6317
  required_arguments = []
@@ -6417,7 +6417,7 @@ class DatabaseClient(object):
6417
6417
  :rtype: :class:`~oci.response.Response`
6418
6418
 
6419
6419
  :example:
6420
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use create_autonomous_container_database_dataguard_association API.
6420
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
6421
6421
  """
6422
6422
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6423
6423
  required_arguments = ['autonomousContainerDatabaseId']
@@ -6523,7 +6523,7 @@ class DatabaseClient(object):
6523
6523
  :rtype: :class:`~oci.response.Response`
6524
6524
 
6525
6525
  :example:
6526
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
6526
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
6527
6527
  """
6528
6528
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6529
6529
  required_arguments = []
@@ -6619,7 +6619,7 @@ class DatabaseClient(object):
6619
6619
  :rtype: :class:`~oci.response.Response`
6620
6620
 
6621
6621
  :example:
6622
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
6622
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
6623
6623
  """
6624
6624
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6625
6625
  required_arguments = []
@@ -6715,7 +6715,7 @@ class DatabaseClient(object):
6715
6715
  :rtype: :class:`~oci.response.Response`
6716
6716
 
6717
6717
  :example:
6718
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
6718
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
6719
6719
  """
6720
6720
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6721
6721
  required_arguments = []
@@ -6811,7 +6811,7 @@ class DatabaseClient(object):
6811
6811
  :rtype: :class:`~oci.response.Response`
6812
6812
 
6813
6813
  :example:
6814
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
6814
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
6815
6815
  """
6816
6816
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6817
6817
  required_arguments = []
@@ -6904,7 +6904,7 @@ class DatabaseClient(object):
6904
6904
  :rtype: :class:`~oci.response.Response`
6905
6905
 
6906
6906
  :example:
6907
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
6907
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
6908
6908
  """
6909
6909
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6910
6910
  required_arguments = []
@@ -6998,7 +6998,7 @@ class DatabaseClient(object):
6998
6998
  :rtype: :class:`~oci.response.Response`
6999
6999
 
7000
7000
  :example:
7001
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
7001
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
7002
7002
  """
7003
7003
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7004
7004
  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.150.3/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
7097
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
7098
7098
  """
7099
7099
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7100
7100
  required_arguments = []
@@ -7178,6 +7178,10 @@ class DatabaseClient(object):
7178
7178
  :param str opc_request_id: (optional)
7179
7179
  Unique identifier for the request.
7180
7180
 
7181
+ :param bool opc_dry_run: (optional)
7182
+ Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually
7183
+ creating or updating a resource and is used only to perform validation on the submitted data.
7184
+
7181
7185
  :param obj retry_strategy: (optional)
7182
7186
  A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
7183
7187
 
@@ -7194,7 +7198,7 @@ class DatabaseClient(object):
7194
7198
  :rtype: :class:`~oci.response.Response`
7195
7199
 
7196
7200
  :example:
7197
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
7201
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
7198
7202
  """
7199
7203
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7200
7204
  required_arguments = []
@@ -7208,7 +7212,8 @@ class DatabaseClient(object):
7208
7212
  "allow_control_chars",
7209
7213
  "retry_strategy",
7210
7214
  "opc_retry_token",
7211
- "opc_request_id"
7215
+ "opc_request_id",
7216
+ "opc_dry_run"
7212
7217
  ]
7213
7218
  extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
7214
7219
  if extra_kwargs:
@@ -7219,7 +7224,8 @@ class DatabaseClient(object):
7219
7224
  "accept": "application/json",
7220
7225
  "content-type": "application/json",
7221
7226
  "opc-retry-token": kwargs.get("opc_retry_token", missing),
7222
- "opc-request-id": kwargs.get("opc_request_id", missing)
7227
+ "opc-request-id": kwargs.get("opc_request_id", missing),
7228
+ "opc-dry-run": kwargs.get("opc_dry_run", missing)
7223
7229
  }
7224
7230
  header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
7225
7231
 
@@ -7276,6 +7282,10 @@ class DatabaseClient(object):
7276
7282
  :param str opc_request_id: (optional)
7277
7283
  Unique identifier for the request.
7278
7284
 
7285
+ :param bool opc_dry_run: (optional)
7286
+ Indicates that the request is a dry run, if set to \"true\". A dry run request does not actually
7287
+ creating or updating a resource and is used only to perform validation on the submitted data.
7288
+
7279
7289
  :param obj retry_strategy: (optional)
7280
7290
  A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
7281
7291
 
@@ -7292,7 +7302,7 @@ class DatabaseClient(object):
7292
7302
  :rtype: :class:`~oci.response.Response`
7293
7303
 
7294
7304
  :example:
7295
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
7305
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
7296
7306
  """
7297
7307
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7298
7308
  required_arguments = []
@@ -7306,7 +7316,8 @@ class DatabaseClient(object):
7306
7316
  "allow_control_chars",
7307
7317
  "retry_strategy",
7308
7318
  "opc_retry_token",
7309
- "opc_request_id"
7319
+ "opc_request_id",
7320
+ "opc_dry_run"
7310
7321
  ]
7311
7322
  extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
7312
7323
  if extra_kwargs:
@@ -7317,7 +7328,8 @@ class DatabaseClient(object):
7317
7328
  "accept": "application/json",
7318
7329
  "content-type": "application/json",
7319
7330
  "opc-retry-token": kwargs.get("opc_retry_token", missing),
7320
- "opc-request-id": kwargs.get("opc_request_id", missing)
7331
+ "opc-request-id": kwargs.get("opc_request_id", missing),
7332
+ "opc-dry-run": kwargs.get("opc_dry_run", missing)
7321
7333
  }
7322
7334
  header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
7323
7335
 
@@ -7392,7 +7404,7 @@ class DatabaseClient(object):
7392
7404
  :rtype: :class:`~oci.response.Response`
7393
7405
 
7394
7406
  :example:
7395
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
7407
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
7396
7408
  """
7397
7409
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7398
7410
  required_arguments = ['dbNodeId']
@@ -7503,7 +7515,7 @@ class DatabaseClient(object):
7503
7515
  :rtype: :class:`~oci.response.Response`
7504
7516
 
7505
7517
  :example:
7506
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
7518
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
7507
7519
  """
7508
7520
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7509
7521
  required_arguments = ['dbNodeId']
@@ -7623,7 +7635,7 @@ class DatabaseClient(object):
7623
7635
  :rtype: :class:`~oci.response.Response`
7624
7636
 
7625
7637
  :example:
7626
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
7638
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
7627
7639
  """
7628
7640
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7629
7641
  required_arguments = ['databaseId']
@@ -7729,7 +7741,7 @@ class DatabaseClient(object):
7729
7741
  :rtype: :class:`~oci.response.Response`
7730
7742
 
7731
7743
  :example:
7732
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_database.py.html>`__ to see an example of how to use create_database API.
7744
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
7733
7745
  """
7734
7746
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7735
7747
  required_arguments = []
@@ -7822,7 +7834,7 @@ class DatabaseClient(object):
7822
7834
  :rtype: :class:`~oci.response.Response`
7823
7835
 
7824
7836
  :example:
7825
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
7837
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
7826
7838
  """
7827
7839
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7828
7840
  required_arguments = []
@@ -7913,7 +7925,7 @@ class DatabaseClient(object):
7913
7925
  :rtype: :class:`~oci.response.Response`
7914
7926
 
7915
7927
  :example:
7916
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
7928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
7917
7929
  """
7918
7930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7919
7931
  required_arguments = []
@@ -8008,7 +8020,7 @@ class DatabaseClient(object):
8008
8020
  :rtype: :class:`~oci.response.Response`
8009
8021
 
8010
8022
  :example:
8011
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
8023
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
8012
8024
  """
8013
8025
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8014
8026
  required_arguments = []
@@ -8106,7 +8118,7 @@ class DatabaseClient(object):
8106
8118
  :rtype: :class:`~oci.response.Response`
8107
8119
 
8108
8120
  :example:
8109
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
8121
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
8110
8122
  """
8111
8123
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8112
8124
  required_arguments = []
@@ -8202,7 +8214,7 @@ class DatabaseClient(object):
8202
8214
  :rtype: :class:`~oci.response.Response`
8203
8215
 
8204
8216
  :example:
8205
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
8217
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
8206
8218
  """
8207
8219
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8208
8220
  required_arguments = []
@@ -8298,7 +8310,7 @@ class DatabaseClient(object):
8298
8310
  :rtype: :class:`~oci.response.Response`
8299
8311
 
8300
8312
  :example:
8301
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
8313
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
8302
8314
  """
8303
8315
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8304
8316
  required_arguments = []
@@ -8394,7 +8406,7 @@ class DatabaseClient(object):
8394
8406
  :rtype: :class:`~oci.response.Response`
8395
8407
 
8396
8408
  :example:
8397
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
8409
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
8398
8410
  """
8399
8411
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8400
8412
  required_arguments = []
@@ -8491,7 +8503,7 @@ class DatabaseClient(object):
8491
8503
  :rtype: :class:`~oci.response.Response`
8492
8504
 
8493
8505
  :example:
8494
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
8506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
8495
8507
  """
8496
8508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8497
8509
  required_arguments = []
@@ -8585,7 +8597,7 @@ class DatabaseClient(object):
8585
8597
  :rtype: :class:`~oci.response.Response`
8586
8598
 
8587
8599
  :example:
8588
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
8600
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
8589
8601
  """
8590
8602
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8591
8603
  required_arguments = []
@@ -8681,7 +8693,7 @@ class DatabaseClient(object):
8681
8693
  :rtype: :class:`~oci.response.Response`
8682
8694
 
8683
8695
  :example:
8684
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
8696
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
8685
8697
  """
8686
8698
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8687
8699
  required_arguments = []
@@ -8777,7 +8789,7 @@ class DatabaseClient(object):
8777
8789
  :rtype: :class:`~oci.response.Response`
8778
8790
 
8779
8791
  :example:
8780
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
8792
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
8781
8793
  """
8782
8794
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8783
8795
  required_arguments = []
@@ -8874,7 +8886,7 @@ class DatabaseClient(object):
8874
8886
  :rtype: :class:`~oci.response.Response`
8875
8887
 
8876
8888
  :example:
8877
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
8889
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
8878
8890
  """
8879
8891
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8880
8892
  required_arguments = []
@@ -8970,7 +8982,7 @@ class DatabaseClient(object):
8970
8982
  :rtype: :class:`~oci.response.Response`
8971
8983
 
8972
8984
  :example:
8973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
8985
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
8974
8986
  """
8975
8987
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8976
8988
  required_arguments = []
@@ -9069,7 +9081,7 @@ class DatabaseClient(object):
9069
9081
  :rtype: :class:`~oci.response.Response`
9070
9082
 
9071
9083
  :example:
9072
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
9084
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
9073
9085
  """
9074
9086
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9075
9087
  required_arguments = []
@@ -9165,7 +9177,7 @@ class DatabaseClient(object):
9165
9177
  :rtype: :class:`~oci.response.Response`
9166
9178
 
9167
9179
  :example:
9168
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
9180
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
9169
9181
  """
9170
9182
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9171
9183
  required_arguments = []
@@ -9263,7 +9275,7 @@ class DatabaseClient(object):
9263
9275
  :rtype: :class:`~oci.response.Response`
9264
9276
 
9265
9277
  :example:
9266
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
9278
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
9267
9279
  """
9268
9280
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9269
9281
  required_arguments = []
@@ -9359,7 +9371,7 @@ class DatabaseClient(object):
9359
9371
  :rtype: :class:`~oci.response.Response`
9360
9372
 
9361
9373
  :example:
9362
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
9374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
9363
9375
  """
9364
9376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9365
9377
  required_arguments = []
@@ -9455,7 +9467,7 @@ class DatabaseClient(object):
9455
9467
  :rtype: :class:`~oci.response.Response`
9456
9468
 
9457
9469
  :example:
9458
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
9470
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
9459
9471
  """
9460
9472
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9461
9473
  required_arguments = []
@@ -9551,7 +9563,7 @@ class DatabaseClient(object):
9551
9563
  :rtype: :class:`~oci.response.Response`
9552
9564
 
9553
9565
  :example:
9554
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
9566
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
9555
9567
  """
9556
9568
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9557
9569
  required_arguments = []
@@ -9652,7 +9664,7 @@ class DatabaseClient(object):
9652
9664
  :rtype: :class:`~oci.response.Response`
9653
9665
 
9654
9666
  :example:
9655
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
9667
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
9656
9668
  """
9657
9669
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9658
9670
  required_arguments = ['schedulingPolicyId']
@@ -9761,7 +9773,7 @@ class DatabaseClient(object):
9761
9773
  :rtype: :class:`~oci.response.Response`
9762
9774
 
9763
9775
  :example:
9764
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
9776
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
9765
9777
  """
9766
9778
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9767
9779
  required_arguments = []
@@ -9863,7 +9875,7 @@ class DatabaseClient(object):
9863
9875
  :rtype: :class:`~oci.response.Response`
9864
9876
 
9865
9877
  :example:
9866
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
9878
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
9867
9879
  """
9868
9880
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9869
9881
  required_arguments = ['exadataInfrastructureId']
@@ -9992,7 +10004,7 @@ class DatabaseClient(object):
9992
10004
  :rtype: :class:`~oci.response.Response`
9993
10005
 
9994
10006
  :example:
9995
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
10007
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
9996
10008
  """
9997
10009
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9998
10010
  required_arguments = ['dbNodeId', 'action']
@@ -10105,7 +10117,7 @@ class DatabaseClient(object):
10105
10117
  :rtype: :class:`~oci.response.Response`
10106
10118
 
10107
10119
  :example:
10108
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
10120
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
10109
10121
  """
10110
10122
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10111
10123
  required_arguments = ['applicationVipId']
@@ -10208,7 +10220,7 @@ class DatabaseClient(object):
10208
10220
  :rtype: :class:`~oci.response.Response`
10209
10221
 
10210
10222
  :example:
10211
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
10223
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
10212
10224
  """
10213
10225
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10214
10226
  required_arguments = ['autonomousDatabaseId']
@@ -10311,7 +10323,7 @@ class DatabaseClient(object):
10311
10323
  :rtype: :class:`~oci.response.Response`
10312
10324
 
10313
10325
  :example:
10314
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
10326
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
10315
10327
  """
10316
10328
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10317
10329
  required_arguments = ['autonomousDatabaseBackupId']
@@ -10414,7 +10426,7 @@ class DatabaseClient(object):
10414
10426
  :rtype: :class:`~oci.response.Response`
10415
10427
 
10416
10428
  :example:
10417
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
10429
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
10418
10430
  """
10419
10431
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10420
10432
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -10517,7 +10529,7 @@ class DatabaseClient(object):
10517
10529
  :rtype: :class:`~oci.response.Response`
10518
10530
 
10519
10531
  :example:
10520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
10532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
10521
10533
  """
10522
10534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10523
10535
  required_arguments = ['autonomousVmClusterId']
@@ -10617,7 +10629,7 @@ class DatabaseClient(object):
10617
10629
  :rtype: :class:`~oci.response.Response`
10618
10630
 
10619
10631
  :example:
10620
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
10632
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
10621
10633
  """
10622
10634
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10623
10635
  required_arguments = ['backupId']
@@ -10718,7 +10730,7 @@ class DatabaseClient(object):
10718
10730
  :rtype: :class:`~oci.response.Response`
10719
10731
 
10720
10732
  :example:
10721
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
10733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
10722
10734
  """
10723
10735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10724
10736
  required_arguments = ['backupDestinationId']
@@ -10821,7 +10833,7 @@ class DatabaseClient(object):
10821
10833
  :rtype: :class:`~oci.response.Response`
10822
10834
 
10823
10835
  :example:
10824
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
10836
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
10825
10837
  """
10826
10838
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10827
10839
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -10927,7 +10939,7 @@ class DatabaseClient(object):
10927
10939
  :rtype: :class:`~oci.response.Response`
10928
10940
 
10929
10941
  :example:
10930
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
10942
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
10931
10943
  """
10932
10944
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10933
10945
  required_arguments = ['cloudExadataInfrastructureId']
@@ -11038,7 +11050,7 @@ class DatabaseClient(object):
11038
11050
  :rtype: :class:`~oci.response.Response`
11039
11051
 
11040
11052
  :example:
11041
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
11053
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
11042
11054
  """
11043
11055
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11044
11056
  required_arguments = ['cloudVmClusterId']
@@ -11141,7 +11153,7 @@ class DatabaseClient(object):
11141
11153
  :rtype: :class:`~oci.response.Response`
11142
11154
 
11143
11155
  :example:
11144
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
11156
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
11145
11157
  """
11146
11158
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11147
11159
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -11246,7 +11258,7 @@ class DatabaseClient(object):
11246
11258
  :rtype: :class:`~oci.response.Response`
11247
11259
 
11248
11260
  :example:
11249
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
11261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
11250
11262
  """
11251
11263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11252
11264
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -11359,7 +11371,7 @@ class DatabaseClient(object):
11359
11371
  :rtype: :class:`~oci.response.Response`
11360
11372
 
11361
11373
  :example:
11362
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
11374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
11363
11375
  """
11364
11376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11365
11377
  required_arguments = ['databaseId']
@@ -11467,7 +11479,7 @@ class DatabaseClient(object):
11467
11479
  :rtype: :class:`~oci.response.Response`
11468
11480
 
11469
11481
  :example:
11470
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
11482
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
11471
11483
  """
11472
11484
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11473
11485
  required_arguments = ['databaseSoftwareImageId']
@@ -11574,7 +11586,7 @@ class DatabaseClient(object):
11574
11586
  :rtype: :class:`~oci.response.Response`
11575
11587
 
11576
11588
  :example:
11577
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
11589
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
11578
11590
  """
11579
11591
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11580
11592
  required_arguments = ['dbHomeId']
@@ -11683,7 +11695,7 @@ class DatabaseClient(object):
11683
11695
  :rtype: :class:`~oci.response.Response`
11684
11696
 
11685
11697
  :example:
11686
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
11698
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
11687
11699
  """
11688
11700
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11689
11701
  required_arguments = ['exadataInfrastructureId']
@@ -11786,7 +11798,7 @@ class DatabaseClient(object):
11786
11798
  :rtype: :class:`~oci.response.Response`
11787
11799
 
11788
11800
  :example:
11789
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
11801
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
11790
11802
  """
11791
11803
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11792
11804
  required_arguments = ['exadbVmClusterId']
@@ -11889,7 +11901,7 @@ class DatabaseClient(object):
11889
11901
  :rtype: :class:`~oci.response.Response`
11890
11902
 
11891
11903
  :example:
11892
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
11904
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
11893
11905
  """
11894
11906
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11895
11907
  required_arguments = ['exascaleDbStorageVaultId']
@@ -11992,7 +12004,7 @@ class DatabaseClient(object):
11992
12004
  :rtype: :class:`~oci.response.Response`
11993
12005
 
11994
12006
  :example:
11995
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
12007
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
11996
12008
  """
11997
12009
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11998
12010
  required_arguments = ['executionActionId']
@@ -12095,7 +12107,7 @@ class DatabaseClient(object):
12095
12107
  :rtype: :class:`~oci.response.Response`
12096
12108
 
12097
12109
  :example:
12098
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
12110
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
12099
12111
  """
12100
12112
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12101
12113
  required_arguments = ['executionWindowId']
@@ -12200,7 +12212,7 @@ class DatabaseClient(object):
12200
12212
  :rtype: :class:`~oci.response.Response`
12201
12213
 
12202
12214
  :example:
12203
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
12215
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
12204
12216
  """
12205
12217
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12206
12218
  required_arguments = ['externalContainerDatabaseId']
@@ -12306,7 +12318,7 @@ class DatabaseClient(object):
12306
12318
  :rtype: :class:`~oci.response.Response`
12307
12319
 
12308
12320
  :example:
12309
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
12321
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
12310
12322
  """
12311
12323
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12312
12324
  required_arguments = ['externalDatabaseConnectorId']
@@ -12409,7 +12421,7 @@ class DatabaseClient(object):
12409
12421
  :rtype: :class:`~oci.response.Response`
12410
12422
 
12411
12423
  :example:
12412
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
12424
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
12413
12425
  """
12414
12426
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12415
12427
  required_arguments = ['externalNonContainerDatabaseId']
@@ -12513,7 +12525,7 @@ class DatabaseClient(object):
12513
12525
  :rtype: :class:`~oci.response.Response`
12514
12526
 
12515
12527
  :example:
12516
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
12528
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
12517
12529
  """
12518
12530
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12519
12531
  required_arguments = ['externalPluggableDatabaseId']
@@ -12616,7 +12628,7 @@ class DatabaseClient(object):
12616
12628
  :rtype: :class:`~oci.response.Response`
12617
12629
 
12618
12630
  :example:
12619
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
12631
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
12620
12632
  """
12621
12633
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12622
12634
  required_arguments = ['keyStoreId']
@@ -12719,7 +12731,7 @@ class DatabaseClient(object):
12719
12731
  :rtype: :class:`~oci.response.Response`
12720
12732
 
12721
12733
  :example:
12722
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
12734
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
12723
12735
  """
12724
12736
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12725
12737
  required_arguments = ['oneoffPatchId']
@@ -12822,7 +12834,7 @@ class DatabaseClient(object):
12822
12834
  :rtype: :class:`~oci.response.Response`
12823
12835
 
12824
12836
  :example:
12825
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
12837
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
12826
12838
  """
12827
12839
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12828
12840
  required_arguments = ['pluggableDatabaseId']
@@ -12925,7 +12937,7 @@ class DatabaseClient(object):
12925
12937
  :rtype: :class:`~oci.response.Response`
12926
12938
 
12927
12939
  :example:
12928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
12940
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
12929
12941
  """
12930
12942
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12931
12943
  required_arguments = ['scheduledActionId']
@@ -13028,7 +13040,7 @@ class DatabaseClient(object):
13028
13040
  :rtype: :class:`~oci.response.Response`
13029
13041
 
13030
13042
  :example:
13031
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
13043
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
13032
13044
  """
13033
13045
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13034
13046
  required_arguments = ['schedulingPlanId']
@@ -13131,7 +13143,7 @@ class DatabaseClient(object):
13131
13143
  :rtype: :class:`~oci.response.Response`
13132
13144
 
13133
13145
  :example:
13134
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
13146
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
13135
13147
  """
13136
13148
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13137
13149
  required_arguments = ['schedulingPolicyId']
@@ -13239,7 +13251,7 @@ class DatabaseClient(object):
13239
13251
  :rtype: :class:`~oci.response.Response`
13240
13252
 
13241
13253
  :example:
13242
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
13254
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
13243
13255
  """
13244
13256
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13245
13257
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -13343,7 +13355,7 @@ class DatabaseClient(object):
13343
13355
  :rtype: :class:`~oci.response.Response`
13344
13356
 
13345
13357
  :example:
13346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
13358
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
13347
13359
  """
13348
13360
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13349
13361
  required_arguments = ['vmClusterId']
@@ -13452,7 +13464,7 @@ class DatabaseClient(object):
13452
13464
  :rtype: :class:`~oci.response.Response`
13453
13465
 
13454
13466
  :example:
13455
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
13467
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
13456
13468
  """
13457
13469
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13458
13470
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -13554,7 +13566,7 @@ class DatabaseClient(object):
13554
13566
  :rtype: :class:`~oci.response.Response`
13555
13567
 
13556
13568
  :example:
13557
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
13569
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
13558
13570
  """
13559
13571
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13560
13572
  required_arguments = ['autonomousDatabaseId']
@@ -13653,7 +13665,7 @@ class DatabaseClient(object):
13653
13665
  :rtype: :class:`~oci.response.Response`
13654
13666
 
13655
13667
  :example:
13656
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
13668
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
13657
13669
  """
13658
13670
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13659
13671
  required_arguments = ['autonomousDatabaseId']
@@ -13749,7 +13761,7 @@ class DatabaseClient(object):
13749
13761
  :rtype: :class:`~oci.response.Response`
13750
13762
 
13751
13763
  :example:
13752
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
13764
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
13753
13765
  """
13754
13766
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13755
13767
  required_arguments = ['autonomousDatabaseId']
@@ -13857,7 +13869,7 @@ class DatabaseClient(object):
13857
13869
  :rtype: :class:`~oci.response.Response`
13858
13870
 
13859
13871
  :example:
13860
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
13872
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
13861
13873
  """
13862
13874
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13863
13875
  required_arguments = ['databaseId']
@@ -13972,7 +13984,7 @@ class DatabaseClient(object):
13972
13984
  :rtype: :class:`~oci.response.Response`
13973
13985
 
13974
13986
  :example:
13975
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
13987
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
13976
13988
  """
13977
13989
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13978
13990
  required_arguments = ['externalContainerDatabaseId']
@@ -14085,7 +14097,7 @@ class DatabaseClient(object):
14085
14097
  :rtype: :class:`~oci.response.Response`
14086
14098
 
14087
14099
  :example:
14088
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
14100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
14089
14101
  """
14090
14102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14091
14103
  required_arguments = ['externalContainerDatabaseId']
@@ -14202,7 +14214,7 @@ class DatabaseClient(object):
14202
14214
  :rtype: :class:`~oci.response.Response`
14203
14215
 
14204
14216
  :example:
14205
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
14217
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
14206
14218
  """
14207
14219
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14208
14220
  required_arguments = ['externalNonContainerDatabaseId']
@@ -14315,7 +14327,7 @@ class DatabaseClient(object):
14315
14327
  :rtype: :class:`~oci.response.Response`
14316
14328
 
14317
14329
  :example:
14318
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
14330
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
14319
14331
  """
14320
14332
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14321
14333
  required_arguments = ['externalNonContainerDatabaseId']
@@ -14428,7 +14440,7 @@ class DatabaseClient(object):
14428
14440
  :rtype: :class:`~oci.response.Response`
14429
14441
 
14430
14442
  :example:
14431
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
14443
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
14432
14444
  """
14433
14445
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14434
14446
  required_arguments = ['externalNonContainerDatabaseId']
@@ -14545,7 +14557,7 @@ class DatabaseClient(object):
14545
14557
  :rtype: :class:`~oci.response.Response`
14546
14558
 
14547
14559
  :example:
14548
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
14560
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
14549
14561
  """
14550
14562
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14551
14563
  required_arguments = ['externalPluggableDatabaseId']
@@ -14658,7 +14670,7 @@ class DatabaseClient(object):
14658
14670
  :rtype: :class:`~oci.response.Response`
14659
14671
 
14660
14672
  :example:
14661
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
14673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
14662
14674
  """
14663
14675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14664
14676
  required_arguments = ['externalPluggableDatabaseId']
@@ -14771,7 +14783,7 @@ class DatabaseClient(object):
14771
14783
  :rtype: :class:`~oci.response.Response`
14772
14784
 
14773
14785
  :example:
14774
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
14786
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
14775
14787
  """
14776
14788
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14777
14789
  required_arguments = ['externalPluggableDatabaseId']
@@ -14884,7 +14896,7 @@ class DatabaseClient(object):
14884
14896
  :rtype: :class:`~oci.response.Response`
14885
14897
 
14886
14898
  :example:
14887
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
14899
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
14888
14900
  """
14889
14901
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14890
14902
  required_arguments = ['pluggableDatabaseId']
@@ -14994,7 +15006,7 @@ class DatabaseClient(object):
14994
15006
  :rtype: :class:`~oci.response.Response`
14995
15007
 
14996
15008
  :example:
14997
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
15009
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
14998
15010
  """
14999
15011
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15000
15012
  required_arguments = ['exadataInfrastructureId']
@@ -15107,7 +15119,7 @@ class DatabaseClient(object):
15107
15119
  :rtype: :class:`~oci.response.Response`
15108
15120
 
15109
15121
  :example:
15110
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
15122
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
15111
15123
  """
15112
15124
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15113
15125
  required_arguments = ['oneoffPatchId']
@@ -15222,7 +15234,7 @@ class DatabaseClient(object):
15222
15234
  :rtype: :class:`~oci.response.Response`
15223
15235
 
15224
15236
  :example:
15225
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
15237
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
15226
15238
  """
15227
15239
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15228
15240
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -15336,7 +15348,7 @@ class DatabaseClient(object):
15336
15348
  :rtype: :class:`~oci.response.Response`
15337
15349
 
15338
15350
  :example:
15339
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
15351
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
15340
15352
  """
15341
15353
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15342
15354
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -15458,7 +15470,7 @@ class DatabaseClient(object):
15458
15470
  :rtype: :class:`~oci.response.Response`
15459
15471
 
15460
15472
  :example:
15461
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/edit_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use edit_autonomous_container_database_dataguard API.
15473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/edit_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use edit_autonomous_container_database_dataguard API.
15462
15474
  """
15463
15475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15464
15476
  required_arguments = ['autonomousContainerDatabaseId']
@@ -15563,7 +15575,7 @@ class DatabaseClient(object):
15563
15575
  :rtype: :class:`~oci.response.Response`
15564
15576
 
15565
15577
  :example:
15566
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
15578
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
15567
15579
  """
15568
15580
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15569
15581
  required_arguments = ['autonomousDatabaseId']
@@ -15659,7 +15671,7 @@ class DatabaseClient(object):
15659
15671
  :rtype: :class:`~oci.response.Response`
15660
15672
 
15661
15673
  :example:
15662
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
15674
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
15663
15675
  """
15664
15676
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15665
15677
  required_arguments = ['autonomousDatabaseId']
@@ -15770,7 +15782,7 @@ class DatabaseClient(object):
15770
15782
  :rtype: :class:`~oci.response.Response`
15771
15783
 
15772
15784
  :example:
15773
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
15785
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
15774
15786
  """
15775
15787
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15776
15788
  required_arguments = ['databaseId']
@@ -15894,7 +15906,7 @@ class DatabaseClient(object):
15894
15906
  :rtype: :class:`~oci.response.Response`
15895
15907
 
15896
15908
  :example:
15897
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
15909
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
15898
15910
  """
15899
15911
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15900
15912
  required_arguments = ['externalContainerDatabaseId']
@@ -16012,7 +16024,7 @@ class DatabaseClient(object):
16012
16024
  :rtype: :class:`~oci.response.Response`
16013
16025
 
16014
16026
  :example:
16015
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
16027
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
16016
16028
  """
16017
16029
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16018
16030
  required_arguments = ['externalContainerDatabaseId']
@@ -16134,7 +16146,7 @@ class DatabaseClient(object):
16134
16146
  :rtype: :class:`~oci.response.Response`
16135
16147
 
16136
16148
  :example:
16137
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
16149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
16138
16150
  """
16139
16151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16140
16152
  required_arguments = ['externalNonContainerDatabaseId']
@@ -16252,7 +16264,7 @@ class DatabaseClient(object):
16252
16264
  :rtype: :class:`~oci.response.Response`
16253
16265
 
16254
16266
  :example:
16255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
16267
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
16256
16268
  """
16257
16269
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16258
16270
  required_arguments = ['externalNonContainerDatabaseId']
@@ -16370,7 +16382,7 @@ class DatabaseClient(object):
16370
16382
  :rtype: :class:`~oci.response.Response`
16371
16383
 
16372
16384
  :example:
16373
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
16385
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
16374
16386
  """
16375
16387
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16376
16388
  required_arguments = ['externalNonContainerDatabaseId']
@@ -16492,7 +16504,7 @@ class DatabaseClient(object):
16492
16504
  :rtype: :class:`~oci.response.Response`
16493
16505
 
16494
16506
  :example:
16495
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
16507
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
16496
16508
  """
16497
16509
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16498
16510
  required_arguments = ['externalPluggableDatabaseId']
@@ -16610,7 +16622,7 @@ class DatabaseClient(object):
16610
16622
  :rtype: :class:`~oci.response.Response`
16611
16623
 
16612
16624
  :example:
16613
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
16625
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
16614
16626
  """
16615
16627
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16616
16628
  required_arguments = ['externalPluggableDatabaseId']
@@ -16728,7 +16740,7 @@ class DatabaseClient(object):
16728
16740
  :rtype: :class:`~oci.response.Response`
16729
16741
 
16730
16742
  :example:
16731
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
16743
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
16732
16744
  """
16733
16745
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16734
16746
  required_arguments = ['externalPluggableDatabaseId']
@@ -16846,7 +16858,7 @@ class DatabaseClient(object):
16846
16858
  :rtype: :class:`~oci.response.Response`
16847
16859
 
16848
16860
  :example:
16849
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
16861
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
16850
16862
  """
16851
16863
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16852
16864
  required_arguments = ['pluggableDatabaseId']
@@ -16971,7 +16983,7 @@ class DatabaseClient(object):
16971
16983
  :rtype: :class:`~oci.response.Response`
16972
16984
 
16973
16985
  :example:
16974
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
16986
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
16975
16987
  """
16976
16988
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16977
16989
  required_arguments = ['autonomousDatabaseId']
@@ -17087,7 +17099,7 @@ class DatabaseClient(object):
17087
17099
  :rtype: :class:`~oci.response.Response`
17088
17100
 
17089
17101
  :example:
17090
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/failover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard API.
17102
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/failover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard API.
17091
17103
  """
17092
17104
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17093
17105
  required_arguments = ['autonomousContainerDatabaseId']
@@ -17196,7 +17208,7 @@ class DatabaseClient(object):
17196
17208
  :rtype: :class:`~oci.response.Response`
17197
17209
 
17198
17210
  :example:
17199
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
17211
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
17200
17212
  """
17201
17213
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17202
17214
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -17316,7 +17328,7 @@ class DatabaseClient(object):
17316
17328
  :rtype: :class:`~oci.response.Response`
17317
17329
 
17318
17330
  :example:
17319
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/failover_data_guard.py.html>`__ to see an example of how to use failover_data_guard API.
17331
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/failover_data_guard.py.html>`__ to see an example of how to use failover_data_guard API.
17320
17332
  """
17321
17333
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17322
17334
  required_arguments = ['databaseId']
@@ -17435,7 +17447,7 @@ class DatabaseClient(object):
17435
17447
  :rtype: :class:`~oci.response.Response`
17436
17448
 
17437
17449
  :example:
17438
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
17450
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
17439
17451
  """
17440
17452
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17441
17453
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -17546,7 +17558,7 @@ class DatabaseClient(object):
17546
17558
  :rtype: :class:`~oci.response.Response`
17547
17559
 
17548
17560
  :example:
17549
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
17561
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
17550
17562
  """
17551
17563
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17552
17564
  required_arguments = ['autonomousDatabaseId']
@@ -17659,7 +17671,7 @@ class DatabaseClient(object):
17659
17671
  :rtype: :class:`~oci.response.Response`
17660
17672
 
17661
17673
  :example:
17662
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
17674
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
17663
17675
  """
17664
17676
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17665
17677
  required_arguments = ['exadataInfrastructureId']
@@ -17762,7 +17774,7 @@ class DatabaseClient(object):
17762
17774
  :rtype: :class:`~oci.response.Response`
17763
17775
 
17764
17776
  :example:
17765
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
17777
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
17766
17778
  """
17767
17779
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17768
17780
  required_arguments = ['applicationVipId']
@@ -17857,7 +17869,7 @@ class DatabaseClient(object):
17857
17869
  :rtype: :class:`~oci.response.Response`
17858
17870
 
17859
17871
  :example:
17860
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
17872
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
17861
17873
  """
17862
17874
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17863
17875
  required_arguments = ['autonomousContainerDatabaseId']
@@ -17950,7 +17962,7 @@ class DatabaseClient(object):
17950
17962
  :rtype: :class:`~oci.response.Response`
17951
17963
 
17952
17964
  :example:
17953
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
17965
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
17954
17966
  """
17955
17967
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17956
17968
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -18042,7 +18054,7 @@ class DatabaseClient(object):
18042
18054
  :rtype: :class:`~oci.response.Response`
18043
18055
 
18044
18056
  :example:
18045
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_container_database_resource_usage.py.html>`__ to see an example of how to use get_autonomous_container_database_resource_usage API.
18057
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
18046
18058
  """
18047
18059
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18048
18060
  required_arguments = ['autonomousContainerDatabaseId']
@@ -18140,7 +18152,7 @@ class DatabaseClient(object):
18140
18152
  :rtype: :class:`~oci.response.Response`
18141
18153
 
18142
18154
  :example:
18143
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
18155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
18144
18156
  """
18145
18157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18146
18158
  required_arguments = ['autonomousDatabaseId']
@@ -18238,7 +18250,7 @@ class DatabaseClient(object):
18238
18250
  :rtype: :class:`~oci.response.Response`
18239
18251
 
18240
18252
  :example:
18241
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
18253
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
18242
18254
  """
18243
18255
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18244
18256
  required_arguments = ['autonomousDatabaseBackupId']
@@ -18341,7 +18353,7 @@ class DatabaseClient(object):
18341
18353
  :rtype: :class:`~oci.response.Response`
18342
18354
 
18343
18355
  :example:
18344
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
18356
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
18345
18357
  """
18346
18358
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18347
18359
  required_arguments = ['autonomousDatabaseId', 'autonomousDatabaseDataguardAssociationId']
@@ -18435,7 +18447,7 @@ class DatabaseClient(object):
18435
18447
  :rtype: :class:`~oci.response.Response`
18436
18448
 
18437
18449
  :example:
18438
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
18450
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
18439
18451
  """
18440
18452
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18441
18453
  required_arguments = []
@@ -18521,7 +18533,7 @@ class DatabaseClient(object):
18521
18533
  :rtype: :class:`~oci.response.Response`
18522
18534
 
18523
18535
  :example:
18524
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
18536
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
18525
18537
  """
18526
18538
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18527
18539
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -18619,7 +18631,7 @@ class DatabaseClient(object):
18619
18631
  :rtype: :class:`~oci.response.Response`
18620
18632
 
18621
18633
  :example:
18622
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
18634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
18623
18635
  """
18624
18636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18625
18637
  required_arguments = ['autonomousDatabaseId']
@@ -18714,7 +18726,7 @@ class DatabaseClient(object):
18714
18726
  :rtype: :class:`~oci.response.Response`
18715
18727
 
18716
18728
  :example:
18717
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
18729
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
18718
18730
  """
18719
18731
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18720
18732
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -18802,7 +18814,7 @@ class DatabaseClient(object):
18802
18814
  :rtype: :class:`~oci.response.Response`
18803
18815
 
18804
18816
  :example:
18805
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
18817
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
18806
18818
  """
18807
18819
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18808
18820
  required_arguments = ['autonomousPatchId']
@@ -18893,7 +18905,7 @@ class DatabaseClient(object):
18893
18905
  :rtype: :class:`~oci.response.Response`
18894
18906
 
18895
18907
  :example:
18896
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
18908
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
18897
18909
  """
18898
18910
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18899
18911
  required_arguments = ['autonomousVirtualMachineId']
@@ -18991,7 +19003,7 @@ class DatabaseClient(object):
18991
19003
  :rtype: :class:`~oci.response.Response`
18992
19004
 
18993
19005
  :example:
18994
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
19006
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
18995
19007
  """
18996
19008
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18997
19009
  required_arguments = ['autonomousVmClusterId']
@@ -19089,7 +19101,7 @@ class DatabaseClient(object):
19089
19101
  :rtype: :class:`~oci.response.Response`
19090
19102
 
19091
19103
  :example:
19092
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_autonomous_vm_cluster_resource_usage API.
19104
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
19093
19105
  """
19094
19106
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19095
19107
  required_arguments = ['autonomousVmClusterId']
@@ -19184,7 +19196,7 @@ class DatabaseClient(object):
19184
19196
  :rtype: :class:`~oci.response.Response`
19185
19197
 
19186
19198
  :example:
19187
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
19199
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
19188
19200
  """
19189
19201
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19190
19202
  required_arguments = ['backupId']
@@ -19275,7 +19287,7 @@ class DatabaseClient(object):
19275
19287
  :rtype: :class:`~oci.response.Response`
19276
19288
 
19277
19289
  :example:
19278
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
19290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
19279
19291
  """
19280
19292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19281
19293
  required_arguments = ['backupDestinationId']
@@ -19373,7 +19385,7 @@ class DatabaseClient(object):
19373
19385
  :rtype: :class:`~oci.response.Response`
19374
19386
 
19375
19387
  :example:
19376
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
19388
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
19377
19389
  """
19378
19390
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19379
19391
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -19471,7 +19483,7 @@ class DatabaseClient(object):
19471
19483
  :rtype: :class:`~oci.response.Response`
19472
19484
 
19473
19485
  :example:
19474
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
19486
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
19475
19487
  """
19476
19488
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19477
19489
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -19569,7 +19581,7 @@ class DatabaseClient(object):
19569
19581
  :rtype: :class:`~oci.response.Response`
19570
19582
 
19571
19583
  :example:
19572
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
19584
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
19573
19585
  """
19574
19586
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19575
19587
  required_arguments = ['cloudExadataInfrastructureId']
@@ -19672,7 +19684,7 @@ class DatabaseClient(object):
19672
19684
  :rtype: :class:`~oci.response.Response`
19673
19685
 
19674
19686
  :example:
19675
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
19687
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
19676
19688
  """
19677
19689
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19678
19690
  required_arguments = ['cloudExadataInfrastructureId']
@@ -19778,7 +19790,7 @@ class DatabaseClient(object):
19778
19790
  :rtype: :class:`~oci.response.Response`
19779
19791
 
19780
19792
  :example:
19781
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
19793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
19782
19794
  """
19783
19795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19784
19796
  required_arguments = ['cloudVmClusterId']
@@ -19877,7 +19889,7 @@ class DatabaseClient(object):
19877
19889
  :rtype: :class:`~oci.response.Response`
19878
19890
 
19879
19891
  :example:
19880
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
19892
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
19881
19893
  """
19882
19894
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19883
19895
  required_arguments = ['cloudVmClusterId']
@@ -19980,7 +19992,7 @@ class DatabaseClient(object):
19980
19992
  :rtype: :class:`~oci.response.Response`
19981
19993
 
19982
19994
  :example:
19983
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
19995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
19984
19996
  """
19985
19997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19986
19998
  required_arguments = ['cloudVmClusterId', 'updateId']
@@ -20084,7 +20096,7 @@ class DatabaseClient(object):
20084
20096
  :rtype: :class:`~oci.response.Response`
20085
20097
 
20086
20098
  :example:
20087
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
20099
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
20088
20100
  """
20089
20101
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20090
20102
  required_arguments = ['cloudVmClusterId', 'updateHistoryEntryId']
@@ -20183,7 +20195,7 @@ class DatabaseClient(object):
20183
20195
  :rtype: :class:`~oci.response.Response`
20184
20196
 
20185
20197
  :example:
20186
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
20198
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
20187
20199
  """
20188
20200
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20189
20201
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -20278,7 +20290,7 @@ class DatabaseClient(object):
20278
20290
  :rtype: :class:`~oci.response.Response`
20279
20291
 
20280
20292
  :example:
20281
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
20293
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
20282
20294
  """
20283
20295
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20284
20296
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -20380,7 +20392,7 @@ class DatabaseClient(object):
20380
20392
  :rtype: :class:`~oci.response.Response`
20381
20393
 
20382
20394
  :example:
20383
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
20395
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
20384
20396
  """
20385
20397
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20386
20398
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -20481,7 +20493,7 @@ class DatabaseClient(object):
20481
20493
  :rtype: :class:`~oci.response.Response`
20482
20494
 
20483
20495
  :example:
20484
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
20496
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
20485
20497
  """
20486
20498
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20487
20499
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -20570,7 +20582,7 @@ class DatabaseClient(object):
20570
20582
  :rtype: :class:`~oci.response.Response`
20571
20583
 
20572
20584
  :example:
20573
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_database.py.html>`__ to see an example of how to use get_database API.
20585
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
20574
20586
  """
20575
20587
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20576
20588
  required_arguments = ['databaseId']
@@ -20658,7 +20670,7 @@ class DatabaseClient(object):
20658
20670
  :rtype: :class:`~oci.response.Response`
20659
20671
 
20660
20672
  :example:
20661
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
20673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
20662
20674
  """
20663
20675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20664
20676
  required_arguments = ['databaseSoftwareImageId']
@@ -20754,7 +20766,7 @@ class DatabaseClient(object):
20754
20766
  :rtype: :class:`~oci.response.Response`
20755
20767
 
20756
20768
  :example:
20757
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
20769
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
20758
20770
  """
20759
20771
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20760
20772
  required_arguments = ['databaseId', 'upgradeHistoryEntryId']
@@ -20850,7 +20862,7 @@ class DatabaseClient(object):
20850
20862
  :rtype: :class:`~oci.response.Response`
20851
20863
 
20852
20864
  :example:
20853
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
20865
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
20854
20866
  """
20855
20867
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20856
20868
  required_arguments = ['dbHomeId']
@@ -20943,7 +20955,7 @@ class DatabaseClient(object):
20943
20955
  :rtype: :class:`~oci.response.Response`
20944
20956
 
20945
20957
  :example:
20946
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
20958
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
20947
20959
  """
20948
20960
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20949
20961
  required_arguments = ['dbHomeId', 'patchId']
@@ -21037,7 +21049,7 @@ class DatabaseClient(object):
21037
21049
  :rtype: :class:`~oci.response.Response`
21038
21050
 
21039
21051
  :example:
21040
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
21052
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
21041
21053
  """
21042
21054
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21043
21055
  required_arguments = ['dbHomeId', 'patchHistoryEntryId']
@@ -21126,7 +21138,7 @@ class DatabaseClient(object):
21126
21138
  :rtype: :class:`~oci.response.Response`
21127
21139
 
21128
21140
  :example:
21129
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
21141
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
21130
21142
  """
21131
21143
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21132
21144
  required_arguments = ['dbNodeId']
@@ -21222,7 +21234,7 @@ class DatabaseClient(object):
21222
21234
  :rtype: :class:`~oci.response.Response`
21223
21235
 
21224
21236
  :example:
21225
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
21237
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
21226
21238
  """
21227
21239
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21228
21240
  required_arguments = ['dbServerId', 'exadataInfrastructureId']
@@ -21331,7 +21343,7 @@ class DatabaseClient(object):
21331
21343
  :rtype: :class:`~oci.response.Response`
21332
21344
 
21333
21345
  :example:
21334
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
21346
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
21335
21347
  """
21336
21348
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21337
21349
  required_arguments = ['dbSystemId']
@@ -21424,7 +21436,7 @@ class DatabaseClient(object):
21424
21436
  :rtype: :class:`~oci.response.Response`
21425
21437
 
21426
21438
  :example:
21427
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
21439
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
21428
21440
  """
21429
21441
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21430
21442
  required_arguments = ['dbSystemId', 'patchId']
@@ -21518,7 +21530,7 @@ class DatabaseClient(object):
21518
21530
  :rtype: :class:`~oci.response.Response`
21519
21531
 
21520
21532
  :example:
21521
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
21533
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
21522
21534
  """
21523
21535
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21524
21536
  required_arguments = ['dbSystemId', 'patchHistoryEntryId']
@@ -21615,7 +21627,7 @@ class DatabaseClient(object):
21615
21627
  :rtype: :class:`~oci.response.Response`
21616
21628
 
21617
21629
  :example:
21618
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
21630
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
21619
21631
  """
21620
21632
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21621
21633
  required_arguments = ['dbSystemId', 'upgradeHistoryEntryId']
@@ -21720,7 +21732,7 @@ class DatabaseClient(object):
21720
21732
  :rtype: :class:`~oci.response.Response`
21721
21733
 
21722
21734
  :example:
21723
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
21735
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
21724
21736
  """
21725
21737
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21726
21738
  required_arguments = ['exadataInfrastructureId']
@@ -21834,7 +21846,7 @@ class DatabaseClient(object):
21834
21846
  :rtype: :class:`~oci.response.Response`
21835
21847
 
21836
21848
  :example:
21837
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
21849
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
21838
21850
  """
21839
21851
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21840
21852
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -21937,7 +21949,7 @@ class DatabaseClient(object):
21937
21949
  :rtype: :class:`~oci.response.Response`
21938
21950
 
21939
21951
  :example:
21940
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
21952
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
21941
21953
  """
21942
21954
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21943
21955
  required_arguments = ['exadataInfrastructureId']
@@ -22054,7 +22066,7 @@ class DatabaseClient(object):
22054
22066
  :rtype: :class:`~oci.response.Response`
22055
22067
 
22056
22068
  :example:
22057
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
22069
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
22058
22070
  """
22059
22071
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22060
22072
  required_arguments = ['dbSystemId']
@@ -22152,7 +22164,7 @@ class DatabaseClient(object):
22152
22164
  :rtype: :class:`~oci.response.Response`
22153
22165
 
22154
22166
  :example:
22155
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
22167
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
22156
22168
  """
22157
22169
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22158
22170
  required_arguments = ['exadbVmClusterId']
@@ -22255,7 +22267,7 @@ class DatabaseClient(object):
22255
22267
  :rtype: :class:`~oci.response.Response`
22256
22268
 
22257
22269
  :example:
22258
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
22270
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
22259
22271
  """
22260
22272
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22261
22273
  required_arguments = ['exadbVmClusterId', 'updateId']
@@ -22359,7 +22371,7 @@ class DatabaseClient(object):
22359
22371
  :rtype: :class:`~oci.response.Response`
22360
22372
 
22361
22373
  :example:
22362
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
22374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
22363
22375
  """
22364
22376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22365
22377
  required_arguments = ['exadbVmClusterId', 'updateHistoryEntryId']
@@ -22458,7 +22470,7 @@ class DatabaseClient(object):
22458
22470
  :rtype: :class:`~oci.response.Response`
22459
22471
 
22460
22472
  :example:
22461
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
22473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
22462
22474
  """
22463
22475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22464
22476
  required_arguments = ['exascaleDbStorageVaultId']
@@ -22556,7 +22568,7 @@ class DatabaseClient(object):
22556
22568
  :rtype: :class:`~oci.response.Response`
22557
22569
 
22558
22570
  :example:
22559
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
22571
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
22560
22572
  """
22561
22573
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22562
22574
  required_arguments = ['executionActionId']
@@ -22654,7 +22666,7 @@ class DatabaseClient(object):
22654
22666
  :rtype: :class:`~oci.response.Response`
22655
22667
 
22656
22668
  :example:
22657
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
22669
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
22658
22670
  """
22659
22671
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22660
22672
  required_arguments = ['executionWindowId']
@@ -22753,7 +22765,7 @@ class DatabaseClient(object):
22753
22765
  :rtype: :class:`~oci.response.Response`
22754
22766
 
22755
22767
  :example:
22756
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
22768
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
22757
22769
  """
22758
22770
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22759
22771
  required_arguments = ['backupId']
@@ -22844,7 +22856,7 @@ class DatabaseClient(object):
22844
22856
  :rtype: :class:`~oci.response.Response`
22845
22857
 
22846
22858
  :example:
22847
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
22859
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
22848
22860
  """
22849
22861
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22850
22862
  required_arguments = ['externalContainerDatabaseId']
@@ -22943,7 +22955,7 @@ class DatabaseClient(object):
22943
22955
  :rtype: :class:`~oci.response.Response`
22944
22956
 
22945
22957
  :example:
22946
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
22958
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
22947
22959
  """
22948
22960
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22949
22961
  required_arguments = ['externalDatabaseConnectorId']
@@ -23041,7 +23053,7 @@ class DatabaseClient(object):
23041
23053
  :rtype: :class:`~oci.response.Response`
23042
23054
 
23043
23055
  :example:
23044
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
23056
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
23045
23057
  """
23046
23058
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23047
23059
  required_arguments = ['externalNonContainerDatabaseId']
@@ -23140,7 +23152,7 @@ class DatabaseClient(object):
23140
23152
  :rtype: :class:`~oci.response.Response`
23141
23153
 
23142
23154
  :example:
23143
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
23155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
23144
23156
  """
23145
23157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23146
23158
  required_arguments = ['externalPluggableDatabaseId']
@@ -23247,7 +23259,7 @@ class DatabaseClient(object):
23247
23259
  :rtype: :class:`~oci.response.Response`
23248
23260
 
23249
23261
  :example:
23250
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
23262
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
23251
23263
  """
23252
23264
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23253
23265
  required_arguments = ['compartmentId']
@@ -23351,7 +23363,7 @@ class DatabaseClient(object):
23351
23363
  :rtype: :class:`~oci.response.Response`
23352
23364
 
23353
23365
  :example:
23354
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
23366
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
23355
23367
  """
23356
23368
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23357
23369
  required_arguments = ['keyStoreId']
@@ -23444,7 +23456,7 @@ class DatabaseClient(object):
23444
23456
  :rtype: :class:`~oci.response.Response`
23445
23457
 
23446
23458
  :example:
23447
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
23459
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
23448
23460
  """
23449
23461
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23450
23462
  required_arguments = ['maintenanceRunId']
@@ -23530,7 +23542,7 @@ class DatabaseClient(object):
23530
23542
  :rtype: :class:`~oci.response.Response`
23531
23543
 
23532
23544
  :example:
23533
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
23545
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
23534
23546
  """
23535
23547
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23536
23548
  required_arguments = ['maintenanceRunHistoryId']
@@ -23621,7 +23633,7 @@ class DatabaseClient(object):
23621
23633
  :rtype: :class:`~oci.response.Response`
23622
23634
 
23623
23635
  :example:
23624
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
23636
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
23625
23637
  """
23626
23638
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23627
23639
  required_arguments = ['oneoffPatchId']
@@ -23724,7 +23736,7 @@ class DatabaseClient(object):
23724
23736
  :rtype: :class:`~oci.response.Response`
23725
23737
 
23726
23738
  :example:
23727
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
23739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
23728
23740
  """
23729
23741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23730
23742
  required_arguments = ['databaseId', 'pdbConversionHistoryEntryId']
@@ -23820,7 +23832,7 @@ class DatabaseClient(object):
23820
23832
  :rtype: :class:`~oci.response.Response`
23821
23833
 
23822
23834
  :example:
23823
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
23835
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
23824
23836
  """
23825
23837
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23826
23838
  required_arguments = ['pluggableDatabaseId']
@@ -23911,7 +23923,7 @@ class DatabaseClient(object):
23911
23923
  :rtype: :class:`~oci.response.Response`
23912
23924
 
23913
23925
  :example:
23914
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
23926
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
23915
23927
  """
23916
23928
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23917
23929
  required_arguments = ['scheduledActionId']
@@ -24009,7 +24021,7 @@ class DatabaseClient(object):
24009
24021
  :rtype: :class:`~oci.response.Response`
24010
24022
 
24011
24023
  :example:
24012
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
24024
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
24013
24025
  """
24014
24026
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24015
24027
  required_arguments = ['schedulingPlanId']
@@ -24107,7 +24119,7 @@ class DatabaseClient(object):
24107
24119
  :rtype: :class:`~oci.response.Response`
24108
24120
 
24109
24121
  :example:
24110
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
24122
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
24111
24123
  """
24112
24124
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24113
24125
  required_arguments = ['schedulingPolicyId']
@@ -24210,7 +24222,7 @@ class DatabaseClient(object):
24210
24222
  :rtype: :class:`~oci.response.Response`
24211
24223
 
24212
24224
  :example:
24213
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
24225
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
24214
24226
  """
24215
24227
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24216
24228
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -24309,7 +24321,7 @@ class DatabaseClient(object):
24309
24321
  :rtype: :class:`~oci.response.Response`
24310
24322
 
24311
24323
  :example:
24312
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
24324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
24313
24325
  """
24314
24326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24315
24327
  required_arguments = ['vmClusterId']
@@ -24413,7 +24425,7 @@ class DatabaseClient(object):
24413
24425
  :rtype: :class:`~oci.response.Response`
24414
24426
 
24415
24427
  :example:
24416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
24428
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
24417
24429
  """
24418
24430
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24419
24431
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -24514,7 +24526,7 @@ class DatabaseClient(object):
24514
24526
  :rtype: :class:`~oci.response.Response`
24515
24527
 
24516
24528
  :example:
24517
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
24529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
24518
24530
  """
24519
24531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24520
24532
  required_arguments = ['vmClusterId', 'patchId']
@@ -24608,7 +24620,7 @@ class DatabaseClient(object):
24608
24620
  :rtype: :class:`~oci.response.Response`
24609
24621
 
24610
24622
  :example:
24611
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
24623
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
24612
24624
  """
24613
24625
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24614
24626
  required_arguments = ['vmClusterId', 'patchHistoryEntryId']
@@ -24705,7 +24717,7 @@ class DatabaseClient(object):
24705
24717
  :rtype: :class:`~oci.response.Response`
24706
24718
 
24707
24719
  :example:
24708
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
24720
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
24709
24721
  """
24710
24722
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24711
24723
  required_arguments = ['vmClusterId', 'updateId']
@@ -24809,7 +24821,7 @@ class DatabaseClient(object):
24809
24821
  :rtype: :class:`~oci.response.Response`
24810
24822
 
24811
24823
  :example:
24812
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
24824
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
24813
24825
  """
24814
24826
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24815
24827
  required_arguments = ['vmClusterId', 'updateHistoryEntryId']
@@ -24910,7 +24922,7 @@ class DatabaseClient(object):
24910
24922
  :rtype: :class:`~oci.response.Response`
24911
24923
 
24912
24924
  :example:
24913
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
24925
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
24914
24926
  """
24915
24927
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24916
24928
  required_arguments = []
@@ -25022,7 +25034,7 @@ class DatabaseClient(object):
25022
25034
  :rtype: :class:`~oci.response.Response`
25023
25035
 
25024
25036
  :example:
25025
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
25037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
25026
25038
  """
25027
25039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25028
25040
  required_arguments = []
@@ -25140,7 +25152,7 @@ class DatabaseClient(object):
25140
25152
  :rtype: :class:`~oci.response.Response`
25141
25153
 
25142
25154
  :example:
25143
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
25155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
25144
25156
  """
25145
25157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25146
25158
  required_arguments = ['compartmentId', 'cloudVmClusterId']
@@ -25268,7 +25280,7 @@ class DatabaseClient(object):
25268
25280
  :rtype: :class:`~oci.response.Response`
25269
25281
 
25270
25282
  :example:
25271
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
25283
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
25272
25284
  """
25273
25285
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25274
25286
  required_arguments = ['autonomousContainerDatabaseId']
@@ -25389,7 +25401,7 @@ class DatabaseClient(object):
25389
25401
  :rtype: :class:`~oci.response.Response`
25390
25402
 
25391
25403
  :example:
25392
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
25404
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
25393
25405
  """
25394
25406
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25395
25407
  required_arguments = ['compartmentId', 'serviceComponent']
@@ -25551,7 +25563,7 @@ class DatabaseClient(object):
25551
25563
  :rtype: :class:`~oci.response.Response`
25552
25564
 
25553
25565
  :example:
25554
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
25566
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
25555
25567
  """
25556
25568
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25557
25569
  required_arguments = ['compartmentId']
@@ -25727,7 +25739,7 @@ class DatabaseClient(object):
25727
25739
  :rtype: :class:`~oci.response.Response`
25728
25740
 
25729
25741
  :example:
25730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
25742
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
25731
25743
  """
25732
25744
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25733
25745
  required_arguments = []
@@ -25864,7 +25876,7 @@ class DatabaseClient(object):
25864
25876
  :rtype: :class:`~oci.response.Response`
25865
25877
 
25866
25878
  :example:
25867
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
25879
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
25868
25880
  """
25869
25881
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25870
25882
  required_arguments = []
@@ -26005,7 +26017,7 @@ class DatabaseClient(object):
26005
26017
  :rtype: :class:`~oci.response.Response`
26006
26018
 
26007
26019
  :example:
26008
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
26020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
26009
26021
  """
26010
26022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26011
26023
  required_arguments = ['autonomousDatabaseId', 'compartmentId']
@@ -26155,7 +26167,7 @@ class DatabaseClient(object):
26155
26167
  :rtype: :class:`~oci.response.Response`
26156
26168
 
26157
26169
  :example:
26158
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
26170
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
26159
26171
  """
26160
26172
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26161
26173
  required_arguments = ['autonomousDatabaseId']
@@ -26266,7 +26278,7 @@ class DatabaseClient(object):
26266
26278
  :rtype: :class:`~oci.response.Response`
26267
26279
 
26268
26280
  :example:
26269
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
26281
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
26270
26282
  """
26271
26283
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26272
26284
  required_arguments = ['autonomousDatabaseId']
@@ -26380,7 +26392,7 @@ class DatabaseClient(object):
26380
26392
  :rtype: :class:`~oci.response.Response`
26381
26393
 
26382
26394
  :example:
26383
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
26395
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
26384
26396
  """
26385
26397
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26386
26398
  required_arguments = ['autonomousDatabaseId']
@@ -26517,7 +26529,7 @@ class DatabaseClient(object):
26517
26529
  :rtype: :class:`~oci.response.Response`
26518
26530
 
26519
26531
  :example:
26520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
26532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
26521
26533
  """
26522
26534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26523
26535
  required_arguments = ['compartmentId', 'imageShapeFamily']
@@ -26718,7 +26730,7 @@ class DatabaseClient(object):
26718
26730
  :rtype: :class:`~oci.response.Response`
26719
26731
 
26720
26732
  :example:
26721
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
26733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
26722
26734
  """
26723
26735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26724
26736
  required_arguments = ['compartmentId']
@@ -26904,7 +26916,7 @@ class DatabaseClient(object):
26904
26916
  :rtype: :class:`~oci.response.Response`
26905
26917
 
26906
26918
  :example:
26907
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
26919
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
26908
26920
  """
26909
26921
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26910
26922
  required_arguments = ['compartmentId']
@@ -27035,7 +27047,7 @@ class DatabaseClient(object):
27035
27047
  :rtype: :class:`~oci.response.Response`
27036
27048
 
27037
27049
  :example:
27038
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
27050
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
27039
27051
  """
27040
27052
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27041
27053
  required_arguments = ['compartmentId']
@@ -27159,7 +27171,7 @@ class DatabaseClient(object):
27159
27171
  :rtype: :class:`~oci.response.Response`
27160
27172
 
27161
27173
  :example:
27162
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
27174
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
27163
27175
  """
27164
27176
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27165
27177
  required_arguments = ['availabilityDomain', 'compartmentId']
@@ -27283,7 +27295,7 @@ class DatabaseClient(object):
27283
27295
  :rtype: :class:`~oci.response.Response`
27284
27296
 
27285
27297
  :example:
27286
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
27298
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
27287
27299
  """
27288
27300
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27289
27301
  required_arguments = ['compartmentId']
@@ -27424,7 +27436,7 @@ class DatabaseClient(object):
27424
27436
  :rtype: :class:`~oci.response.Response`
27425
27437
 
27426
27438
  :example:
27427
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
27439
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
27428
27440
  """
27429
27441
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27430
27442
  required_arguments = ['compartmentId', 'autonomousVmClusterId']
@@ -27542,7 +27554,7 @@ class DatabaseClient(object):
27542
27554
  :rtype: :class:`~oci.response.Response`
27543
27555
 
27544
27556
  :example:
27545
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
27557
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
27546
27558
  """
27547
27559
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27548
27560
  required_arguments = ['autonomousVmClusterId']
@@ -27679,7 +27691,7 @@ class DatabaseClient(object):
27679
27691
  :rtype: :class:`~oci.response.Response`
27680
27692
 
27681
27693
  :example:
27682
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
27694
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
27683
27695
  """
27684
27696
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27685
27697
  required_arguments = ['compartmentId']
@@ -27816,7 +27828,7 @@ class DatabaseClient(object):
27816
27828
  :rtype: :class:`~oci.response.Response`
27817
27829
 
27818
27830
  :example:
27819
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
27831
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
27820
27832
  """
27821
27833
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27822
27834
  required_arguments = ['compartmentId']
@@ -27948,7 +27960,7 @@ class DatabaseClient(object):
27948
27960
  :rtype: :class:`~oci.response.Response`
27949
27961
 
27950
27962
  :example:
27951
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
27963
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
27952
27964
  """
27953
27965
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27954
27966
  required_arguments = []
@@ -28085,7 +28097,7 @@ class DatabaseClient(object):
28085
28097
  :rtype: :class:`~oci.response.Response`
28086
28098
 
28087
28099
  :example:
28088
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
28100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
28089
28101
  """
28090
28102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28091
28103
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -28225,7 +28237,7 @@ class DatabaseClient(object):
28225
28237
  :rtype: :class:`~oci.response.Response`
28226
28238
 
28227
28239
  :example:
28228
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
28240
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
28229
28241
  """
28230
28242
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28231
28243
  required_arguments = ['compartmentId']
@@ -28382,7 +28394,7 @@ class DatabaseClient(object):
28382
28394
  :rtype: :class:`~oci.response.Response`
28383
28395
 
28384
28396
  :example:
28385
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
28397
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
28386
28398
  """
28387
28399
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28388
28400
  required_arguments = ['compartmentId']
@@ -28521,7 +28533,7 @@ class DatabaseClient(object):
28521
28533
  :rtype: :class:`~oci.response.Response`
28522
28534
 
28523
28535
  :example:
28524
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
28536
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
28525
28537
  """
28526
28538
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28527
28539
  required_arguments = ['cloudVmClusterId']
@@ -28649,7 +28661,7 @@ class DatabaseClient(object):
28649
28661
  :rtype: :class:`~oci.response.Response`
28650
28662
 
28651
28663
  :example:
28652
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
28664
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
28653
28665
  """
28654
28666
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28655
28667
  required_arguments = ['cloudVmClusterId']
@@ -28798,7 +28810,7 @@ class DatabaseClient(object):
28798
28810
  :rtype: :class:`~oci.response.Response`
28799
28811
 
28800
28812
  :example:
28801
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
28813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
28802
28814
  """
28803
28815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28804
28816
  required_arguments = ['compartmentId']
@@ -28932,7 +28944,7 @@ class DatabaseClient(object):
28932
28944
  :rtype: :class:`~oci.response.Response`
28933
28945
 
28934
28946
  :example:
28935
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
28947
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
28936
28948
  """
28937
28949
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28938
28950
  required_arguments = ['dbNodeId']
@@ -29047,7 +29059,7 @@ class DatabaseClient(object):
29047
29059
  :rtype: :class:`~oci.response.Response`
29048
29060
 
29049
29061
  :example:
29050
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
29062
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
29051
29063
  """
29052
29064
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29053
29065
  required_arguments = ['dbNodeId']
@@ -29197,7 +29209,7 @@ class DatabaseClient(object):
29197
29209
  :rtype: :class:`~oci.response.Response`
29198
29210
 
29199
29211
  :example:
29200
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
29212
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
29201
29213
  """
29202
29214
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29203
29215
  required_arguments = ['autonomousContainerDatabaseId', 'compartmentId']
@@ -29315,7 +29327,7 @@ class DatabaseClient(object):
29315
29327
  :rtype: :class:`~oci.response.Response`
29316
29328
 
29317
29329
  :example:
29318
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
29330
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
29319
29331
  """
29320
29332
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29321
29333
  required_arguments = ['databaseId']
@@ -29463,7 +29475,7 @@ class DatabaseClient(object):
29463
29475
  :rtype: :class:`~oci.response.Response`
29464
29476
 
29465
29477
  :example:
29466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
29478
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
29467
29479
  """
29468
29480
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29469
29481
  required_arguments = ['compartmentId']
@@ -29636,7 +29648,7 @@ class DatabaseClient(object):
29636
29648
  :rtype: :class:`~oci.response.Response`
29637
29649
 
29638
29650
  :example:
29639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
29651
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
29640
29652
  """
29641
29653
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29642
29654
  required_arguments = ['databaseId']
@@ -29811,7 +29823,7 @@ class DatabaseClient(object):
29811
29823
  :rtype: :class:`~oci.response.Response`
29812
29824
 
29813
29825
  :example:
29814
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
29826
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
29815
29827
  """
29816
29828
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29817
29829
  required_arguments = ['compartmentId']
@@ -29941,7 +29953,7 @@ class DatabaseClient(object):
29941
29953
  :rtype: :class:`~oci.response.Response`
29942
29954
 
29943
29955
  :example:
29944
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
29956
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
29945
29957
  """
29946
29958
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29947
29959
  required_arguments = ['dbHomeId']
@@ -30049,7 +30061,7 @@ class DatabaseClient(object):
30049
30061
  :rtype: :class:`~oci.response.Response`
30050
30062
 
30051
30063
  :example:
30052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
30064
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
30053
30065
  """
30054
30066
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30055
30067
  required_arguments = ['dbHomeId']
@@ -30193,7 +30205,7 @@ class DatabaseClient(object):
30193
30205
  :rtype: :class:`~oci.response.Response`
30194
30206
 
30195
30207
  :example:
30196
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
30208
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
30197
30209
  """
30198
30210
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30199
30211
  required_arguments = ['compartmentId']
@@ -30357,7 +30369,7 @@ class DatabaseClient(object):
30357
30369
  :rtype: :class:`~oci.response.Response`
30358
30370
 
30359
30371
  :example:
30360
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
30372
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
30361
30373
  """
30362
30374
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30363
30375
  required_arguments = ['compartmentId']
@@ -30513,7 +30525,7 @@ class DatabaseClient(object):
30513
30525
  :rtype: :class:`~oci.response.Response`
30514
30526
 
30515
30527
  :example:
30516
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
30528
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
30517
30529
  """
30518
30530
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30519
30531
  required_arguments = ['compartmentId', 'exadataInfrastructureId']
@@ -30638,7 +30650,7 @@ class DatabaseClient(object):
30638
30650
  :rtype: :class:`~oci.response.Response`
30639
30651
 
30640
30652
  :example:
30641
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
30653
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
30642
30654
  """
30643
30655
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30644
30656
  required_arguments = []
@@ -30735,7 +30747,7 @@ class DatabaseClient(object):
30735
30747
  :rtype: :class:`~oci.response.Response`
30736
30748
 
30737
30749
  :example:
30738
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
30750
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
30739
30751
  """
30740
30752
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30741
30753
  required_arguments = ['dbSystemId']
@@ -30843,7 +30855,7 @@ class DatabaseClient(object):
30843
30855
  :rtype: :class:`~oci.response.Response`
30844
30856
 
30845
30857
  :example:
30846
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
30858
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
30847
30859
  """
30848
30860
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30849
30861
  required_arguments = ['dbSystemId']
@@ -30954,7 +30966,7 @@ class DatabaseClient(object):
30954
30966
  :rtype: :class:`~oci.response.Response`
30955
30967
 
30956
30968
  :example:
30957
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
30969
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
30958
30970
  """
30959
30971
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30960
30972
  required_arguments = ['compartmentId']
@@ -31055,7 +31067,7 @@ class DatabaseClient(object):
31055
31067
  :rtype: :class:`~oci.response.Response`
31056
31068
 
31057
31069
  :example:
31058
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
31070
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
31059
31071
  """
31060
31072
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31061
31073
  required_arguments = ['storageManagement']
@@ -31182,7 +31194,7 @@ class DatabaseClient(object):
31182
31194
  :rtype: :class:`~oci.response.Response`
31183
31195
 
31184
31196
  :example:
31185
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
31197
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
31186
31198
  """
31187
31199
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31188
31200
  required_arguments = ['dbSystemId']
@@ -31364,7 +31376,7 @@ class DatabaseClient(object):
31364
31376
  :rtype: :class:`~oci.response.Response`
31365
31377
 
31366
31378
  :example:
31367
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
31379
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
31368
31380
  """
31369
31381
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31370
31382
  required_arguments = ['compartmentId']
@@ -31515,7 +31527,7 @@ class DatabaseClient(object):
31515
31527
  :rtype: :class:`~oci.response.Response`
31516
31528
 
31517
31529
  :example:
31518
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
31530
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
31519
31531
  """
31520
31532
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31521
31533
  required_arguments = ['compartmentId']
@@ -31656,7 +31668,7 @@ class DatabaseClient(object):
31656
31668
  :rtype: :class:`~oci.response.Response`
31657
31669
 
31658
31670
  :example:
31659
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
31671
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
31660
31672
  """
31661
31673
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31662
31674
  required_arguments = ['compartmentId']
@@ -31803,7 +31815,7 @@ class DatabaseClient(object):
31803
31815
  :rtype: :class:`~oci.response.Response`
31804
31816
 
31805
31817
  :example:
31806
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
31818
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
31807
31819
  """
31808
31820
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31809
31821
  required_arguments = ['exadbVmClusterId']
@@ -31934,7 +31946,7 @@ class DatabaseClient(object):
31934
31946
  :rtype: :class:`~oci.response.Response`
31935
31947
 
31936
31948
  :example:
31937
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
31949
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
31938
31950
  """
31939
31951
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31940
31952
  required_arguments = ['exadbVmClusterId']
@@ -32083,7 +32095,7 @@ class DatabaseClient(object):
32083
32095
  :rtype: :class:`~oci.response.Response`
32084
32096
 
32085
32097
  :example:
32086
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
32098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
32087
32099
  """
32088
32100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32089
32101
  required_arguments = ['compartmentId']
@@ -32243,7 +32255,7 @@ class DatabaseClient(object):
32243
32255
  :rtype: :class:`~oci.response.Response`
32244
32256
 
32245
32257
  :example:
32246
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
32258
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
32247
32259
  """
32248
32260
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32249
32261
  required_arguments = ['compartmentId']
@@ -32400,7 +32412,7 @@ class DatabaseClient(object):
32400
32412
  :rtype: :class:`~oci.response.Response`
32401
32413
 
32402
32414
  :example:
32403
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
32415
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
32404
32416
  """
32405
32417
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32406
32418
  required_arguments = ['compartmentId']
@@ -32555,7 +32567,7 @@ class DatabaseClient(object):
32555
32567
  :rtype: :class:`~oci.response.Response`
32556
32568
 
32557
32569
  :example:
32558
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
32570
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
32559
32571
  """
32560
32572
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32561
32573
  required_arguments = ['compartmentId']
@@ -32710,7 +32722,7 @@ class DatabaseClient(object):
32710
32722
  :rtype: :class:`~oci.response.Response`
32711
32723
 
32712
32724
  :example:
32713
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
32725
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
32714
32726
  """
32715
32727
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32716
32728
  required_arguments = ['compartmentId']
@@ -32868,7 +32880,7 @@ class DatabaseClient(object):
32868
32880
  :rtype: :class:`~oci.response.Response`
32869
32881
 
32870
32882
  :example:
32871
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
32883
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
32872
32884
  """
32873
32885
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32874
32886
  required_arguments = ['compartmentId', 'externalDatabaseId']
@@ -33022,7 +33034,7 @@ class DatabaseClient(object):
33022
33034
  :rtype: :class:`~oci.response.Response`
33023
33035
 
33024
33036
  :example:
33025
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
33037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
33026
33038
  """
33027
33039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33028
33040
  required_arguments = ['compartmentId']
@@ -33181,7 +33193,7 @@ class DatabaseClient(object):
33181
33193
  :rtype: :class:`~oci.response.Response`
33182
33194
 
33183
33195
  :example:
33184
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
33196
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
33185
33197
  """
33186
33198
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33187
33199
  required_arguments = ['compartmentId']
@@ -33328,7 +33340,7 @@ class DatabaseClient(object):
33328
33340
  :rtype: :class:`~oci.response.Response`
33329
33341
 
33330
33342
  :example:
33331
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
33343
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
33332
33344
  """
33333
33345
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33334
33346
  required_arguments = ['compartmentId']
@@ -33477,7 +33489,7 @@ class DatabaseClient(object):
33477
33489
  :rtype: :class:`~oci.response.Response`
33478
33490
 
33479
33491
  :example:
33480
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
33492
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
33481
33493
  """
33482
33494
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33483
33495
  required_arguments = ['version']
@@ -33618,6 +33630,9 @@ class DatabaseClient(object):
33618
33630
  :param str availability_domain: (optional)
33619
33631
  The target availability domain. Only passed if the limit is AD-specific.
33620
33632
 
33633
+ :param str resource_id: (optional)
33634
+ If provided, filters the results for the specified resource Id.
33635
+
33621
33636
  :param obj retry_strategy: (optional)
33622
33637
  A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
33623
33638
 
@@ -33634,7 +33649,7 @@ class DatabaseClient(object):
33634
33649
  :rtype: :class:`~oci.response.Response`
33635
33650
 
33636
33651
  :example:
33637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
33652
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
33638
33653
  """
33639
33654
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33640
33655
  required_arguments = ['compartmentId']
@@ -33651,7 +33666,8 @@ class DatabaseClient(object):
33651
33666
  "page",
33652
33667
  "sort_order",
33653
33668
  "shape",
33654
- "availability_domain"
33669
+ "availability_domain",
33670
+ "resource_id"
33655
33671
  ]
33656
33672
  extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
33657
33673
  if extra_kwargs:
@@ -33671,7 +33687,8 @@ class DatabaseClient(object):
33671
33687
  "page": kwargs.get("page", missing),
33672
33688
  "sortOrder": kwargs.get("sort_order", missing),
33673
33689
  "shape": kwargs.get("shape", missing),
33674
- "availabilityDomain": kwargs.get("availability_domain", missing)
33690
+ "availabilityDomain": kwargs.get("availability_domain", missing),
33691
+ "resourceId": kwargs.get("resource_id", missing)
33675
33692
  }
33676
33693
  query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
33677
33694
 
@@ -33747,7 +33764,7 @@ class DatabaseClient(object):
33747
33764
  :rtype: :class:`~oci.response.Response`
33748
33765
 
33749
33766
  :example:
33750
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
33767
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
33751
33768
  """
33752
33769
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33753
33770
  required_arguments = ['compartmentId']
@@ -33885,7 +33902,7 @@ class DatabaseClient(object):
33885
33902
  :rtype: :class:`~oci.response.Response`
33886
33903
 
33887
33904
  :example:
33888
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
33905
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
33889
33906
  """
33890
33907
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33891
33908
  required_arguments = ['compartmentId']
@@ -34081,7 +34098,7 @@ class DatabaseClient(object):
34081
34098
  :rtype: :class:`~oci.response.Response`
34082
34099
 
34083
34100
  :example:
34084
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
34101
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
34085
34102
  """
34086
34103
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34087
34104
  required_arguments = ['compartmentId']
@@ -34259,7 +34276,7 @@ class DatabaseClient(object):
34259
34276
  :rtype: :class:`~oci.response.Response`
34260
34277
 
34261
34278
  :example:
34262
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
34279
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
34263
34280
  """
34264
34281
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34265
34282
  required_arguments = ['compartmentId']
@@ -34391,7 +34408,7 @@ class DatabaseClient(object):
34391
34408
  :rtype: :class:`~oci.response.Response`
34392
34409
 
34393
34410
  :example:
34394
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
34411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
34395
34412
  """
34396
34413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34397
34414
  required_arguments = ['type']
@@ -34520,7 +34537,7 @@ class DatabaseClient(object):
34520
34537
  :rtype: :class:`~oci.response.Response`
34521
34538
 
34522
34539
  :example:
34523
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
34540
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
34524
34541
  """
34525
34542
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34526
34543
  required_arguments = ['databaseId']
@@ -34690,7 +34707,7 @@ class DatabaseClient(object):
34690
34707
  :rtype: :class:`~oci.response.Response`
34691
34708
 
34692
34709
  :example:
34693
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
34710
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
34694
34711
  """
34695
34712
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34696
34713
  required_arguments = []
@@ -34832,7 +34849,7 @@ class DatabaseClient(object):
34832
34849
  :rtype: :class:`~oci.response.Response`
34833
34850
 
34834
34851
  :example:
34835
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
34852
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
34836
34853
  """
34837
34854
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34838
34855
  required_arguments = ['schedulingPolicyId', 'schedulingPolicyTargetResourceId', 'planIntent']
@@ -34981,7 +34998,7 @@ class DatabaseClient(object):
34981
34998
  :rtype: :class:`~oci.response.Response`
34982
34999
 
34983
35000
  :example:
34984
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
35001
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
34985
35002
  """
34986
35003
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34987
35004
  required_arguments = ['compartmentId']
@@ -35146,7 +35163,7 @@ class DatabaseClient(object):
35146
35163
  :rtype: :class:`~oci.response.Response`
35147
35164
 
35148
35165
  :example:
35149
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
35166
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
35150
35167
  """
35151
35168
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35152
35169
  required_arguments = ['compartmentId']
@@ -35302,7 +35319,7 @@ class DatabaseClient(object):
35302
35319
  :rtype: :class:`~oci.response.Response`
35303
35320
 
35304
35321
  :example:
35305
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
35322
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
35306
35323
  """
35307
35324
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35308
35325
  required_arguments = ['compartmentId']
@@ -35457,7 +35474,7 @@ class DatabaseClient(object):
35457
35474
  :rtype: :class:`~oci.response.Response`
35458
35475
 
35459
35476
  :example:
35460
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
35477
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
35461
35478
  """
35462
35479
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35463
35480
  required_arguments = ['schedulingPolicyId']
@@ -35567,18 +35584,166 @@ class DatabaseClient(object):
35567
35584
  api_reference_link=api_reference_link,
35568
35585
  required_arguments=required_arguments)
35569
35586
 
35570
- def list_system_versions(self, compartment_id, shape, gi_version, **kwargs):
35587
+ def list_system_version_minor_versions(self, major_version, compartment_id, gi_version, **kwargs):
35571
35588
  """
35572
- Gets a list of supported Exadata system versions for a given shape and GI version.
35589
+ Retrieves a list of supported minor versions for the specified Exadata System Software major version. You must provide either a `shape` or `resourceId` value.
35573
35590
 
35574
35591
 
35592
+ :param str major_version: (required)
35593
+ The System major version.
35594
+
35575
35595
  :param str compartment_id: (required)
35576
35596
  The compartment `OCID`__.
35577
35597
 
35578
35598
  __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
35579
35599
 
35580
- :param str shape: (required)
35581
- Specifies shape query parameter.
35600
+ :param str gi_version: (required)
35601
+ Specifies gi version query parameter.
35602
+
35603
+ :param int limit: (optional)
35604
+ The maximum number of items to return per page.
35605
+
35606
+ :param str page: (optional)
35607
+ The pagination token to continue listing from.
35608
+
35609
+ :param str sort_order: (optional)
35610
+ The sort order to use, either ascending (`ASC`) or descending (`DESC`).
35611
+
35612
+ Allowed values are: "ASC", "DESC"
35613
+
35614
+ :param str opc_request_id: (optional)
35615
+ Unique identifier for the request.
35616
+
35617
+ :param str shape: (optional)
35618
+ If provided, filters the results for the given shape.
35619
+
35620
+ :param str resource_id: (optional)
35621
+ If provided, filters the results for the specified resource Id.
35622
+
35623
+ :param bool is_latest: (optional)
35624
+ If provided, return highest versions from each major version family.
35625
+
35626
+ :param obj retry_strategy: (optional)
35627
+ A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
35628
+
35629
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
35630
+ The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
35631
+
35632
+ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
35633
+
35634
+ :param bool allow_control_chars: (optional)
35635
+ allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
35636
+ By default, the response will not allow control characters in strings
35637
+
35638
+ :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.database.models.SystemVersionMinorVersionCollection`
35639
+ :rtype: :class:`~oci.response.Response`
35640
+
35641
+ :example:
35642
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_system_version_minor_versions.py.html>`__ to see an example of how to use list_system_version_minor_versions API.
35643
+ """
35644
+ # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35645
+ required_arguments = ['majorVersion', 'compartmentId', 'giVersion']
35646
+ resource_path = "/systemVersions/{majorVersion}/minorVersions"
35647
+ method = "GET"
35648
+ operation_name = "list_system_version_minor_versions"
35649
+ api_reference_link = "https://docs.oracle.com/iaas/api/#/en/database/20160918/SystemVersionMinorVersionCollection/ListSystemVersionMinorVersions"
35650
+
35651
+ # Don't accept unknown kwargs
35652
+ expected_kwargs = [
35653
+ "allow_control_chars",
35654
+ "retry_strategy",
35655
+ "limit",
35656
+ "page",
35657
+ "sort_order",
35658
+ "opc_request_id",
35659
+ "shape",
35660
+ "resource_id",
35661
+ "is_latest"
35662
+ ]
35663
+ extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
35664
+ if extra_kwargs:
35665
+ raise ValueError(
35666
+ f"list_system_version_minor_versions got unknown kwargs: {extra_kwargs!r}")
35667
+
35668
+ path_params = {
35669
+ "majorVersion": major_version
35670
+ }
35671
+
35672
+ path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
35673
+
35674
+ for (k, v) in six.iteritems(path_params):
35675
+ if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
35676
+ raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string')
35677
+
35678
+ if 'sort_order' in kwargs:
35679
+ sort_order_allowed_values = ["ASC", "DESC"]
35680
+ if kwargs['sort_order'] not in sort_order_allowed_values:
35681
+ raise ValueError(
35682
+ f"Invalid value for `sort_order`, must be one of { sort_order_allowed_values }"
35683
+ )
35684
+
35685
+ query_params = {
35686
+ "compartmentId": compartment_id,
35687
+ "limit": kwargs.get("limit", missing),
35688
+ "page": kwargs.get("page", missing),
35689
+ "sortOrder": kwargs.get("sort_order", missing),
35690
+ "giVersion": gi_version,
35691
+ "shape": kwargs.get("shape", missing),
35692
+ "resourceId": kwargs.get("resource_id", missing),
35693
+ "isLatest": kwargs.get("is_latest", missing)
35694
+ }
35695
+ query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
35696
+
35697
+ header_params = {
35698
+ "accept": "application/json",
35699
+ "content-type": "application/json",
35700
+ "opc-request-id": kwargs.get("opc_request_id", missing)
35701
+ }
35702
+ header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
35703
+
35704
+ retry_strategy = self.base_client.get_preferred_retry_strategy(
35705
+ operation_retry_strategy=kwargs.get('retry_strategy'),
35706
+ client_retry_strategy=self.retry_strategy
35707
+ )
35708
+
35709
+ if retry_strategy:
35710
+ if not isinstance(retry_strategy, retry.NoneRetryStrategy):
35711
+ self.base_client.add_opc_client_retries_header(header_params)
35712
+ retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
35713
+ return retry_strategy.make_retrying_call(
35714
+ self.base_client.call_api,
35715
+ resource_path=resource_path,
35716
+ method=method,
35717
+ path_params=path_params,
35718
+ query_params=query_params,
35719
+ header_params=header_params,
35720
+ response_type="SystemVersionMinorVersionCollection",
35721
+ allow_control_chars=kwargs.get('allow_control_chars'),
35722
+ operation_name=operation_name,
35723
+ api_reference_link=api_reference_link,
35724
+ required_arguments=required_arguments)
35725
+ else:
35726
+ return self.base_client.call_api(
35727
+ resource_path=resource_path,
35728
+ method=method,
35729
+ path_params=path_params,
35730
+ query_params=query_params,
35731
+ header_params=header_params,
35732
+ response_type="SystemVersionMinorVersionCollection",
35733
+ allow_control_chars=kwargs.get('allow_control_chars'),
35734
+ operation_name=operation_name,
35735
+ api_reference_link=api_reference_link,
35736
+ required_arguments=required_arguments)
35737
+
35738
+ def list_system_versions(self, compartment_id, gi_version, **kwargs):
35739
+ """
35740
+ Gets a list of supported Exadata system versions for a given shape and GI version.
35741
+
35742
+
35743
+ :param str compartment_id: (required)
35744
+ The compartment `OCID`__.
35745
+
35746
+ __ https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm
35582
35747
 
35583
35748
  :param str gi_version: (required)
35584
35749
  Specifies gi version query parameter.
@@ -35597,6 +35762,15 @@ class DatabaseClient(object):
35597
35762
  :param str opc_request_id: (optional)
35598
35763
  Unique identifier for the request.
35599
35764
 
35765
+ :param str shape: (optional)
35766
+ If provided, filters the results for the given shape.
35767
+
35768
+ :param bool is_latest: (optional)
35769
+ If provided, return highest versions from each major version family.
35770
+
35771
+ :param str resource_id: (optional)
35772
+ If provided, filters the results for the specified resource Id.
35773
+
35600
35774
  :param obj retry_strategy: (optional)
35601
35775
  A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
35602
35776
 
@@ -35613,10 +35787,10 @@ class DatabaseClient(object):
35613
35787
  :rtype: :class:`~oci.response.Response`
35614
35788
 
35615
35789
  :example:
35616
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
35790
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
35617
35791
  """
35618
35792
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35619
- required_arguments = ['compartmentId', 'shape', 'giVersion']
35793
+ required_arguments = ['compartmentId', 'giVersion']
35620
35794
  resource_path = "/systemVersions"
35621
35795
  method = "GET"
35622
35796
  operation_name = "list_system_versions"
@@ -35629,7 +35803,10 @@ class DatabaseClient(object):
35629
35803
  "limit",
35630
35804
  "page",
35631
35805
  "sort_order",
35632
- "opc_request_id"
35806
+ "opc_request_id",
35807
+ "shape",
35808
+ "is_latest",
35809
+ "resource_id"
35633
35810
  ]
35634
35811
  extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
35635
35812
  if extra_kwargs:
@@ -35648,7 +35825,9 @@ class DatabaseClient(object):
35648
35825
  "limit": kwargs.get("limit", missing),
35649
35826
  "page": kwargs.get("page", missing),
35650
35827
  "sortOrder": kwargs.get("sort_order", missing),
35651
- "shape": shape,
35828
+ "shape": kwargs.get("shape", missing),
35829
+ "isLatest": kwargs.get("is_latest", missing),
35830
+ "resourceId": kwargs.get("resource_id", missing),
35652
35831
  "giVersion": gi_version
35653
35832
  }
35654
35833
  query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
@@ -35750,7 +35929,7 @@ class DatabaseClient(object):
35750
35929
  :rtype: :class:`~oci.response.Response`
35751
35930
 
35752
35931
  :example:
35753
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
35932
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
35754
35933
  """
35755
35934
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35756
35935
  required_arguments = ['exadataInfrastructureId', 'compartmentId']
@@ -35891,7 +36070,7 @@ class DatabaseClient(object):
35891
36070
  :rtype: :class:`~oci.response.Response`
35892
36071
 
35893
36072
  :example:
35894
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
36073
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
35895
36074
  """
35896
36075
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35897
36076
  required_arguments = ['vmClusterId']
@@ -35999,7 +36178,7 @@ class DatabaseClient(object):
35999
36178
  :rtype: :class:`~oci.response.Response`
36000
36179
 
36001
36180
  :example:
36002
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
36181
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
36003
36182
  """
36004
36183
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36005
36184
  required_arguments = ['vmClusterId']
@@ -36120,7 +36299,7 @@ class DatabaseClient(object):
36120
36299
  :rtype: :class:`~oci.response.Response`
36121
36300
 
36122
36301
  :example:
36123
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
36302
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
36124
36303
  """
36125
36304
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36126
36305
  required_arguments = ['vmClusterId']
@@ -36262,7 +36441,7 @@ class DatabaseClient(object):
36262
36441
  :rtype: :class:`~oci.response.Response`
36263
36442
 
36264
36443
  :example:
36265
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
36444
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
36266
36445
  """
36267
36446
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36268
36447
  required_arguments = ['vmClusterId']
@@ -36421,7 +36600,7 @@ class DatabaseClient(object):
36421
36600
  :rtype: :class:`~oci.response.Response`
36422
36601
 
36423
36602
  :example:
36424
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
36603
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
36425
36604
  """
36426
36605
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36427
36606
  required_arguments = ['compartmentId']
@@ -36574,7 +36753,7 @@ class DatabaseClient(object):
36574
36753
  :rtype: :class:`~oci.response.Response`
36575
36754
 
36576
36755
  :example:
36577
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
36756
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
36578
36757
  """
36579
36758
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36580
36759
  required_arguments = ['pluggableDatabaseId']
@@ -36689,7 +36868,7 @@ class DatabaseClient(object):
36689
36868
  :rtype: :class:`~oci.response.Response`
36690
36869
 
36691
36870
  :example:
36692
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/migrate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use migrate_autonomous_container_database_dataguard_association API.
36871
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/migrate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use migrate_autonomous_container_database_dataguard_association API.
36693
36872
  """
36694
36873
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36695
36874
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -36809,7 +36988,7 @@ class DatabaseClient(object):
36809
36988
  :rtype: :class:`~oci.response.Response`
36810
36989
 
36811
36990
  :example:
36812
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/migrate_data_guard_association_to_multi_data_guards.py.html>`__ to see an example of how to use migrate_data_guard_association_to_multi_data_guards API.
36991
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/migrate_data_guard_association_to_multi_data_guards.py.html>`__ to see an example of how to use migrate_data_guard_association_to_multi_data_guards API.
36813
36992
  """
36814
36993
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36815
36994
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -36928,7 +37107,7 @@ class DatabaseClient(object):
36928
37107
  :rtype: :class:`~oci.response.Response`
36929
37108
 
36930
37109
  :example:
36931
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
37110
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
36932
37111
  """
36933
37112
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36934
37113
  required_arguments = ['dbSystemId']
@@ -37048,7 +37227,7 @@ class DatabaseClient(object):
37048
37227
  :rtype: :class:`~oci.response.Response`
37049
37228
 
37050
37229
  :example:
37051
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
37230
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
37052
37231
  """
37053
37232
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37054
37233
  required_arguments = ['databaseId']
@@ -37168,7 +37347,7 @@ class DatabaseClient(object):
37168
37347
  :rtype: :class:`~oci.response.Response`
37169
37348
 
37170
37349
  :example:
37171
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
37350
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
37172
37351
  """
37173
37352
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37174
37353
  required_arguments = ['databaseId']
@@ -37288,7 +37467,7 @@ class DatabaseClient(object):
37288
37467
  :rtype: :class:`~oci.response.Response`
37289
37468
 
37290
37469
  :example:
37291
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
37470
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
37292
37471
  """
37293
37472
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37294
37473
  required_arguments = ['pluggableDatabaseId']
@@ -37408,7 +37587,7 @@ class DatabaseClient(object):
37408
37587
  :rtype: :class:`~oci.response.Response`
37409
37588
 
37410
37589
  :example:
37411
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
37590
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
37412
37591
  """
37413
37592
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37414
37593
  required_arguments = ['executionActionId']
@@ -37525,7 +37704,7 @@ class DatabaseClient(object):
37525
37704
  :rtype: :class:`~oci.response.Response`
37526
37705
 
37527
37706
  :example:
37528
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
37707
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
37529
37708
  """
37530
37709
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37531
37710
  required_arguments = ['pluggableDatabaseId']
@@ -37631,7 +37810,7 @@ class DatabaseClient(object):
37631
37810
  :rtype: :class:`~oci.response.Response`
37632
37811
 
37633
37812
  :example:
37634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
37813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
37635
37814
  """
37636
37815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37637
37816
  required_arguments = ['autonomousDatabaseId']
@@ -37735,7 +37914,7 @@ class DatabaseClient(object):
37735
37914
  :rtype: :class:`~oci.response.Response`
37736
37915
 
37737
37916
  :example:
37738
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/reinstate_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard API.
37917
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reinstate_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard API.
37739
37918
  """
37740
37919
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37741
37920
  required_arguments = ['autonomousContainerDatabaseId']
@@ -37842,7 +38021,7 @@ class DatabaseClient(object):
37842
38021
  :rtype: :class:`~oci.response.Response`
37843
38022
 
37844
38023
  :example:
37845
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
38024
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
37846
38025
  """
37847
38026
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37848
38027
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -37958,7 +38137,7 @@ class DatabaseClient(object):
37958
38137
  :rtype: :class:`~oci.response.Response`
37959
38138
 
37960
38139
  :example:
37961
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/reinstate_data_guard.py.html>`__ to see an example of how to use reinstate_data_guard API.
38140
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reinstate_data_guard.py.html>`__ to see an example of how to use reinstate_data_guard API.
37962
38141
  """
37963
38142
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37964
38143
  required_arguments = ['databaseId']
@@ -38073,7 +38252,7 @@ class DatabaseClient(object):
38073
38252
  :rtype: :class:`~oci.response.Response`
38074
38253
 
38075
38254
  :example:
38076
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
38255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
38077
38256
  """
38078
38257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38079
38258
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -38191,7 +38370,7 @@ class DatabaseClient(object):
38191
38370
  :rtype: :class:`~oci.response.Response`
38192
38371
 
38193
38372
  :example:
38194
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
38373
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
38195
38374
  """
38196
38375
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38197
38376
  required_arguments = ['pluggableDatabaseId']
@@ -38311,7 +38490,7 @@ class DatabaseClient(object):
38311
38490
  :rtype: :class:`~oci.response.Response`
38312
38491
 
38313
38492
  :example:
38314
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
38493
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
38315
38494
  """
38316
38495
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38317
38496
  required_arguments = ['cloudVmClusterId']
@@ -38431,7 +38610,7 @@ class DatabaseClient(object):
38431
38610
  :rtype: :class:`~oci.response.Response`
38432
38611
 
38433
38612
  :example:
38434
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
38613
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
38435
38614
  """
38436
38615
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38437
38616
  required_arguments = ['exadbVmClusterId']
@@ -38551,7 +38730,7 @@ class DatabaseClient(object):
38551
38730
  :rtype: :class:`~oci.response.Response`
38552
38731
 
38553
38732
  :example:
38554
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
38733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
38555
38734
  """
38556
38735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38557
38736
  required_arguments = ['vmClusterId']
@@ -38671,7 +38850,7 @@ class DatabaseClient(object):
38671
38850
  :rtype: :class:`~oci.response.Response`
38672
38851
 
38673
38852
  :example:
38674
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
38853
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
38675
38854
  """
38676
38855
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38677
38856
  required_arguments = ['executionWindowId']
@@ -38791,7 +38970,7 @@ class DatabaseClient(object):
38791
38970
  :rtype: :class:`~oci.response.Response`
38792
38971
 
38793
38972
  :example:
38794
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
38973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
38795
38974
  """
38796
38975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38797
38976
  required_arguments = ['schedulingPlanId']
@@ -38917,7 +39096,7 @@ class DatabaseClient(object):
38917
39096
  :rtype: :class:`~oci.response.Response`
38918
39097
 
38919
39098
  :example:
38920
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
39099
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
38921
39100
  """
38922
39101
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38923
39102
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -39036,7 +39215,7 @@ class DatabaseClient(object):
39036
39215
  :rtype: :class:`~oci.response.Response`
39037
39216
 
39038
39217
  :example:
39039
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
39218
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
39040
39219
  """
39041
39220
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39042
39221
  required_arguments = []
@@ -39142,7 +39321,7 @@ class DatabaseClient(object):
39142
39321
  :rtype: :class:`~oci.response.Response`
39143
39322
 
39144
39323
  :example:
39145
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
39324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
39146
39325
  """
39147
39326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39148
39327
  required_arguments = ['autonomousContainerDatabaseId']
@@ -39244,7 +39423,7 @@ class DatabaseClient(object):
39244
39423
  :rtype: :class:`~oci.response.Response`
39245
39424
 
39246
39425
  :example:
39247
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
39426
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
39248
39427
  """
39249
39428
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39250
39429
  required_arguments = ['autonomousDatabaseId']
@@ -39347,7 +39526,7 @@ class DatabaseClient(object):
39347
39526
  :rtype: :class:`~oci.response.Response`
39348
39527
 
39349
39528
  :example:
39350
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
39529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
39351
39530
  """
39352
39531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39353
39532
  required_arguments = ['autonomousDatabaseId']
@@ -39452,7 +39631,7 @@ class DatabaseClient(object):
39452
39631
  :rtype: :class:`~oci.response.Response`
39453
39632
 
39454
39633
  :example:
39455
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
39634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
39456
39635
  """
39457
39636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39458
39637
  required_arguments = ['databaseId']
@@ -39569,7 +39748,7 @@ class DatabaseClient(object):
39569
39748
  :rtype: :class:`~oci.response.Response`
39570
39749
 
39571
39750
  :example:
39572
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
39751
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
39573
39752
  """
39574
39753
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39575
39754
  required_arguments = ['autonomousContainerDatabaseId']
@@ -39692,7 +39871,7 @@ class DatabaseClient(object):
39692
39871
  :rtype: :class:`~oci.response.Response`
39693
39872
 
39694
39873
  :example:
39695
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
39874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
39696
39875
  """
39697
39876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39698
39877
  required_arguments = ['autonomousDatabaseId']
@@ -39813,7 +39992,7 @@ class DatabaseClient(object):
39813
39992
  :rtype: :class:`~oci.response.Response`
39814
39993
 
39815
39994
  :example:
39816
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
39995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
39817
39996
  """
39818
39997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39819
39998
  required_arguments = ['autonomousVmClusterId']
@@ -39931,7 +40110,7 @@ class DatabaseClient(object):
39931
40110
  :rtype: :class:`~oci.response.Response`
39932
40111
 
39933
40112
  :example:
39934
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
40113
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
39935
40114
  """
39936
40115
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39937
40116
  required_arguments = ['autonomousVmClusterId']
@@ -40049,7 +40228,7 @@ class DatabaseClient(object):
40049
40228
  :rtype: :class:`~oci.response.Response`
40050
40229
 
40051
40230
  :example:
40052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
40231
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
40053
40232
  """
40054
40233
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40055
40234
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -40168,7 +40347,7 @@ class DatabaseClient(object):
40168
40347
  :rtype: :class:`~oci.response.Response`
40169
40348
 
40170
40349
  :example:
40171
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/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.
40350
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
40172
40351
  """
40173
40352
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40174
40353
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -40284,7 +40463,7 @@ class DatabaseClient(object):
40284
40463
  :rtype: :class:`~oci.response.Response`
40285
40464
 
40286
40465
  :example:
40287
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
40466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
40288
40467
  """
40289
40468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40290
40469
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -40397,7 +40576,7 @@ class DatabaseClient(object):
40397
40576
  :rtype: :class:`~oci.response.Response`
40398
40577
 
40399
40578
  :example:
40400
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
40579
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
40401
40580
  """
40402
40581
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40403
40582
  required_arguments = ['pluggableDatabaseId']
@@ -40510,7 +40689,7 @@ class DatabaseClient(object):
40510
40689
  :rtype: :class:`~oci.response.Response`
40511
40690
 
40512
40691
  :example:
40513
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
40692
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
40514
40693
  """
40515
40694
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40516
40695
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -40625,7 +40804,7 @@ class DatabaseClient(object):
40625
40804
  :rtype: :class:`~oci.response.Response`
40626
40805
 
40627
40806
  :example:
40628
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
40807
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
40629
40808
  """
40630
40809
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40631
40810
  required_arguments = ['databaseId']
@@ -40728,7 +40907,7 @@ class DatabaseClient(object):
40728
40907
  :rtype: :class:`~oci.response.Response`
40729
40908
 
40730
40909
  :example:
40731
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
40910
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
40732
40911
  """
40733
40912
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40734
40913
  required_arguments = ['autonomousDatabaseId']
@@ -40840,7 +41019,7 @@ class DatabaseClient(object):
40840
41019
  :rtype: :class:`~oci.response.Response`
40841
41020
 
40842
41021
  :example:
40843
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
41022
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
40844
41023
  """
40845
41024
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40846
41025
  required_arguments = ['externalContainerDatabaseId', 'externalDatabaseConnectorId']
@@ -40963,7 +41142,7 @@ class DatabaseClient(object):
40963
41142
  :rtype: :class:`~oci.response.Response`
40964
41143
 
40965
41144
  :example:
40966
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
41145
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
40967
41146
  """
40968
41147
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40969
41148
  required_arguments = ['databaseId']
@@ -41085,7 +41264,7 @@ class DatabaseClient(object):
41085
41264
  :rtype: :class:`~oci.response.Response`
41086
41265
 
41087
41266
  :example:
41088
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
41267
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
41089
41268
  """
41090
41269
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41091
41270
  required_arguments = ['pluggableDatabaseId']
@@ -41192,7 +41371,7 @@ class DatabaseClient(object):
41192
41371
  :rtype: :class:`~oci.response.Response`
41193
41372
 
41194
41373
  :example:
41195
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
41374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
41196
41375
  """
41197
41376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41198
41377
  required_arguments = ['autonomousDatabaseId']
@@ -41292,7 +41471,7 @@ class DatabaseClient(object):
41292
41471
  :rtype: :class:`~oci.response.Response`
41293
41472
 
41294
41473
  :example:
41295
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
41474
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
41296
41475
  """
41297
41476
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41298
41477
  required_arguments = ['autonomousDatabaseId']
@@ -41402,7 +41581,7 @@ class DatabaseClient(object):
41402
41581
  :rtype: :class:`~oci.response.Response`
41403
41582
 
41404
41583
  :example:
41405
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
41584
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
41406
41585
  """
41407
41586
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41408
41587
  required_arguments = ['pluggableDatabaseId']
@@ -41510,7 +41689,7 @@ class DatabaseClient(object):
41510
41689
  :rtype: :class:`~oci.response.Response`
41511
41690
 
41512
41691
  :example:
41513
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
41692
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
41514
41693
  """
41515
41694
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41516
41695
  required_arguments = ['autonomousDatabaseId']
@@ -41622,7 +41801,7 @@ class DatabaseClient(object):
41622
41801
  :rtype: :class:`~oci.response.Response`
41623
41802
 
41624
41803
  :example:
41625
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
41804
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
41626
41805
  """
41627
41806
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41628
41807
  required_arguments = ['pluggableDatabaseId']
@@ -41745,7 +41924,7 @@ class DatabaseClient(object):
41745
41924
  :rtype: :class:`~oci.response.Response`
41746
41925
 
41747
41926
  :example:
41748
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/switch_over_data_guard.py.html>`__ to see an example of how to use switch_over_data_guard API.
41927
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switch_over_data_guard.py.html>`__ to see an example of how to use switch_over_data_guard API.
41749
41928
  """
41750
41929
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41751
41930
  required_arguments = ['databaseId']
@@ -41855,7 +42034,7 @@ class DatabaseClient(object):
41855
42034
  :rtype: :class:`~oci.response.Response`
41856
42035
 
41857
42036
  :example:
41858
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/switchover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard API.
42037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switchover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard API.
41859
42038
  """
41860
42039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41861
42040
  required_arguments = ['autonomousContainerDatabaseId']
@@ -41964,7 +42143,7 @@ class DatabaseClient(object):
41964
42143
  :rtype: :class:`~oci.response.Response`
41965
42144
 
41966
42145
  :example:
41967
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
42146
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
41968
42147
  """
41969
42148
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41970
42149
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -42083,7 +42262,7 @@ class DatabaseClient(object):
42083
42262
  :rtype: :class:`~oci.response.Response`
42084
42263
 
42085
42264
  :example:
42086
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
42265
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
42087
42266
  """
42088
42267
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42089
42268
  required_arguments = ['autonomousDatabaseId']
@@ -42207,7 +42386,7 @@ class DatabaseClient(object):
42207
42386
  :rtype: :class:`~oci.response.Response`
42208
42387
 
42209
42388
  :example:
42210
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
42389
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
42211
42390
  """
42212
42391
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42213
42392
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -42310,7 +42489,7 @@ class DatabaseClient(object):
42310
42489
  :rtype: :class:`~oci.response.Response`
42311
42490
 
42312
42491
  :example:
42313
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
42492
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
42314
42493
  """
42315
42494
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42316
42495
  required_arguments = ['autonomousContainerDatabaseId']
@@ -42408,7 +42587,7 @@ class DatabaseClient(object):
42408
42587
  :rtype: :class:`~oci.response.Response`
42409
42588
 
42410
42589
  :example:
42411
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
42590
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
42412
42591
  """
42413
42592
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42414
42593
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -42513,7 +42692,7 @@ class DatabaseClient(object):
42513
42692
  :rtype: :class:`~oci.response.Response`
42514
42693
 
42515
42694
  :example:
42516
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
42695
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
42517
42696
  """
42518
42697
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42519
42698
  required_arguments = ['dbSystemId']
@@ -42614,7 +42793,7 @@ class DatabaseClient(object):
42614
42793
  :rtype: :class:`~oci.response.Response`
42615
42794
 
42616
42795
  :example:
42617
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
42796
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
42618
42797
  """
42619
42798
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42620
42799
  required_arguments = ['autonomousContainerDatabaseId']
@@ -42727,7 +42906,7 @@ class DatabaseClient(object):
42727
42906
  :rtype: :class:`~oci.response.Response`
42728
42907
 
42729
42908
  :example:
42730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
42909
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
42731
42910
  """
42732
42911
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42733
42912
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -42838,7 +43017,7 @@ class DatabaseClient(object):
42838
43017
  :rtype: :class:`~oci.response.Response`
42839
43018
 
42840
43019
  :example:
42841
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
43020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
42842
43021
  """
42843
43022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42844
43023
  required_arguments = ['autonomousDatabaseId']
@@ -42948,7 +43127,7 @@ class DatabaseClient(object):
42948
43127
  :rtype: :class:`~oci.response.Response`
42949
43128
 
42950
43129
  :example:
42951
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
43130
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
42952
43131
  """
42953
43132
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42954
43133
  required_arguments = ['autonomousDatabaseBackupId']
@@ -43048,7 +43227,7 @@ class DatabaseClient(object):
43048
43227
  :rtype: :class:`~oci.response.Response`
43049
43228
 
43050
43229
  :example:
43051
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
43230
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
43052
43231
  """
43053
43232
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43054
43233
  required_arguments = []
@@ -43142,7 +43321,7 @@ class DatabaseClient(object):
43142
43321
  :rtype: :class:`~oci.response.Response`
43143
43322
 
43144
43323
  :example:
43145
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
43324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
43146
43325
  """
43147
43326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43148
43327
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -43247,7 +43426,7 @@ class DatabaseClient(object):
43247
43426
  :rtype: :class:`~oci.response.Response`
43248
43427
 
43249
43428
  :example:
43250
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
43429
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
43251
43430
  """
43252
43431
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43253
43432
  required_arguments = ['autonomousDatabaseId']
@@ -43350,7 +43529,7 @@ class DatabaseClient(object):
43350
43529
  :rtype: :class:`~oci.response.Response`
43351
43530
 
43352
43531
  :example:
43353
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
43532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
43354
43533
  """
43355
43534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43356
43535
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -43458,7 +43637,7 @@ class DatabaseClient(object):
43458
43637
  :rtype: :class:`~oci.response.Response`
43459
43638
 
43460
43639
  :example:
43461
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
43640
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
43462
43641
  """
43463
43642
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43464
43643
  required_arguments = ['autonomousVmClusterId']
@@ -43568,7 +43747,7 @@ class DatabaseClient(object):
43568
43747
  :rtype: :class:`~oci.response.Response`
43569
43748
 
43570
43749
  :example:
43571
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_backup.py.html>`__ to see an example of how to use update_backup API.
43750
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_backup.py.html>`__ to see an example of how to use update_backup API.
43572
43751
  """
43573
43752
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43574
43753
  required_arguments = ['backupId']
@@ -43681,7 +43860,7 @@ class DatabaseClient(object):
43681
43860
  :rtype: :class:`~oci.response.Response`
43682
43861
 
43683
43862
  :example:
43684
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
43863
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
43685
43864
  """
43686
43865
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43687
43866
  required_arguments = ['backupDestinationId']
@@ -43791,7 +43970,7 @@ class DatabaseClient(object):
43791
43970
  :rtype: :class:`~oci.response.Response`
43792
43971
 
43793
43972
  :example:
43794
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
43973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
43795
43974
  """
43796
43975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43797
43976
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -43901,7 +44080,7 @@ class DatabaseClient(object):
43901
44080
  :rtype: :class:`~oci.response.Response`
43902
44081
 
43903
44082
  :example:
43904
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
44083
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
43905
44084
  """
43906
44085
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43907
44086
  required_arguments = ['cloudExadataInfrastructureId']
@@ -44011,7 +44190,7 @@ class DatabaseClient(object):
44011
44190
  :rtype: :class:`~oci.response.Response`
44012
44191
 
44013
44192
  :example:
44014
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
44193
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
44015
44194
  """
44016
44195
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44017
44196
  required_arguments = ['cloudVmClusterId']
@@ -44121,7 +44300,7 @@ class DatabaseClient(object):
44121
44300
  :rtype: :class:`~oci.response.Response`
44122
44301
 
44123
44302
  :example:
44124
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
44303
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.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.
44125
44304
  """
44126
44305
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44127
44306
  required_arguments = ['cloudVmClusterId']
@@ -44234,7 +44413,7 @@ class DatabaseClient(object):
44234
44413
  :rtype: :class:`~oci.response.Response`
44235
44414
 
44236
44415
  :example:
44237
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
44416
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
44238
44417
  """
44239
44418
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44240
44419
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -44348,7 +44527,7 @@ class DatabaseClient(object):
44348
44527
  :rtype: :class:`~oci.response.Response`
44349
44528
 
44350
44529
  :example:
44351
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
44530
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
44352
44531
  """
44353
44532
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44354
44533
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -44469,7 +44648,7 @@ class DatabaseClient(object):
44469
44648
  :rtype: :class:`~oci.response.Response`
44470
44649
 
44471
44650
  :example:
44472
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_data_guard.py.html>`__ to see an example of how to use update_data_guard API.
44651
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_data_guard.py.html>`__ to see an example of how to use update_data_guard API.
44473
44652
  """
44474
44653
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44475
44654
  required_arguments = ['databaseId']
@@ -44587,7 +44766,7 @@ class DatabaseClient(object):
44587
44766
  :rtype: :class:`~oci.response.Response`
44588
44767
 
44589
44768
  :example:
44590
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
44769
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
44591
44770
  """
44592
44771
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44593
44772
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -44695,7 +44874,7 @@ class DatabaseClient(object):
44695
44874
  :rtype: :class:`~oci.response.Response`
44696
44875
 
44697
44876
  :example:
44698
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_database.py.html>`__ to see an example of how to use update_database API.
44877
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
44699
44878
  """
44700
44879
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44701
44880
  required_arguments = ['databaseId']
@@ -44800,7 +44979,7 @@ class DatabaseClient(object):
44800
44979
  :rtype: :class:`~oci.response.Response`
44801
44980
 
44802
44981
  :example:
44803
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
44982
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
44804
44983
  """
44805
44984
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44806
44985
  required_arguments = ['databaseSoftwareImageId']
@@ -44905,7 +45084,7 @@ class DatabaseClient(object):
44905
45084
  :rtype: :class:`~oci.response.Response`
44906
45085
 
44907
45086
  :example:
44908
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
45087
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
44909
45088
  """
44910
45089
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44911
45090
  required_arguments = ['dbHomeId']
@@ -45013,7 +45192,7 @@ class DatabaseClient(object):
45013
45192
  :rtype: :class:`~oci.response.Response`
45014
45193
 
45015
45194
  :example:
45016
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
45195
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
45017
45196
  """
45018
45197
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45019
45198
  required_arguments = ['dbNodeId']
@@ -45127,7 +45306,7 @@ class DatabaseClient(object):
45127
45306
  :rtype: :class:`~oci.response.Response`
45128
45307
 
45129
45308
  :example:
45130
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
45309
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
45131
45310
  """
45132
45311
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45133
45312
  required_arguments = ['dbSystemId']
@@ -45236,7 +45415,7 @@ class DatabaseClient(object):
45236
45415
  :rtype: :class:`~oci.response.Response`
45237
45416
 
45238
45417
  :example:
45239
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
45418
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
45240
45419
  """
45241
45420
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45242
45421
  required_arguments = ['exadataInfrastructureId']
@@ -45356,7 +45535,7 @@ class DatabaseClient(object):
45356
45535
  :rtype: :class:`~oci.response.Response`
45357
45536
 
45358
45537
  :example:
45359
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
45538
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
45360
45539
  """
45361
45540
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45362
45541
  required_arguments = ['dbSystemId']
@@ -45466,7 +45645,7 @@ class DatabaseClient(object):
45466
45645
  :rtype: :class:`~oci.response.Response`
45467
45646
 
45468
45647
  :example:
45469
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
45648
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
45470
45649
  """
45471
45650
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45472
45651
  required_arguments = ['exadbVmClusterId']
@@ -45576,7 +45755,7 @@ class DatabaseClient(object):
45576
45755
  :rtype: :class:`~oci.response.Response`
45577
45756
 
45578
45757
  :example:
45579
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
45758
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
45580
45759
  """
45581
45760
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45582
45761
  required_arguments = ['exascaleDbStorageVaultId']
@@ -45686,7 +45865,7 @@ class DatabaseClient(object):
45686
45865
  :rtype: :class:`~oci.response.Response`
45687
45866
 
45688
45867
  :example:
45689
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
45868
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
45690
45869
  """
45691
45870
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45692
45871
  required_arguments = ['executionActionId']
@@ -45796,7 +45975,7 @@ class DatabaseClient(object):
45796
45975
  :rtype: :class:`~oci.response.Response`
45797
45976
 
45798
45977
  :example:
45799
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
45978
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
45800
45979
  """
45801
45980
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45802
45981
  required_arguments = ['executionWindowId']
@@ -45909,7 +46088,7 @@ class DatabaseClient(object):
45909
46088
  :rtype: :class:`~oci.response.Response`
45910
46089
 
45911
46090
  :example:
45912
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
46091
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
45913
46092
  """
45914
46093
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45915
46094
  required_arguments = ['externalContainerDatabaseId']
@@ -46020,7 +46199,7 @@ class DatabaseClient(object):
46020
46199
  :rtype: :class:`~oci.response.Response`
46021
46200
 
46022
46201
  :example:
46023
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
46202
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
46024
46203
  """
46025
46204
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46026
46205
  required_arguments = ['externalDatabaseConnectorId']
@@ -46130,7 +46309,7 @@ class DatabaseClient(object):
46130
46309
  :rtype: :class:`~oci.response.Response`
46131
46310
 
46132
46311
  :example:
46133
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
46312
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
46134
46313
  """
46135
46314
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46136
46315
  required_arguments = ['externalNonContainerDatabaseId']
@@ -46242,7 +46421,7 @@ class DatabaseClient(object):
46242
46421
  :rtype: :class:`~oci.response.Response`
46243
46422
 
46244
46423
  :example:
46245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
46424
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
46246
46425
  """
46247
46426
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46248
46427
  required_arguments = ['externalPluggableDatabaseId']
@@ -46352,7 +46531,7 @@ class DatabaseClient(object):
46352
46531
  :rtype: :class:`~oci.response.Response`
46353
46532
 
46354
46533
  :example:
46355
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
46534
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
46356
46535
  """
46357
46536
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46358
46537
  required_arguments = ['keyStoreId']
@@ -46457,7 +46636,7 @@ class DatabaseClient(object):
46457
46636
  :rtype: :class:`~oci.response.Response`
46458
46637
 
46459
46638
  :example:
46460
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
46639
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
46461
46640
  """
46462
46641
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46463
46642
  required_arguments = ['maintenanceRunId']
@@ -46565,7 +46744,7 @@ class DatabaseClient(object):
46565
46744
  :rtype: :class:`~oci.response.Response`
46566
46745
 
46567
46746
  :example:
46568
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
46747
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
46569
46748
  """
46570
46749
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46571
46750
  required_arguments = ['oneoffPatchId']
@@ -46672,7 +46851,7 @@ class DatabaseClient(object):
46672
46851
  :rtype: :class:`~oci.response.Response`
46673
46852
 
46674
46853
  :example:
46675
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
46854
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
46676
46855
  """
46677
46856
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46678
46857
  required_arguments = ['pluggableDatabaseId']
@@ -46780,7 +46959,7 @@ class DatabaseClient(object):
46780
46959
  :rtype: :class:`~oci.response.Response`
46781
46960
 
46782
46961
  :example:
46783
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
46962
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
46784
46963
  """
46785
46964
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46786
46965
  required_arguments = ['scheduledActionId']
@@ -46890,7 +47069,7 @@ class DatabaseClient(object):
46890
47069
  :rtype: :class:`~oci.response.Response`
46891
47070
 
46892
47071
  :example:
46893
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
47072
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
46894
47073
  """
46895
47074
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46896
47075
  required_arguments = ['schedulingPolicyId']
@@ -47005,7 +47184,7 @@ class DatabaseClient(object):
47005
47184
  :rtype: :class:`~oci.response.Response`
47006
47185
 
47007
47186
  :example:
47008
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
47187
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
47009
47188
  """
47010
47189
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47011
47190
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -47116,7 +47295,7 @@ class DatabaseClient(object):
47116
47295
  :rtype: :class:`~oci.response.Response`
47117
47296
 
47118
47297
  :example:
47119
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
47298
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
47120
47299
  """
47121
47300
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47122
47301
  required_arguments = ['vmClusterId']
@@ -47232,7 +47411,7 @@ class DatabaseClient(object):
47232
47411
  :rtype: :class:`~oci.response.Response`
47233
47412
 
47234
47413
  :example:
47235
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
47414
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
47236
47415
  """
47237
47416
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47238
47417
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -47343,7 +47522,7 @@ class DatabaseClient(object):
47343
47522
  :rtype: :class:`~oci.response.Response`
47344
47523
 
47345
47524
  :example:
47346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
47525
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
47347
47526
  """
47348
47527
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47349
47528
  required_arguments = ['databaseId']
@@ -47460,7 +47639,7 @@ class DatabaseClient(object):
47460
47639
  :rtype: :class:`~oci.response.Response`
47461
47640
 
47462
47641
  :example:
47463
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
47642
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
47464
47643
  """
47465
47644
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47466
47645
  required_arguments = ['dbSystemId']
@@ -47577,7 +47756,7 @@ class DatabaseClient(object):
47577
47756
  :rtype: :class:`~oci.response.Response`
47578
47757
 
47579
47758
  :example:
47580
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.150.3/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
47759
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
47581
47760
  """
47582
47761
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47583
47762
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']