oci 2.154.2__py3-none-any.whl → 2.155.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 (520) hide show
  1. oci/__init__.py +2 -2
  2. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  3. oci/addons/adk/agent.py +82 -32
  4. oci/addons/adk/mcp/__init__.py +11 -0
  5. oci/addons/adk/mcp/mcp_client.py +420 -0
  6. oci/addons/adk/tool/function_tool.py +7 -3
  7. oci/addons/adk/tool/tool.py +11 -1
  8. oci/addons/adk/tool/toolkit.py +11 -2
  9. oci/adm/application_dependency_management_client.py +36 -36
  10. oci/ai_anomaly_detection/anomaly_detection_client.py +72 -72
  11. oci/ai_document/ai_service_document_client.py +26 -26
  12. oci/ai_language/ai_service_language_client.py +44 -44
  13. oci/ai_speech/ai_service_speech_client.py +19 -19
  14. oci/ai_vision/ai_service_vision_client.py +28 -28
  15. oci/analytics/analytics_client.py +24 -24
  16. oci/announcements_service/announcement_client.py +5 -5
  17. oci/announcements_service/announcement_subscription_client.py +9 -9
  18. oci/announcements_service/announcements_preferences_client.py +4 -4
  19. oci/announcements_service/service_client.py +1 -1
  20. oci/apiaccesscontrol/api_metadata_client.py +6 -6
  21. oci/apiaccesscontrol/privileged_api_control_client.py +12 -12
  22. oci/apiaccesscontrol/privileged_api_requests_client.py +14 -14
  23. oci/apiaccesscontrol/privileged_api_work_request_client.py +10 -10
  24. oci/apigateway/api_gateway_client.py +21 -21
  25. oci/apigateway/deployment_client.py +6 -6
  26. oci/apigateway/gateway_client.py +6 -6
  27. oci/apigateway/subscribers_client.py +6 -6
  28. oci/apigateway/usage_plans_client.py +6 -6
  29. oci/apigateway/work_requests_client.py +5 -5
  30. oci/apm_config/config_client.py +12 -12
  31. oci/apm_control_plane/apm_domain_client.py +14 -14
  32. oci/apm_synthetics/apm_synthetic_client.py +28 -28
  33. oci/apm_traces/__init__.py +3 -1
  34. oci/apm_traces/attributes_client.py +12 -12
  35. oci/apm_traces/models/__init__.py +25 -1
  36. oci/apm_traces/models/attribute.py +101 -0
  37. oci/apm_traces/models/attribute_metadata.py +149 -0
  38. oci/apm_traces/models/attribute_response.py +2 -2
  39. oci/apm_traces/models/attribute_update_response.py +2 -2
  40. oci/apm_traces/models/auto_activate_status.py +16 -0
  41. oci/apm_traces/models/auto_activate_toggle_status.py +16 -0
  42. oci/apm_traces/models/bulk_activate_attribute_detail.py +47 -8
  43. oci/apm_traces/models/bulk_de_activate_attribute_detail.py +7 -3
  44. oci/apm_traces/models/bulk_pin_attribute_detail.py +7 -3
  45. oci/apm_traces/models/bulk_unpin_attribute_detail.py +7 -3
  46. oci/apm_traces/models/bulk_update_attribute_detail.py +9 -5
  47. oci/apm_traces/models/bulk_update_attribute_notes_detail.py +7 -3
  48. oci/apm_traces/models/create_scheduled_query_details.py +471 -0
  49. oci/apm_traces/models/custom_metric.py +295 -0
  50. oci/apm_traces/models/log.py +475 -0
  51. oci/apm_traces/models/object_storage.py +132 -0
  52. oci/apm_traces/models/scheduled_query.py +666 -0
  53. oci/apm_traces/models/scheduled_query_collection.py +70 -0
  54. oci/apm_traces/models/scheduled_query_processing_config.py +120 -0
  55. oci/apm_traces/models/scheduled_query_summary.py +573 -0
  56. oci/apm_traces/models/streaming.py +70 -0
  57. oci/apm_traces/models/tag_metadata.py +2 -2
  58. oci/apm_traces/models/update_scheduled_query_details.py +471 -0
  59. oci/apm_traces/query_client.py +8 -6
  60. oci/apm_traces/scheduled_query_client.py +755 -0
  61. oci/apm_traces/scheduled_query_client_composite_operations.py +181 -0
  62. oci/apm_traces/trace_client.py +131 -6
  63. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  64. oci/artifacts/artifacts_client.py +32 -32
  65. oci/audit/audit_client.py +3 -3
  66. oci/autoscaling/auto_scaling_client.py +11 -11
  67. oci/base_client.py +3 -0
  68. oci/bastion/bastion_client.py +15 -15
  69. oci/bds/bds_client.py +88 -88
  70. oci/blockchain/blockchain_platform_client.py +27 -27
  71. oci/budget/budget_client.py +10 -10
  72. oci/capacity_management/capacity_management_client.py +32 -32
  73. oci/capacity_management/demand_signal_client.py +13 -13
  74. oci/capacity_management/internal_demand_signal_client.py +12 -12
  75. oci/certificates/certificates_client.py +5 -5
  76. oci/certificates_management/certificates_management_client.py +32 -32
  77. oci/cims/incident_client.py +6 -6
  78. oci/cloud_bridge/common_client.py +5 -5
  79. oci/cloud_bridge/discovery_client.py +15 -15
  80. oci/cloud_bridge/inventory_client.py +16 -16
  81. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  82. oci/cloud_guard/cloud_guard_client.py +155 -155
  83. oci/cloud_migrations/migration_client.py +43 -43
  84. oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
  85. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  86. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  87. oci/compute_instance_agent/plugin_client.py +2 -2
  88. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  89. oci/container_engine/container_engine_client.py +46 -46
  90. oci/container_instances/container_instance_client.py +18 -18
  91. oci/core/blockstorage_client.py +60 -60
  92. oci/core/compute_client.py +125 -125
  93. oci/core/compute_management_client.py +32 -32
  94. oci/core/virtual_network_client.py +258 -258
  95. oci/dashboard_service/dashboard_client.py +6 -6
  96. oci/dashboard_service/dashboard_group_client.py +6 -6
  97. oci/data_catalog/data_catalog_client.py +149 -149
  98. oci/data_flow/data_flow_client.py +45 -45
  99. oci/data_integration/data_integration_client.py +163 -163
  100. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  101. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  102. oci/data_safe/data_safe_client.py +317 -317
  103. oci/data_science/data_science_client.py +145 -145
  104. oci/database/database_client.py +901 -421
  105. oci/database/database_client_composite_operations.py +123 -0
  106. oci/database/models/__init__.py +14 -0
  107. oci/database/models/autonomous_container_database.py +37 -0
  108. oci/database/models/autonomous_container_database_summary.py +37 -0
  109. oci/database/models/autonomous_database_software_image.py +37 -0
  110. oci/database/models/autonomous_database_software_image_summary.py +37 -0
  111. oci/database/models/autonomous_vm_cluster.py +37 -0
  112. oci/database/models/autonomous_vm_cluster_summary.py +37 -0
  113. oci/database/models/azure_encryption_key_details.py +80 -0
  114. oci/database/models/backup.py +7 -3
  115. oci/database/models/backup_destination.py +37 -0
  116. oci/database/models/backup_destination_configuration_summary.py +7 -3
  117. oci/database/models/backup_destination_details.py +7 -3
  118. oci/database/models/backup_destination_details_summary.py +7 -3
  119. oci/database/models/backup_destination_summary.py +37 -0
  120. oci/database/models/backup_summary.py +7 -3
  121. oci/database/models/change_cloud_autonomous_vm_cluster_subscription_details.py +105 -0
  122. oci/database/models/cloud_autonomous_vm_cluster.py +74 -2
  123. oci/database/models/cloud_autonomous_vm_cluster_summary.py +74 -2
  124. oci/database/models/cloud_vm_cluster.py +80 -2
  125. oci/database/models/cloud_vm_cluster_summary.py +80 -2
  126. oci/database/models/create_cloud_autonomous_vm_cluster_details.py +37 -2
  127. oci/database/models/create_cloud_vm_cluster_details.py +17 -17
  128. oci/database/models/create_database_base.py +1 -1
  129. oci/database/models/create_vm_cluster_details.py +2 -2
  130. oci/database/models/database.py +37 -0
  131. oci/database/models/database_software_image.py +37 -0
  132. oci/database/models/database_software_image_summary.py +37 -0
  133. oci/database/models/database_summary.py +37 -0
  134. oci/database/models/db_home.py +37 -0
  135. oci/database/models/db_home_from_agent_resource_id.py +37 -0
  136. oci/database/models/db_home_summary.py +37 -0
  137. oci/database/models/db_node.py +37 -0
  138. oci/database/models/db_node_summary.py +37 -0
  139. oci/database/models/db_server.py +37 -0
  140. oci/database/models/db_server_summary.py +37 -0
  141. oci/database/models/db_system.py +37 -0
  142. oci/database/models/db_system_summary.py +37 -0
  143. oci/database/models/encryption_key_location_details.py +15 -5
  144. oci/database/models/exadata_infrastructure.py +37 -0
  145. oci/database/models/exadata_infrastructure_summary.py +37 -0
  146. oci/database/models/execution_action.py +39 -2
  147. oci/database/models/execution_action_summary.py +39 -2
  148. oci/database/models/execution_window.py +39 -2
  149. oci/database/models/execution_window_summary.py +39 -2
  150. oci/database/models/external_container_database.py +37 -0
  151. oci/database/models/external_container_database_summary.py +37 -0
  152. oci/database/models/external_database_base.py +37 -0
  153. oci/database/models/external_database_connector.py +37 -0
  154. oci/database/models/external_database_connector_summary.py +37 -0
  155. oci/database/models/external_hsm_encryption_details.py +1 -1
  156. oci/database/models/external_macs_connector.py +7 -0
  157. oci/database/models/external_macs_connector_summary.py +7 -0
  158. oci/database/models/external_non_container_database.py +37 -0
  159. oci/database/models/external_non_container_database_summary.py +37 -0
  160. oci/database/models/external_pluggable_database.py +37 -0
  161. oci/database/models/external_pluggable_database_summary.py +37 -0
  162. oci/database/models/identity_connector_details.py +113 -0
  163. oci/database/models/key_store.py +39 -2
  164. oci/database/models/key_store_summary.py +39 -2
  165. oci/database/models/maintenance_run.py +37 -0
  166. oci/database/models/maintenance_run_history.py +39 -2
  167. oci/database/models/maintenance_run_history_summary.py +39 -2
  168. oci/database/models/maintenance_run_summary.py +37 -0
  169. oci/database/models/oneoff_patch.py +39 -2
  170. oci/database/models/oneoff_patch_summary.py +39 -2
  171. oci/database/models/pluggable_database.py +37 -0
  172. oci/database/models/pluggable_database_summary.py +37 -0
  173. oci/database/models/register_cloud_vm_cluster_pkcs_details.py +86 -0
  174. oci/database/models/resource_pool_member_collection.py +70 -0
  175. oci/database/models/resource_pool_member_summary.py +74 -0
  176. oci/database/models/scheduling_policy.py +39 -2
  177. oci/database/models/scheduling_policy_summary.py +39 -2
  178. oci/database/models/scheduling_window.py +39 -2
  179. oci/database/models/scheduling_window_summary.py +39 -2
  180. oci/database/models/unregister_cloud_vm_cluster_pkcs_details.py +86 -0
  181. oci/database/models/vm_cluster.py +37 -0
  182. oci/database/models/vm_cluster_network.py +39 -2
  183. oci/database/models/vm_cluster_network_summary.py +39 -2
  184. oci/database/models/vm_cluster_summary.py +37 -0
  185. oci/database_management/db_management_client.py +229 -229
  186. oci/database_management/diagnosability_client.py +4 -4
  187. oci/database_management/managed_my_sql_databases_client.py +15 -15
  188. oci/database_management/perfhub_client.py +1 -1
  189. oci/database_management/sql_tuning_client.py +17 -17
  190. oci/database_migration/database_migration_client.py +155 -42
  191. oci/database_migration/database_migration_client_composite_operations.py +42 -0
  192. oci/database_migration/models/__init__.py +4 -0
  193. oci/database_migration/models/collect_traces_data.py +183 -0
  194. oci/database_migration/models/collect_traces_details.py +132 -0
  195. oci/database_migration/models/job.py +27 -0
  196. oci/database_tools/database_tools_client.py +23 -23
  197. oci/dblm/db_life_cycle_management_client.py +14 -14
  198. oci/dbmulticloud/__init__.py +28 -0
  199. oci/dbmulticloud/models/__init__.py +112 -0
  200. oci/dbmulticloud/models/arc_agent_nodes.py +218 -0
  201. oci/dbmulticloud/models/change_multi_cloud_resource_discovery_compartment_details.py +191 -0
  202. oci/dbmulticloud/models/change_oracle_db_azure_blob_container_compartment_details.py +187 -0
  203. oci/dbmulticloud/models/change_oracle_db_azure_blob_mount_compartment_details.py +187 -0
  204. oci/dbmulticloud/models/change_oracle_db_azure_connector_compartment_details.py +187 -0
  205. oci/dbmulticloud/models/change_oracle_db_azure_vault_association_compartment_details.py +191 -0
  206. oci/dbmulticloud/models/change_oracle_db_azure_vault_compartment_details.py +191 -0
  207. oci/dbmulticloud/models/create_multi_cloud_resource_discovery_details.py +253 -0
  208. oci/dbmulticloud/models/create_oracle_db_azure_blob_container_details.py +307 -0
  209. oci/dbmulticloud/models/create_oracle_db_azure_blob_mount_details.py +245 -0
  210. oci/dbmulticloud/models/create_oracle_db_azure_connector_details.py +431 -0
  211. oci/dbmulticloud/models/create_oracle_db_azure_vault_association_details.py +257 -0
  212. oci/dbmulticloud/models/create_oracle_db_azure_vault_details.py +377 -0
  213. oci/dbmulticloud/models/multi_cloud_resource_discovery.py +577 -0
  214. oci/dbmulticloud/models/multi_cloud_resource_discovery_summary.py +517 -0
  215. oci/dbmulticloud/models/multi_cloud_resource_discovery_summary_collection.py +70 -0
  216. oci/dbmulticloud/models/oracle_db_azure_blob_container.py +568 -0
  217. oci/dbmulticloud/models/oracle_db_azure_blob_container_summary.py +536 -0
  218. oci/dbmulticloud/models/oracle_db_azure_blob_container_summary_collection.py +70 -0
  219. oci/dbmulticloud/models/oracle_db_azure_blob_mount.py +537 -0
  220. oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary.py +505 -0
  221. oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary_collection.py +70 -0
  222. oci/dbmulticloud/models/oracle_db_azure_connector.py +739 -0
  223. oci/dbmulticloud/models/oracle_db_azure_connector_summary.py +660 -0
  224. oci/dbmulticloud/models/oracle_db_azure_connector_summary_collection.py +70 -0
  225. oci/dbmulticloud/models/oracle_db_azure_key.py +518 -0
  226. oci/dbmulticloud/models/oracle_db_azure_key_summary.py +486 -0
  227. oci/dbmulticloud/models/oracle_db_azure_key_summary_collection.py +70 -0
  228. oci/dbmulticloud/models/oracle_db_azure_vault.py +642 -0
  229. oci/dbmulticloud/models/oracle_db_azure_vault_association.py +553 -0
  230. oci/dbmulticloud/models/oracle_db_azure_vault_association_summary.py +521 -0
  231. oci/dbmulticloud/models/oracle_db_azure_vault_association_summary_collection.py +70 -0
  232. oci/dbmulticloud/models/oracle_db_azure_vault_summary.py +610 -0
  233. oci/dbmulticloud/models/oracle_db_azure_vault_summary_collection.py +70 -0
  234. oci/dbmulticloud/models/patch_oracle_db_azure_connector_details.py +187 -0
  235. oci/dbmulticloud/models/resources.py +229 -0
  236. oci/dbmulticloud/models/update_multi_cloud_resource_discovery_details.py +253 -0
  237. oci/dbmulticloud/models/update_oracle_db_azure_blob_container_details.py +307 -0
  238. oci/dbmulticloud/models/update_oracle_db_azure_blob_mount_details.py +245 -0
  239. oci/dbmulticloud/models/update_oracle_db_azure_connector_details.py +431 -0
  240. oci/dbmulticloud/models/update_oracle_db_azure_vault_association_details.py +257 -0
  241. oci/dbmulticloud/models/update_oracle_db_azure_vault_details.py +377 -0
  242. oci/dbmulticloud/models/work_request.py +496 -0
  243. oci/dbmulticloud/models/work_request_error.py +134 -0
  244. oci/dbmulticloud/models/work_request_error_collection.py +70 -0
  245. oci/dbmulticloud/models/work_request_log_entry.py +101 -0
  246. oci/dbmulticloud/models/work_request_log_entry_collection.py +70 -0
  247. oci/dbmulticloud/models/work_request_resource.py +232 -0
  248. oci/dbmulticloud/models/work_request_summary.py +496 -0
  249. oci/dbmulticloud/models/work_request_summary_collection.py +70 -0
  250. oci/dbmulticloud/multi_cloud_resource_discovery_client.py +883 -0
  251. oci/dbmulticloud/multi_cloud_resource_discovery_client_composite_operations.py +202 -0
  252. oci/dbmulticloud/oracle_db_azure_blob_container_client.py +864 -0
  253. oci/dbmulticloud/oracle_db_azure_blob_container_client_composite_operations.py +196 -0
  254. oci/dbmulticloud/oracle_db_azure_blob_mount_client.py +865 -0
  255. oci/dbmulticloud/oracle_db_azure_blob_mount_client_composite_operations.py +196 -0
  256. oci/dbmulticloud/oracle_db_azure_connector_client.py +963 -0
  257. oci/dbmulticloud/oracle_db_azure_connector_client_composite_operations.py +239 -0
  258. oci/dbmulticloud/oracle_db_azure_key_client.py +419 -0
  259. oci/dbmulticloud/oracle_db_azure_key_client_composite_operations.py +26 -0
  260. oci/dbmulticloud/oracle_db_azure_vault_association_client.py +979 -0
  261. oci/dbmulticloud/oracle_db_azure_vault_association_client_composite_operations.py +235 -0
  262. oci/dbmulticloud/oracle_db_azure_vault_client.py +979 -0
  263. oci/dbmulticloud/oracle_db_azure_vault_client_composite_operations.py +235 -0
  264. oci/dbmulticloud/work_request_client.py +770 -0
  265. oci/dbmulticloud/work_request_client_composite_operations.py +26 -0
  266. oci/delegate_access_control/delegate_access_control_client.py +26 -26
  267. oci/delegate_access_control/work_request_client.py +4 -4
  268. oci/demand_signal/occ_demand_signal_client.py +7 -7
  269. oci/desktops/desktop_service_client.py +21 -21
  270. oci/devops/devops_client.py +141 -141
  271. oci/disaster_recovery/disaster_recovery_client.py +31 -31
  272. oci/distributed_database/distributed_autonomous_db_service_client.py +18 -18
  273. oci/distributed_database/distributed_db_private_endpoint_service_client.py +7 -7
  274. oci/distributed_database/distributed_db_service_client.py +19 -19
  275. oci/distributed_database/distributed_db_work_request_service_client.py +4 -4
  276. oci/dns/dns_client.py +54 -54
  277. oci/dts/appliance_export_job_client.py +6 -6
  278. oci/dts/shipping_vendors_client.py +1 -1
  279. oci/dts/transfer_appliance_client.py +8 -8
  280. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  281. oci/dts/transfer_device_client.py +5 -5
  282. oci/dts/transfer_job_client.py +6 -6
  283. oci/dts/transfer_package_client.py +7 -7
  284. oci/em_warehouse/em_warehouse_client.py +13 -13
  285. oci/email/email_client.py +31 -31
  286. oci/email_data_plane/email_dp_client.py +1 -1
  287. oci/events/events_client.py +6 -6
  288. oci/file_storage/file_storage_client.py +74 -74
  289. oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
  290. oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
  291. oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
  292. oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
  293. oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
  294. oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
  295. oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
  296. oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
  297. oci/fleet_software_update/fleet_software_update_client.py +46 -46
  298. oci/fleet_software_update/models/__init__.py +12 -0
  299. oci/fleet_software_update/models/create_fsu_cycle_details.py +11 -3
  300. oci/fleet_software_update/models/create_patch_fsu_cycle.py +1 -1
  301. oci/fleet_software_update/models/create_upgrade_fsu_cycle.py +147 -0
  302. oci/fleet_software_update/models/fsu_cycle.py +11 -3
  303. oci/fleet_software_update/models/fsu_cycle_summary.py +7 -3
  304. oci/fleet_software_update/models/patch_fsu_cycle.py +1 -1
  305. oci/fleet_software_update/models/update_fsu_cycle_details.py +11 -3
  306. oci/fleet_software_update/models/update_patch_fsu_cycle.py +1 -1
  307. oci/fleet_software_update/models/update_upgrade_fsu_cycle.py +118 -0
  308. oci/fleet_software_update/models/upgrade_db_collection_details.py +142 -0
  309. oci/fleet_software_update/models/upgrade_details.py +107 -0
  310. oci/fleet_software_update/models/upgrade_fsu_cycle.py +241 -0
  311. oci/fleet_software_update/models/upgrade_gi_collection_details.py +111 -0
  312. oci/functions/functions_invoke_client.py +1 -1
  313. oci/functions/functions_management_client.py +16 -16
  314. oci/fusion_apps/fusion_applications_client.py +41 -41
  315. oci/generative_ai/generative_ai_client.py +22 -22
  316. oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
  317. oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
  318. oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
  319. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  320. oci/globally_distributed_database/sharded_database_service_client.py +30 -30
  321. oci/golden_gate/golden_gate_client.py +89 -89
  322. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  323. oci/governance_rules_control_plane/work_request_client.py +5 -5
  324. oci/healthchecks/health_checks_client.py +17 -17
  325. oci/identity/identity_client.py +145 -145
  326. oci/identity_data_plane/dataplane_client.py +2 -2
  327. oci/identity_domains/identity_domains_client.py +311 -311
  328. oci/integration/integration_instance_client.py +19 -19
  329. oci/jms/java_management_service_client.py +79 -79
  330. oci/jms_java_downloads/java_download_client.py +25 -25
  331. oci/key_management/ekm_client.py +5 -5
  332. oci/key_management/kms_crypto_client.py +6 -6
  333. oci/key_management/kms_hsm_cluster_client.py +12 -12
  334. oci/key_management/kms_management_client.py +21 -21
  335. oci/key_management/kms_vault_client.py +14 -14
  336. oci/license_manager/license_manager_client.py +18 -18
  337. oci/limits/limits_client.py +4 -4
  338. oci/limits/quotas_client.py +7 -7
  339. oci/load_balancer/load_balancer_client.py +61 -61
  340. oci/load_balancer/models/backend.py +4 -4
  341. oci/load_balancer/models/backend_details.py +10 -4
  342. oci/load_balancer/models/backend_set.py +6 -4
  343. oci/load_balancer/models/backend_set_details.py +12 -4
  344. oci/load_balancer/models/create_backend_details.py +10 -4
  345. oci/load_balancer/models/create_backend_set_details.py +12 -4
  346. oci/load_balancer/models/create_listener_details.py +6 -4
  347. oci/load_balancer/models/create_load_balancer_details.py +39 -0
  348. oci/load_balancer/models/listener.py +6 -4
  349. oci/load_balancer/models/listener_details.py +6 -4
  350. oci/load_balancer/models/load_balancer.py +61 -2
  351. oci/load_balancer/models/reserved_ip.py +4 -0
  352. oci/load_balancer/models/update_backend_details.py +10 -4
  353. oci/load_balancer/models/update_backend_set_details.py +12 -4
  354. oci/load_balancer/models/update_listener_details.py +6 -4
  355. oci/load_balancer/models/update_load_balancer_details.py +59 -0
  356. oci/lockbox/lockbox_client.py +24 -24
  357. oci/log_analytics/log_analytics_client.py +200 -200
  358. oci/logging/logging_management_client.py +30 -30
  359. oci/loggingingestion/logging_client.py +1 -1
  360. oci/loggingsearch/log_search_client.py +1 -1
  361. oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
  362. oci/management_agent/management_agent_client.py +28 -28
  363. oci/management_dashboard/dashx_apis_client.py +18 -18
  364. oci/marketplace/account_client.py +2 -2
  365. oci/marketplace/marketplace_client.py +30 -30
  366. oci/marketplace_private_offer/attachment_client.py +5 -5
  367. oci/marketplace_private_offer/offer_client.py +6 -6
  368. oci/marketplace_publisher/attachment_client.py +5 -5
  369. oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
  370. oci/marketplace_publisher/offer_client.py +6 -6
  371. oci/media_services/media_services_client.py +60 -60
  372. oci/media_services/media_stream_client.py +2 -2
  373. oci/mngdmac/mac_device_client.py +3 -3
  374. oci/mngdmac/mac_order_client.py +11 -11
  375. oci/model_deployment/model_deployment_client.py +2 -2
  376. oci/monitoring/monitoring_client.py +18 -18
  377. oci/mysql/channels_client.py +7 -7
  378. oci/mysql/db_backups_client.py +8 -8
  379. oci/mysql/db_system_client.py +17 -17
  380. oci/mysql/models/__init__.py +2 -0
  381. oci/mysql/models/backup.py +29 -2
  382. oci/mysql/models/backup_summary.py +29 -2
  383. oci/mysql/models/copy_backup_details.py +29 -2
  384. oci/mysql/models/create_db_system_details.py +27 -0
  385. oci/mysql/models/db_system.py +27 -0
  386. oci/mysql/models/db_system_snapshot.py +27 -0
  387. oci/mysql/models/encrypt_data_details.py +117 -0
  388. oci/mysql/models/replica.py +27 -0
  389. oci/mysql/models/update_db_system_details.py +27 -0
  390. oci/mysql/mysqlaas_client.py +7 -7
  391. oci/mysql/replicas_client.py +5 -5
  392. oci/mysql/work_requests_client.py +4 -4
  393. oci/network_firewall/network_firewall_client.py +92 -92
  394. oci/network_load_balancer/network_load_balancer_client.py +35 -35
  395. oci/nosql/models/__init__.py +14 -0
  396. oci/nosql/models/configuration.py +109 -0
  397. oci/nosql/models/hosted_configuration.py +78 -0
  398. oci/nosql/models/kms_key.py +244 -0
  399. oci/nosql/models/multi_tenancy_configuration.py +49 -0
  400. oci/nosql/models/update_configuration_details.py +109 -0
  401. oci/nosql/models/update_hosted_configuration_details.py +78 -0
  402. oci/nosql/models/update_multi_tenancy_configuration_details.py +52 -0
  403. oci/nosql/models/work_request.py +7 -3
  404. oci/nosql/models/work_request_summary.py +7 -3
  405. oci/nosql/nosql_client.py +340 -25
  406. oci/nosql/nosql_client_composite_operations.py +81 -0
  407. oci/object_storage/object_storage_client.py +55 -55
  408. oci/oce/oce_instance_client.py +10 -10
  409. oci/oci_control_center/occ_metrics_client.py +3 -3
  410. oci/ocvp/cluster_client.py +5 -5
  411. oci/ocvp/esxi_host_client.py +8 -8
  412. oci/ocvp/sddc_client.py +14 -14
  413. oci/ocvp/work_request_client.py +4 -4
  414. oci/oda/management_client.py +59 -59
  415. oci/oda/oda_client.py +17 -17
  416. oci/oda/odapackage_client.py +7 -7
  417. oci/onesubscription/billing_schedule_client.py +1 -1
  418. oci/onesubscription/commitment_client.py +2 -2
  419. oci/onesubscription/computed_usage_client.py +3 -3
  420. oci/onesubscription/invoice_summary_client.py +2 -2
  421. oci/onesubscription/organization_subscription_client.py +1 -1
  422. oci/onesubscription/ratecard_client.py +1 -1
  423. oci/onesubscription/subscribed_service_client.py +2 -2
  424. oci/onesubscription/subscription_client.py +1 -1
  425. oci/ons/notification_control_plane_client.py +6 -6
  426. oci/ons/notification_data_plane_client.py +10 -10
  427. oci/opa/opa_instance_client.py +13 -13
  428. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  429. oci/opensearch/opensearch_cluster_client.py +17 -17
  430. oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
  431. oci/operator_access_control/access_requests_client.py +10 -10
  432. oci/operator_access_control/operator_actions_client.py +2 -2
  433. oci/operator_access_control/operator_control_assignment_client.py +8 -8
  434. oci/operator_access_control/operator_control_client.py +6 -6
  435. oci/opsi/operations_insights_client.py +181 -181
  436. oci/optimizer/optimizer_client.py +26 -26
  437. oci/os_management/event_client.py +8 -8
  438. oci/os_management/os_management_client.py +69 -69
  439. oci/os_management_hub/event_client.py +8 -8
  440. oci/os_management_hub/lifecycle_environment_client.py +13 -13
  441. oci/os_management_hub/managed_instance_client.py +33 -33
  442. oci/os_management_hub/managed_instance_group_client.py +26 -26
  443. oci/os_management_hub/management_station_client.py +10 -10
  444. oci/os_management_hub/onboarding_client.py +13 -13
  445. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  446. oci/os_management_hub/scheduled_job_client.py +7 -7
  447. oci/os_management_hub/software_source_client.py +33 -33
  448. oci/os_management_hub/work_request_client.py +5 -5
  449. oci/osp_gateway/address_rule_service_client.py +1 -1
  450. oci/osp_gateway/address_service_client.py +2 -2
  451. oci/osp_gateway/invoice_service_client.py +5 -5
  452. oci/osp_gateway/subscription_service_client.py +5 -5
  453. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  454. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  455. oci/osub_subscription/commitment_client.py +2 -2
  456. oci/osub_subscription/ratecard_client.py +1 -1
  457. oci/osub_subscription/subscription_client.py +1 -1
  458. oci/osub_usage/computed_usage_client.py +3 -3
  459. oci/psql/postgresql_client.py +34 -34
  460. oci/queue/queue_admin_client.py +11 -11
  461. oci/queue/queue_client.py +8 -8
  462. oci/recovery/database_recovery_client.py +26 -26
  463. oci/redis/oci_cache_user_client.py +7 -7
  464. oci/redis/redis_cluster_client.py +15 -15
  465. oci/redis/redis_identity_client.py +1 -1
  466. oci/resource_manager/resource_manager_client.py +52 -52
  467. oci/resource_scheduler/schedule_client.py +14 -14
  468. oci/resource_search/resource_search_client.py +3 -3
  469. oci/rover/rover_bundle_client.py +8 -8
  470. oci/rover/rover_cluster_client.py +8 -8
  471. oci/rover/rover_entitlement_client.py +6 -6
  472. oci/rover/rover_node_client.py +15 -15
  473. oci/rover/shape_client.py +1 -1
  474. oci/rover/work_requests_client.py +5 -5
  475. oci/sch/connector_plugins_client.py +2 -2
  476. oci/sch/service_connector_client.py +12 -12
  477. oci/secrets/secrets_client.py +3 -3
  478. oci/security_attribute/security_attribute_client.py +18 -18
  479. oci/service_catalog/service_catalog_client.py +26 -26
  480. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  481. oci/service_mesh/service_mesh_client.py +96 -96
  482. oci/stack_monitoring/stack_monitoring_client.py +87 -87
  483. oci/streaming/stream_admin_client.py +18 -18
  484. oci/streaming/stream_client.py +8 -8
  485. oci/tenant_manager_control_plane/domain_client.py +5 -5
  486. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  487. oci/tenant_manager_control_plane/governance_client.py +2 -2
  488. oci/tenant_manager_control_plane/link_client.py +3 -3
  489. oci/tenant_manager_control_plane/orders_client.py +2 -2
  490. oci/tenant_manager_control_plane/organization_client.py +10 -10
  491. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  492. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  493. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  494. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  495. oci/threat_intelligence/threatintel_client.py +5 -5
  496. oci/usage/resources_client.py +2 -2
  497. oci/usage/rewards_client.py +6 -6
  498. oci/usage/usagelimits_client.py +1 -1
  499. oci/usage_api/usageapi_client.py +33 -33
  500. oci/vault/vaults_client.py +13 -13
  501. oci/vbs_inst/vbs_instance_client.py +10 -10
  502. oci/version.py +1 -1
  503. oci/visual_builder/vb_instance_client.py +14 -14
  504. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  505. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  506. oci/waa/waa_client.py +13 -13
  507. oci/waa/work_request_client.py +4 -4
  508. oci/waas/redirect_client.py +6 -6
  509. oci/waas/waas_client.py +66 -66
  510. oci/waf/waf_client.py +24 -24
  511. oci/wlms/weblogic_management_service_client.py +41 -41
  512. oci/wlms/weblogic_management_service_configuration_client.py +2 -2
  513. oci/work_requests/work_request_client.py +4 -4
  514. oci/zpr/zpr_client.py +15 -15
  515. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/METADATA +1 -1
  516. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/RECORD +520 -413
  517. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/LICENSE.txt +0 -0
  518. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  519. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/WHEEL +0 -0
  520. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/top_level.txt +0 -0
@@ -160,7 +160,7 @@ class DbManagementClient(object):
160
160
  :rtype: :class:`~oci.response.Response`
161
161
 
162
162
  :example:
163
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/add_data_files.py.html>`__ to see an example of how to use add_data_files API.
163
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/add_data_files.py.html>`__ to see an example of how to use add_data_files API.
164
164
  """
165
165
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
166
166
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -276,7 +276,7 @@ class DbManagementClient(object):
276
276
  :rtype: :class:`~oci.response.Response`
277
277
 
278
278
  :example:
279
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/add_managed_database_to_managed_database_group.py.html>`__ to see an example of how to use add_managed_database_to_managed_database_group API.
279
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/add_managed_database_to_managed_database_group.py.html>`__ to see an example of how to use add_managed_database_to_managed_database_group API.
280
280
  """
281
281
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
282
282
  required_arguments = ['managedDatabaseGroupId']
@@ -404,7 +404,7 @@ class DbManagementClient(object):
404
404
  :rtype: :class:`~oci.response.Response`
405
405
 
406
406
  :example:
407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/addm_tasks.py.html>`__ to see an example of how to use addm_tasks API.
407
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/addm_tasks.py.html>`__ to see an example of how to use addm_tasks API.
408
408
  """
409
409
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
410
410
  required_arguments = ['managedDatabaseId', 'timeStart', 'timeEnd']
@@ -556,7 +556,7 @@ class DbManagementClient(object):
556
556
  :rtype: :class:`~oci.response.Response`
557
557
 
558
558
  :example:
559
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_database_parameters.py.html>`__ to see an example of how to use change_database_parameters API.
559
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_database_parameters.py.html>`__ to see an example of how to use change_database_parameters API.
560
560
  """
561
561
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
562
562
  required_arguments = ['managedDatabaseId']
@@ -676,7 +676,7 @@ class DbManagementClient(object):
676
676
  :rtype: :class:`~oci.response.Response`
677
677
 
678
678
  :example:
679
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_db_management_private_endpoint_compartment.py.html>`__ to see an example of how to use change_db_management_private_endpoint_compartment API.
679
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_db_management_private_endpoint_compartment.py.html>`__ to see an example of how to use change_db_management_private_endpoint_compartment API.
680
680
  """
681
681
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
682
682
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -798,7 +798,7 @@ class DbManagementClient(object):
798
798
  :rtype: :class:`~oci.response.Response`
799
799
 
800
800
  :example:
801
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_external_db_system_compartment.py.html>`__ to see an example of how to use change_external_db_system_compartment API.
801
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_external_db_system_compartment.py.html>`__ to see an example of how to use change_external_db_system_compartment API.
802
802
  """
803
803
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
804
804
  required_arguments = ['externalDbSystemId']
@@ -920,7 +920,7 @@ class DbManagementClient(object):
920
920
  :rtype: :class:`~oci.response.Response`
921
921
 
922
922
  :example:
923
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_external_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_external_exadata_infrastructure_compartment API.
923
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_external_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_external_exadata_infrastructure_compartment API.
924
924
  """
925
925
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
926
926
  required_arguments = ['externalExadataInfrastructureId']
@@ -1042,7 +1042,7 @@ class DbManagementClient(object):
1042
1042
  :rtype: :class:`~oci.response.Response`
1043
1043
 
1044
1044
  :example:
1045
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
1045
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
1046
1046
  """
1047
1047
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1048
1048
  required_arguments = ['jobId']
@@ -1166,7 +1166,7 @@ class DbManagementClient(object):
1166
1166
  :rtype: :class:`~oci.response.Response`
1167
1167
 
1168
1168
  :example:
1169
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_managed_database_group_compartment.py.html>`__ to see an example of how to use change_managed_database_group_compartment API.
1169
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_managed_database_group_compartment.py.html>`__ to see an example of how to use change_managed_database_group_compartment API.
1170
1170
  """
1171
1171
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1172
1172
  required_arguments = ['managedDatabaseGroupId']
@@ -1290,7 +1290,7 @@ class DbManagementClient(object):
1290
1290
  :rtype: :class:`~oci.response.Response`
1291
1291
 
1292
1292
  :example:
1293
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_named_credential_compartment.py.html>`__ to see an example of how to use change_named_credential_compartment API.
1293
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_named_credential_compartment.py.html>`__ to see an example of how to use change_named_credential_compartment API.
1294
1294
  """
1295
1295
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1296
1296
  required_arguments = ['namedCredentialId']
@@ -1400,7 +1400,7 @@ class DbManagementClient(object):
1400
1400
  :rtype: :class:`~oci.response.Response`
1401
1401
 
1402
1402
  :example:
1403
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_plan_retention.py.html>`__ to see an example of how to use change_plan_retention API.
1403
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_plan_retention.py.html>`__ to see an example of how to use change_plan_retention API.
1404
1404
  """
1405
1405
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1406
1406
  required_arguments = ['managedDatabaseId']
@@ -1502,7 +1502,7 @@ class DbManagementClient(object):
1502
1502
  :rtype: :class:`~oci.response.Response`
1503
1503
 
1504
1504
  :example:
1505
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_space_budget.py.html>`__ to see an example of how to use change_space_budget API.
1505
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_space_budget.py.html>`__ to see an example of how to use change_space_budget API.
1506
1506
  """
1507
1507
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1508
1508
  required_arguments = ['managedDatabaseId']
@@ -1603,7 +1603,7 @@ class DbManagementClient(object):
1603
1603
  :rtype: :class:`~oci.response.Response`
1604
1604
 
1605
1605
  :example:
1606
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/change_sql_plan_baselines_attributes.py.html>`__ to see an example of how to use change_sql_plan_baselines_attributes API.
1606
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/change_sql_plan_baselines_attributes.py.html>`__ to see an example of how to use change_sql_plan_baselines_attributes API.
1607
1607
  """
1608
1608
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1609
1609
  required_arguments = ['managedDatabaseId']
@@ -1716,7 +1716,7 @@ class DbManagementClient(object):
1716
1716
  :rtype: :class:`~oci.response.Response`
1717
1717
 
1718
1718
  :example:
1719
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/check_external_db_system_connector_connection_status.py.html>`__ to see an example of how to use check_external_db_system_connector_connection_status API.
1719
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/check_external_db_system_connector_connection_status.py.html>`__ to see an example of how to use check_external_db_system_connector_connection_status API.
1720
1720
  """
1721
1721
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1722
1722
  required_arguments = ['externalDbSystemConnectorId']
@@ -1835,7 +1835,7 @@ class DbManagementClient(object):
1835
1835
  :rtype: :class:`~oci.response.Response`
1836
1836
 
1837
1837
  :example:
1838
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/check_external_exadata_storage_connector.py.html>`__ to see an example of how to use check_external_exadata_storage_connector API.
1838
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/check_external_exadata_storage_connector.py.html>`__ to see an example of how to use check_external_exadata_storage_connector API.
1839
1839
  """
1840
1840
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1841
1841
  required_arguments = ['externalExadataStorageConnectorId']
@@ -1953,7 +1953,7 @@ class DbManagementClient(object):
1953
1953
  :rtype: :class:`~oci.response.Response`
1954
1954
 
1955
1955
  :example:
1956
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/check_external_my_sql_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_my_sql_database_connector_connection_status API.
1956
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/check_external_my_sql_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_my_sql_database_connector_connection_status API.
1957
1957
  """
1958
1958
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1959
1959
  required_arguments = ['externalMySqlDatabaseConnectorId']
@@ -2060,7 +2060,7 @@ class DbManagementClient(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.154.2/databasemanagement/configure_automatic_capture_filters.py.html>`__ to see an example of how to use configure_automatic_capture_filters API.
2063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/configure_automatic_capture_filters.py.html>`__ to see an example of how to use configure_automatic_capture_filters API.
2064
2064
  """
2065
2065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2066
2066
  required_arguments = ['managedDatabaseId']
@@ -2163,7 +2163,7 @@ class DbManagementClient(object):
2163
2163
  :rtype: :class:`~oci.response.Response`
2164
2164
 
2165
2165
  :example:
2166
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/configure_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use configure_automatic_spm_evolve_advisor_task API.
2166
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/configure_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use configure_automatic_spm_evolve_advisor_task API.
2167
2167
  """
2168
2168
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2169
2169
  required_arguments = ['managedDatabaseId']
@@ -2266,7 +2266,7 @@ class DbManagementClient(object):
2266
2266
  :rtype: :class:`~oci.response.Response`
2267
2267
 
2268
2268
  :example:
2269
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_db_management_private_endpoint.py.html>`__ to see an example of how to use create_db_management_private_endpoint API.
2269
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_db_management_private_endpoint.py.html>`__ to see an example of how to use create_db_management_private_endpoint API.
2270
2270
  """
2271
2271
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2272
2272
  required_arguments = []
@@ -2362,7 +2362,7 @@ class DbManagementClient(object):
2362
2362
  :rtype: :class:`~oci.response.Response`
2363
2363
 
2364
2364
  :example:
2365
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_external_db_system.py.html>`__ to see an example of how to use create_external_db_system API.
2365
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_external_db_system.py.html>`__ to see an example of how to use create_external_db_system API.
2366
2366
  """
2367
2367
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2368
2368
  required_arguments = []
@@ -2460,7 +2460,7 @@ class DbManagementClient(object):
2460
2460
  :rtype: :class:`~oci.response.Response`
2461
2461
 
2462
2462
  :example:
2463
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_external_db_system_connector.py.html>`__ to see an example of how to use create_external_db_system_connector API.
2463
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_external_db_system_connector.py.html>`__ to see an example of how to use create_external_db_system_connector API.
2464
2464
  """
2465
2465
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2466
2466
  required_arguments = []
@@ -2558,7 +2558,7 @@ class DbManagementClient(object):
2558
2558
  :rtype: :class:`~oci.response.Response`
2559
2559
 
2560
2560
  :example:
2561
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_external_db_system_discovery.py.html>`__ to see an example of how to use create_external_db_system_discovery API.
2561
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_external_db_system_discovery.py.html>`__ to see an example of how to use create_external_db_system_discovery API.
2562
2562
  """
2563
2563
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2564
2564
  required_arguments = []
@@ -2661,7 +2661,7 @@ class DbManagementClient(object):
2661
2661
  :rtype: :class:`~oci.response.Response`
2662
2662
 
2663
2663
  :example:
2664
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_external_exadata_infrastructure.py.html>`__ to see an example of how to use create_external_exadata_infrastructure API.
2664
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_external_exadata_infrastructure.py.html>`__ to see an example of how to use create_external_exadata_infrastructure API.
2665
2665
  """
2666
2666
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2667
2667
  required_arguments = []
@@ -2759,7 +2759,7 @@ class DbManagementClient(object):
2759
2759
  :rtype: :class:`~oci.response.Response`
2760
2760
 
2761
2761
  :example:
2762
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_external_exadata_storage_connector.py.html>`__ to see an example of how to use create_external_exadata_storage_connector API.
2762
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_external_exadata_storage_connector.py.html>`__ to see an example of how to use create_external_exadata_storage_connector API.
2763
2763
  """
2764
2764
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2765
2765
  required_arguments = []
@@ -2857,7 +2857,7 @@ class DbManagementClient(object):
2857
2857
  :rtype: :class:`~oci.response.Response`
2858
2858
 
2859
2859
  :example:
2860
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_external_my_sql_database.py.html>`__ to see an example of how to use create_external_my_sql_database API.
2860
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_external_my_sql_database.py.html>`__ to see an example of how to use create_external_my_sql_database API.
2861
2861
  """
2862
2862
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2863
2863
  required_arguments = []
@@ -2958,7 +2958,7 @@ class DbManagementClient(object):
2958
2958
  :rtype: :class:`~oci.response.Response`
2959
2959
 
2960
2960
  :example:
2961
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_external_my_sql_database_connector.py.html>`__ to see an example of how to use create_external_my_sql_database_connector API.
2961
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_external_my_sql_database_connector.py.html>`__ to see an example of how to use create_external_my_sql_database_connector API.
2962
2962
  """
2963
2963
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2964
2964
  required_arguments = ['isTestConnectionParam']
@@ -3065,7 +3065,7 @@ class DbManagementClient(object):
3065
3065
  :rtype: :class:`~oci.response.Response`
3066
3066
 
3067
3067
  :example:
3068
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_job.py.html>`__ to see an example of how to use create_job API.
3068
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_job.py.html>`__ to see an example of how to use create_job API.
3069
3069
  """
3070
3070
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3071
3071
  required_arguments = []
@@ -3162,7 +3162,7 @@ class DbManagementClient(object):
3162
3162
  :rtype: :class:`~oci.response.Response`
3163
3163
 
3164
3164
  :example:
3165
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_managed_database_group.py.html>`__ to see an example of how to use create_managed_database_group API.
3165
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_managed_database_group.py.html>`__ to see an example of how to use create_managed_database_group API.
3166
3166
  """
3167
3167
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3168
3168
  required_arguments = []
@@ -3258,7 +3258,7 @@ class DbManagementClient(object):
3258
3258
  :rtype: :class:`~oci.response.Response`
3259
3259
 
3260
3260
  :example:
3261
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_named_credential.py.html>`__ to see an example of how to use create_named_credential API.
3261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_named_credential.py.html>`__ to see an example of how to use create_named_credential API.
3262
3262
  """
3263
3263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3264
3264
  required_arguments = []
@@ -3359,7 +3359,7 @@ class DbManagementClient(object):
3359
3359
  :rtype: :class:`~oci.response.Response`
3360
3360
 
3361
3361
  :example:
3362
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/create_tablespace.py.html>`__ to see an example of how to use create_tablespace API.
3362
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/create_tablespace.py.html>`__ to see an example of how to use create_tablespace API.
3363
3363
  """
3364
3364
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3365
3365
  required_arguments = ['managedDatabaseId']
@@ -3469,7 +3469,7 @@ class DbManagementClient(object):
3469
3469
  :rtype: :class:`~oci.response.Response`
3470
3470
 
3471
3471
  :example:
3472
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_db_management_private_endpoint.py.html>`__ to see an example of how to use delete_db_management_private_endpoint API.
3472
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_db_management_private_endpoint.py.html>`__ to see an example of how to use delete_db_management_private_endpoint API.
3473
3473
  """
3474
3474
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3475
3475
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -3574,7 +3574,7 @@ class DbManagementClient(object):
3574
3574
  :rtype: :class:`~oci.response.Response`
3575
3575
 
3576
3576
  :example:
3577
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_external_db_system.py.html>`__ to see an example of how to use delete_external_db_system API.
3577
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_external_db_system.py.html>`__ to see an example of how to use delete_external_db_system API.
3578
3578
  """
3579
3579
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3580
3580
  required_arguments = ['externalDbSystemId']
@@ -3679,7 +3679,7 @@ class DbManagementClient(object):
3679
3679
  :rtype: :class:`~oci.response.Response`
3680
3680
 
3681
3681
  :example:
3682
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_external_db_system_connector.py.html>`__ to see an example of how to use delete_external_db_system_connector API.
3682
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_external_db_system_connector.py.html>`__ to see an example of how to use delete_external_db_system_connector API.
3683
3683
  """
3684
3684
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3685
3685
  required_arguments = ['externalDbSystemConnectorId']
@@ -3784,7 +3784,7 @@ class DbManagementClient(object):
3784
3784
  :rtype: :class:`~oci.response.Response`
3785
3785
 
3786
3786
  :example:
3787
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_external_db_system_discovery.py.html>`__ to see an example of how to use delete_external_db_system_discovery API.
3787
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_external_db_system_discovery.py.html>`__ to see an example of how to use delete_external_db_system_discovery API.
3788
3788
  """
3789
3789
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3790
3790
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -3889,7 +3889,7 @@ class DbManagementClient(object):
3889
3889
  :rtype: :class:`~oci.response.Response`
3890
3890
 
3891
3891
  :example:
3892
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_external_exadata_infrastructure.py.html>`__ to see an example of how to use delete_external_exadata_infrastructure API.
3892
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_external_exadata_infrastructure.py.html>`__ to see an example of how to use delete_external_exadata_infrastructure API.
3893
3893
  """
3894
3894
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3895
3895
  required_arguments = ['externalExadataInfrastructureId']
@@ -3994,7 +3994,7 @@ class DbManagementClient(object):
3994
3994
  :rtype: :class:`~oci.response.Response`
3995
3995
 
3996
3996
  :example:
3997
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_external_exadata_storage_connector.py.html>`__ to see an example of how to use delete_external_exadata_storage_connector API.
3997
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_external_exadata_storage_connector.py.html>`__ to see an example of how to use delete_external_exadata_storage_connector API.
3998
3998
  """
3999
3999
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4000
4000
  required_arguments = ['externalExadataStorageConnectorId']
@@ -4097,7 +4097,7 @@ class DbManagementClient(object):
4097
4097
  :rtype: :class:`~oci.response.Response`
4098
4098
 
4099
4099
  :example:
4100
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_external_my_sql_database.py.html>`__ to see an example of how to use delete_external_my_sql_database API.
4100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_external_my_sql_database.py.html>`__ to see an example of how to use delete_external_my_sql_database API.
4101
4101
  """
4102
4102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4103
4103
  required_arguments = ['externalMySqlDatabaseId']
@@ -4200,7 +4200,7 @@ class DbManagementClient(object):
4200
4200
  :rtype: :class:`~oci.response.Response`
4201
4201
 
4202
4202
  :example:
4203
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_external_my_sql_database_connector.py.html>`__ to see an example of how to use delete_external_my_sql_database_connector API.
4203
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_external_my_sql_database_connector.py.html>`__ to see an example of how to use delete_external_my_sql_database_connector API.
4204
4204
  """
4205
4205
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4206
4206
  required_arguments = ['externalMySqlDatabaseConnectorId']
@@ -4303,7 +4303,7 @@ class DbManagementClient(object):
4303
4303
  :rtype: :class:`~oci.response.Response`
4304
4304
 
4305
4305
  :example:
4306
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_job.py.html>`__ to see an example of how to use delete_job API.
4306
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_job.py.html>`__ to see an example of how to use delete_job API.
4307
4307
  """
4308
4308
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4309
4309
  required_arguments = ['jobId']
@@ -4409,7 +4409,7 @@ class DbManagementClient(object):
4409
4409
  :rtype: :class:`~oci.response.Response`
4410
4410
 
4411
4411
  :example:
4412
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_managed_database_group.py.html>`__ to see an example of how to use delete_managed_database_group API.
4412
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_managed_database_group.py.html>`__ to see an example of how to use delete_managed_database_group API.
4413
4413
  """
4414
4414
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4415
4415
  required_arguments = ['managedDatabaseGroupId']
@@ -4514,7 +4514,7 @@ class DbManagementClient(object):
4514
4514
  :rtype: :class:`~oci.response.Response`
4515
4515
 
4516
4516
  :example:
4517
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_named_credential.py.html>`__ to see an example of how to use delete_named_credential API.
4517
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_named_credential.py.html>`__ to see an example of how to use delete_named_credential API.
4518
4518
  """
4519
4519
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4520
4520
  required_arguments = ['namedCredentialId']
@@ -4615,7 +4615,7 @@ class DbManagementClient(object):
4615
4615
  :rtype: :class:`~oci.response.Response`
4616
4616
 
4617
4617
  :example:
4618
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/delete_preferred_credential.py.html>`__ to see an example of how to use delete_preferred_credential API.
4618
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/delete_preferred_credential.py.html>`__ to see an example of how to use delete_preferred_credential API.
4619
4619
  """
4620
4620
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4621
4621
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -4715,7 +4715,7 @@ class DbManagementClient(object):
4715
4715
  :rtype: :class:`~oci.response.Response`
4716
4716
 
4717
4717
  :example:
4718
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use disable_automatic_initial_plan_capture API.
4718
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use disable_automatic_initial_plan_capture API.
4719
4719
  """
4720
4720
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4721
4721
  required_arguments = ['managedDatabaseId']
@@ -4819,7 +4819,7 @@ class DbManagementClient(object):
4819
4819
  :rtype: :class:`~oci.response.Response`
4820
4820
 
4821
4821
  :example:
4822
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_automatic_spm_evolve_advisor_task API.
4822
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_automatic_spm_evolve_advisor_task API.
4823
4823
  """
4824
4824
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4825
4825
  required_arguments = ['managedDatabaseId']
@@ -4934,7 +4934,7 @@ class DbManagementClient(object):
4934
4934
  :rtype: :class:`~oci.response.Response`
4935
4935
 
4936
4936
  :example:
4937
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_autonomous_database_management_feature.py.html>`__ to see an example of how to use disable_autonomous_database_management_feature API.
4937
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_autonomous_database_management_feature.py.html>`__ to see an example of how to use disable_autonomous_database_management_feature API.
4938
4938
  """
4939
4939
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4940
4940
  required_arguments = ['autonomousDatabaseId']
@@ -5056,7 +5056,7 @@ class DbManagementClient(object):
5056
5056
  :rtype: :class:`~oci.response.Response`
5057
5057
 
5058
5058
  :example:
5059
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_database_management_feature.py.html>`__ to see an example of how to use disable_database_management_feature API.
5059
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_database_management_feature.py.html>`__ to see an example of how to use disable_database_management_feature API.
5060
5060
  """
5061
5061
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5062
5062
  required_arguments = ['databaseId']
@@ -5178,7 +5178,7 @@ class DbManagementClient(object):
5178
5178
  :rtype: :class:`~oci.response.Response`
5179
5179
 
5180
5180
  :example:
5181
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_external_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_container_database_management_feature API.
5181
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_external_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_container_database_management_feature API.
5182
5182
  """
5183
5183
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5184
5184
  required_arguments = ['externalContainerDatabaseId']
@@ -5298,7 +5298,7 @@ class DbManagementClient(object):
5298
5298
  :rtype: :class:`~oci.response.Response`
5299
5299
 
5300
5300
  :example:
5301
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_external_db_system_database_management.py.html>`__ to see an example of how to use disable_external_db_system_database_management API.
5301
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_external_db_system_database_management.py.html>`__ to see an example of how to use disable_external_db_system_database_management API.
5302
5302
  """
5303
5303
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5304
5304
  required_arguments = ['externalDbSystemId']
@@ -5416,7 +5416,7 @@ class DbManagementClient(object):
5416
5416
  :rtype: :class:`~oci.response.Response`
5417
5417
 
5418
5418
  :example:
5419
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use disable_external_db_system_stack_monitoring API.
5419
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use disable_external_db_system_stack_monitoring API.
5420
5420
  """
5421
5421
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5422
5422
  required_arguments = ['externalDbSystemId']
@@ -5540,7 +5540,7 @@ class DbManagementClient(object):
5540
5540
  :rtype: :class:`~oci.response.Response`
5541
5541
 
5542
5542
  :example:
5543
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use disable_external_exadata_infrastructure_management API.
5543
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use disable_external_exadata_infrastructure_management API.
5544
5544
  """
5545
5545
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5546
5546
  required_arguments = ['externalExadataInfrastructureId']
@@ -5655,7 +5655,7 @@ class DbManagementClient(object):
5655
5655
  :rtype: :class:`~oci.response.Response`
5656
5656
 
5657
5657
  :example:
5658
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_external_my_sql_database_management.py.html>`__ to see an example of how to use disable_external_my_sql_database_management API.
5658
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_external_my_sql_database_management.py.html>`__ to see an example of how to use disable_external_my_sql_database_management API.
5659
5659
  """
5660
5660
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5661
5661
  required_arguments = ['externalMySqlDatabaseId']
@@ -5775,7 +5775,7 @@ class DbManagementClient(object):
5775
5775
  :rtype: :class:`~oci.response.Response`
5776
5776
 
5777
5777
  :example:
5778
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_non_container_database_management_feature API.
5778
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use disable_external_non_container_database_management_feature API.
5779
5779
  """
5780
5780
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5781
5781
  required_arguments = ['externalNonContainerDatabaseId']
@@ -5897,7 +5897,7 @@ class DbManagementClient(object):
5897
5897
  :rtype: :class:`~oci.response.Response`
5898
5898
 
5899
5899
  :example:
5900
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_external_pluggable_database_management_feature API.
5900
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_external_pluggable_database_management_feature API.
5901
5901
  """
5902
5902
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5903
5903
  required_arguments = ['externalPluggableDatabaseId']
@@ -6008,7 +6008,7 @@ class DbManagementClient(object):
6008
6008
  :rtype: :class:`~oci.response.Response`
6009
6009
 
6010
6010
  :example:
6011
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_high_frequency_automatic_spm_evolve_advisor_task API.
6011
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use disable_high_frequency_automatic_spm_evolve_advisor_task API.
6012
6012
  """
6013
6013
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6014
6014
  required_arguments = ['managedDatabaseId']
@@ -6123,7 +6123,7 @@ class DbManagementClient(object):
6123
6123
  :rtype: :class:`~oci.response.Response`
6124
6124
 
6125
6125
  :example:
6126
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_pluggable_database_management_feature API.
6126
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_pluggable_database_management_feature.py.html>`__ to see an example of how to use disable_pluggable_database_management_feature API.
6127
6127
  """
6128
6128
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6129
6129
  required_arguments = ['pluggableDatabaseId']
@@ -6233,7 +6233,7 @@ class DbManagementClient(object):
6233
6233
  :rtype: :class:`~oci.response.Response`
6234
6234
 
6235
6235
  :example:
6236
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/disable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use disable_sql_plan_baselines_usage API.
6236
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/disable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use disable_sql_plan_baselines_usage API.
6237
6237
  """
6238
6238
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6239
6239
  required_arguments = ['managedDatabaseId']
@@ -6361,7 +6361,7 @@ class DbManagementClient(object):
6361
6361
  :rtype: :class:`~oci.response.Response`
6362
6362
 
6363
6363
  :example:
6364
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/discover_external_exadata_infrastructure.py.html>`__ to see an example of how to use discover_external_exadata_infrastructure API.
6364
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/discover_external_exadata_infrastructure.py.html>`__ to see an example of how to use discover_external_exadata_infrastructure API.
6365
6365
  """
6366
6366
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6367
6367
  required_arguments = []
@@ -6459,7 +6459,7 @@ class DbManagementClient(object):
6459
6459
  :rtype: :class:`~oci.response.Response`
6460
6460
 
6461
6461
  :example:
6462
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/drop_sql_plan_baselines.py.html>`__ to see an example of how to use drop_sql_plan_baselines API.
6462
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/drop_sql_plan_baselines.py.html>`__ to see an example of how to use drop_sql_plan_baselines API.
6463
6463
  """
6464
6464
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6465
6465
  required_arguments = ['managedDatabaseId']
@@ -6570,7 +6570,7 @@ class DbManagementClient(object):
6570
6570
  :rtype: :class:`~oci.response.Response`
6571
6571
 
6572
6572
  :example:
6573
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/drop_tablespace.py.html>`__ to see an example of how to use drop_tablespace API.
6573
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/drop_tablespace.py.html>`__ to see an example of how to use drop_tablespace API.
6574
6574
  """
6575
6575
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6576
6576
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -6684,7 +6684,7 @@ class DbManagementClient(object):
6684
6684
  :rtype: :class:`~oci.response.Response`
6685
6685
 
6686
6686
  :example:
6687
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use enable_automatic_initial_plan_capture API.
6687
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_automatic_initial_plan_capture.py.html>`__ to see an example of how to use enable_automatic_initial_plan_capture API.
6688
6688
  """
6689
6689
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6690
6690
  required_arguments = ['managedDatabaseId']
@@ -6797,7 +6797,7 @@ class DbManagementClient(object):
6797
6797
  :rtype: :class:`~oci.response.Response`
6798
6798
 
6799
6799
  :example:
6800
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_automatic_spm_evolve_advisor_task API.
6800
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_automatic_spm_evolve_advisor_task API.
6801
6801
  """
6802
6802
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6803
6803
  required_arguments = ['managedDatabaseId']
@@ -6912,7 +6912,7 @@ class DbManagementClient(object):
6912
6912
  :rtype: :class:`~oci.response.Response`
6913
6913
 
6914
6914
  :example:
6915
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_autonomous_database_management_feature.py.html>`__ to see an example of how to use enable_autonomous_database_management_feature API.
6915
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_autonomous_database_management_feature.py.html>`__ to see an example of how to use enable_autonomous_database_management_feature API.
6916
6916
  """
6917
6917
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6918
6918
  required_arguments = ['autonomousDatabaseId']
@@ -7034,7 +7034,7 @@ class DbManagementClient(object):
7034
7034
  :rtype: :class:`~oci.response.Response`
7035
7035
 
7036
7036
  :example:
7037
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_database_management_feature.py.html>`__ to see an example of how to use enable_database_management_feature API.
7037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_database_management_feature.py.html>`__ to see an example of how to use enable_database_management_feature API.
7038
7038
  """
7039
7039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7040
7040
  required_arguments = ['databaseId']
@@ -7156,7 +7156,7 @@ class DbManagementClient(object):
7156
7156
  :rtype: :class:`~oci.response.Response`
7157
7157
 
7158
7158
  :example:
7159
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_external_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_container_database_management_feature API.
7159
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_external_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_container_database_management_feature API.
7160
7160
  """
7161
7161
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7162
7162
  required_arguments = ['externalContainerDatabaseId']
@@ -7279,7 +7279,7 @@ class DbManagementClient(object):
7279
7279
  :rtype: :class:`~oci.response.Response`
7280
7280
 
7281
7281
  :example:
7282
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_external_db_system_database_management.py.html>`__ to see an example of how to use enable_external_db_system_database_management API.
7282
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_external_db_system_database_management.py.html>`__ to see an example of how to use enable_external_db_system_database_management API.
7283
7283
  """
7284
7284
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7285
7285
  required_arguments = ['externalDbSystemId']
@@ -7402,7 +7402,7 @@ class DbManagementClient(object):
7402
7402
  :rtype: :class:`~oci.response.Response`
7403
7403
 
7404
7404
  :example:
7405
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use enable_external_db_system_stack_monitoring API.
7405
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_external_db_system_stack_monitoring.py.html>`__ to see an example of how to use enable_external_db_system_stack_monitoring API.
7406
7406
  """
7407
7407
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7408
7408
  required_arguments = ['externalDbSystemId']
@@ -7529,7 +7529,7 @@ class DbManagementClient(object):
7529
7529
  :rtype: :class:`~oci.response.Response`
7530
7530
 
7531
7531
  :example:
7532
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use enable_external_exadata_infrastructure_management API.
7532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_external_exadata_infrastructure_management.py.html>`__ to see an example of how to use enable_external_exadata_infrastructure_management API.
7533
7533
  """
7534
7534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7535
7535
  required_arguments = ['externalExadataInfrastructureId']
@@ -7649,7 +7649,7 @@ class DbManagementClient(object):
7649
7649
  :rtype: :class:`~oci.response.Response`
7650
7650
 
7651
7651
  :example:
7652
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_external_my_sql_database_management.py.html>`__ to see an example of how to use enable_external_my_sql_database_management API.
7652
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_external_my_sql_database_management.py.html>`__ to see an example of how to use enable_external_my_sql_database_management API.
7653
7653
  """
7654
7654
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7655
7655
  required_arguments = ['externalMySqlDatabaseId']
@@ -7771,7 +7771,7 @@ class DbManagementClient(object):
7771
7771
  :rtype: :class:`~oci.response.Response`
7772
7772
 
7773
7773
  :example:
7774
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_non_container_database_management_feature API.
7774
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_external_non_container_database_management_feature.py.html>`__ to see an example of how to use enable_external_non_container_database_management_feature API.
7775
7775
  """
7776
7776
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7777
7777
  required_arguments = ['externalNonContainerDatabaseId']
@@ -7893,7 +7893,7 @@ class DbManagementClient(object):
7893
7893
  :rtype: :class:`~oci.response.Response`
7894
7894
 
7895
7895
  :example:
7896
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_external_pluggable_database_management_feature API.
7896
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_external_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_external_pluggable_database_management_feature API.
7897
7897
  """
7898
7898
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7899
7899
  required_arguments = ['externalPluggableDatabaseId']
@@ -8009,7 +8009,7 @@ class DbManagementClient(object):
8009
8009
  :rtype: :class:`~oci.response.Response`
8010
8010
 
8011
8011
  :example:
8012
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_high_frequency_automatic_spm_evolve_advisor_task API.
8012
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_high_frequency_automatic_spm_evolve_advisor_task.py.html>`__ to see an example of how to use enable_high_frequency_automatic_spm_evolve_advisor_task API.
8013
8013
  """
8014
8014
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8015
8015
  required_arguments = ['managedDatabaseId']
@@ -8124,7 +8124,7 @@ class DbManagementClient(object):
8124
8124
  :rtype: :class:`~oci.response.Response`
8125
8125
 
8126
8126
  :example:
8127
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_pluggable_database_management_feature API.
8127
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_pluggable_database_management_feature.py.html>`__ to see an example of how to use enable_pluggable_database_management_feature API.
8128
8128
  """
8129
8129
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8130
8130
  required_arguments = ['pluggableDatabaseId']
@@ -8235,7 +8235,7 @@ class DbManagementClient(object):
8235
8235
  :rtype: :class:`~oci.response.Response`
8236
8236
 
8237
8237
  :example:
8238
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/enable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use enable_sql_plan_baselines_usage API.
8238
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/enable_sql_plan_baselines_usage.py.html>`__ to see an example of how to use enable_sql_plan_baselines_usage API.
8239
8239
  """
8240
8240
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8241
8241
  required_arguments = ['managedDatabaseId']
@@ -8343,7 +8343,7 @@ class DbManagementClient(object):
8343
8343
  :rtype: :class:`~oci.response.Response`
8344
8344
 
8345
8345
  :example:
8346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/generate_awr_snapshot.py.html>`__ to see an example of how to use generate_awr_snapshot API.
8346
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/generate_awr_snapshot.py.html>`__ to see an example of how to use generate_awr_snapshot API.
8347
8347
  """
8348
8348
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8349
8349
  required_arguments = ['managedDatabaseId']
@@ -8491,7 +8491,7 @@ class DbManagementClient(object):
8491
8491
  :rtype: :class:`~oci.response.Response`
8492
8492
 
8493
8493
  :example:
8494
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_awr_db_report.py.html>`__ to see an example of how to use get_awr_db_report API.
8494
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_awr_db_report.py.html>`__ to see an example of how to use get_awr_db_report API.
8495
8495
  """
8496
8496
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8497
8497
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -8674,7 +8674,7 @@ class DbManagementClient(object):
8674
8674
  :rtype: :class:`~oci.response.Response`
8675
8675
 
8676
8676
  :example:
8677
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_awr_db_sql_report.py.html>`__ to see an example of how to use get_awr_db_sql_report API.
8677
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_awr_db_sql_report.py.html>`__ to see an example of how to use get_awr_db_sql_report API.
8678
8678
  """
8679
8679
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8680
8680
  required_arguments = ['managedDatabaseId', 'awrDbId', 'sqlId']
@@ -8816,7 +8816,7 @@ class DbManagementClient(object):
8816
8816
  :rtype: :class:`~oci.response.Response`
8817
8817
 
8818
8818
  :example:
8819
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_cluster_cache_metric.py.html>`__ to see an example of how to use get_cluster_cache_metric API.
8819
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_cluster_cache_metric.py.html>`__ to see an example of how to use get_cluster_cache_metric API.
8820
8820
  """
8821
8821
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8822
8822
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -8988,7 +8988,7 @@ class DbManagementClient(object):
8988
8988
  :rtype: :class:`~oci.response.Response`
8989
8989
 
8990
8990
  :example:
8991
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_database_fleet_backup_metrics.py.html>`__ to see an example of how to use get_database_fleet_backup_metrics API.
8991
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_database_fleet_backup_metrics.py.html>`__ to see an example of how to use get_database_fleet_backup_metrics API.
8992
8992
  """
8993
8993
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8994
8994
  required_arguments = ['databaseHostedIn', 'startTime', 'endTime']
@@ -9179,7 +9179,7 @@ class DbManagementClient(object):
9179
9179
  :rtype: :class:`~oci.response.Response`
9180
9180
 
9181
9181
  :example:
9182
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_database_fleet_dataguard_metrics.py.html>`__ to see an example of how to use get_database_fleet_dataguard_metrics API.
9182
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_database_fleet_dataguard_metrics.py.html>`__ to see an example of how to use get_database_fleet_dataguard_metrics API.
9183
9183
  """
9184
9184
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9185
9185
  required_arguments = []
@@ -9361,7 +9361,7 @@ class DbManagementClient(object):
9361
9361
  :rtype: :class:`~oci.response.Response`
9362
9362
 
9363
9363
  :example:
9364
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_database_fleet_ha_overview_metrics.py.html>`__ to see an example of how to use get_database_fleet_ha_overview_metrics API.
9364
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_database_fleet_ha_overview_metrics.py.html>`__ to see an example of how to use get_database_fleet_ha_overview_metrics API.
9365
9365
  """
9366
9366
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9367
9367
  required_arguments = []
@@ -9567,7 +9567,7 @@ class DbManagementClient(object):
9567
9567
  :rtype: :class:`~oci.response.Response`
9568
9568
 
9569
9569
  :example:
9570
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_database_fleet_health_metrics.py.html>`__ to see an example of how to use get_database_fleet_health_metrics API.
9570
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_database_fleet_health_metrics.py.html>`__ to see an example of how to use get_database_fleet_health_metrics API.
9571
9571
  """
9572
9572
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9573
9573
  required_arguments = ['compareBaselineTime', 'compareTargetTime']
@@ -9717,7 +9717,7 @@ class DbManagementClient(object):
9717
9717
  :rtype: :class:`~oci.response.Response`
9718
9718
 
9719
9719
  :example:
9720
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_database_ha_backup_details.py.html>`__ to see an example of how to use get_database_ha_backup_details API.
9720
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_database_ha_backup_details.py.html>`__ to see an example of how to use get_database_ha_backup_details API.
9721
9721
  """
9722
9722
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9723
9723
  required_arguments = ['managedDatabaseId']
@@ -9827,7 +9827,7 @@ class DbManagementClient(object):
9827
9827
  :rtype: :class:`~oci.response.Response`
9828
9828
 
9829
9829
  :example:
9830
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_database_home_metrics.py.html>`__ to see an example of how to use get_database_home_metrics API.
9830
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_database_home_metrics.py.html>`__ to see an example of how to use get_database_home_metrics API.
9831
9831
  """
9832
9832
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9833
9833
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -9941,7 +9941,7 @@ class DbManagementClient(object):
9941
9941
  :rtype: :class:`~oci.response.Response`
9942
9942
 
9943
9943
  :example:
9944
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_dataguard_performance_metrics.py.html>`__ to see an example of how to use get_dataguard_performance_metrics API.
9944
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_dataguard_performance_metrics.py.html>`__ to see an example of how to use get_dataguard_performance_metrics API.
9945
9945
  """
9946
9946
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9947
9947
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -10051,7 +10051,7 @@ class DbManagementClient(object):
10051
10051
  :rtype: :class:`~oci.response.Response`
10052
10052
 
10053
10053
  :example:
10054
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_db_management_private_endpoint.py.html>`__ to see an example of how to use get_db_management_private_endpoint API.
10054
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_db_management_private_endpoint.py.html>`__ to see an example of how to use get_db_management_private_endpoint API.
10055
10055
  """
10056
10056
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10057
10057
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -10149,7 +10149,7 @@ class DbManagementClient(object):
10149
10149
  :rtype: :class:`~oci.response.Response`
10150
10150
 
10151
10151
  :example:
10152
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_asm.py.html>`__ to see an example of how to use get_external_asm API.
10152
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_asm.py.html>`__ to see an example of how to use get_external_asm API.
10153
10153
  """
10154
10154
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10155
10155
  required_arguments = ['externalAsmId']
@@ -10252,7 +10252,7 @@ class DbManagementClient(object):
10252
10252
  :rtype: :class:`~oci.response.Response`
10253
10253
 
10254
10254
  :example:
10255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_asm_configuration.py.html>`__ to see an example of how to use get_external_asm_configuration API.
10255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_asm_configuration.py.html>`__ to see an example of how to use get_external_asm_configuration API.
10256
10256
  """
10257
10257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10258
10258
  required_arguments = ['externalAsmId']
@@ -10354,7 +10354,7 @@ class DbManagementClient(object):
10354
10354
  :rtype: :class:`~oci.response.Response`
10355
10355
 
10356
10356
  :example:
10357
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_asm_instance.py.html>`__ to see an example of how to use get_external_asm_instance API.
10357
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_asm_instance.py.html>`__ to see an example of how to use get_external_asm_instance API.
10358
10358
  """
10359
10359
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10360
10360
  required_arguments = ['externalAsmInstanceId']
@@ -10454,7 +10454,7 @@ class DbManagementClient(object):
10454
10454
  :rtype: :class:`~oci.response.Response`
10455
10455
 
10456
10456
  :example:
10457
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_cluster.py.html>`__ to see an example of how to use get_external_cluster API.
10457
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_cluster.py.html>`__ to see an example of how to use get_external_cluster API.
10458
10458
  """
10459
10459
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10460
10460
  required_arguments = ['externalClusterId']
@@ -10554,7 +10554,7 @@ class DbManagementClient(object):
10554
10554
  :rtype: :class:`~oci.response.Response`
10555
10555
 
10556
10556
  :example:
10557
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_cluster_instance.py.html>`__ to see an example of how to use get_external_cluster_instance API.
10557
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_cluster_instance.py.html>`__ to see an example of how to use get_external_cluster_instance API.
10558
10558
  """
10559
10559
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10560
10560
  required_arguments = ['externalClusterInstanceId']
@@ -10654,7 +10654,7 @@ class DbManagementClient(object):
10654
10654
  :rtype: :class:`~oci.response.Response`
10655
10655
 
10656
10656
  :example:
10657
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_db_home.py.html>`__ to see an example of how to use get_external_db_home API.
10657
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_db_home.py.html>`__ to see an example of how to use get_external_db_home API.
10658
10658
  """
10659
10659
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10660
10660
  required_arguments = ['externalDbHomeId']
@@ -10754,7 +10754,7 @@ class DbManagementClient(object):
10754
10754
  :rtype: :class:`~oci.response.Response`
10755
10755
 
10756
10756
  :example:
10757
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_db_node.py.html>`__ to see an example of how to use get_external_db_node API.
10757
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_db_node.py.html>`__ to see an example of how to use get_external_db_node API.
10758
10758
  """
10759
10759
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10760
10760
  required_arguments = ['externalDbNodeId']
@@ -10854,7 +10854,7 @@ class DbManagementClient(object):
10854
10854
  :rtype: :class:`~oci.response.Response`
10855
10855
 
10856
10856
  :example:
10857
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_db_system.py.html>`__ to see an example of how to use get_external_db_system API.
10857
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_db_system.py.html>`__ to see an example of how to use get_external_db_system API.
10858
10858
  """
10859
10859
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10860
10860
  required_arguments = ['externalDbSystemId']
@@ -10954,7 +10954,7 @@ class DbManagementClient(object):
10954
10954
  :rtype: :class:`~oci.response.Response`
10955
10955
 
10956
10956
  :example:
10957
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_db_system_connector.py.html>`__ to see an example of how to use get_external_db_system_connector API.
10957
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_db_system_connector.py.html>`__ to see an example of how to use get_external_db_system_connector API.
10958
10958
  """
10959
10959
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10960
10960
  required_arguments = ['externalDbSystemConnectorId']
@@ -11054,7 +11054,7 @@ class DbManagementClient(object):
11054
11054
  :rtype: :class:`~oci.response.Response`
11055
11055
 
11056
11056
  :example:
11057
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_db_system_discovery.py.html>`__ to see an example of how to use get_external_db_system_discovery API.
11057
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_db_system_discovery.py.html>`__ to see an example of how to use get_external_db_system_discovery API.
11058
11058
  """
11059
11059
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11060
11060
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -11155,7 +11155,7 @@ class DbManagementClient(object):
11155
11155
  :rtype: :class:`~oci.response.Response`
11156
11156
 
11157
11157
  :example:
11158
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_exadata_infrastructure.py.html>`__ to see an example of how to use get_external_exadata_infrastructure API.
11158
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_exadata_infrastructure.py.html>`__ to see an example of how to use get_external_exadata_infrastructure API.
11159
11159
  """
11160
11160
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11161
11161
  required_arguments = ['externalExadataInfrastructureId']
@@ -11255,7 +11255,7 @@ class DbManagementClient(object):
11255
11255
  :rtype: :class:`~oci.response.Response`
11256
11256
 
11257
11257
  :example:
11258
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_exadata_storage_connector.py.html>`__ to see an example of how to use get_external_exadata_storage_connector API.
11258
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_exadata_storage_connector.py.html>`__ to see an example of how to use get_external_exadata_storage_connector API.
11259
11259
  """
11260
11260
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11261
11261
  required_arguments = ['externalExadataStorageConnectorId']
@@ -11355,7 +11355,7 @@ class DbManagementClient(object):
11355
11355
  :rtype: :class:`~oci.response.Response`
11356
11356
 
11357
11357
  :example:
11358
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_exadata_storage_grid.py.html>`__ to see an example of how to use get_external_exadata_storage_grid API.
11358
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_exadata_storage_grid.py.html>`__ to see an example of how to use get_external_exadata_storage_grid API.
11359
11359
  """
11360
11360
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11361
11361
  required_arguments = ['externalExadataStorageGridId']
@@ -11455,7 +11455,7 @@ class DbManagementClient(object):
11455
11455
  :rtype: :class:`~oci.response.Response`
11456
11456
 
11457
11457
  :example:
11458
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_exadata_storage_server.py.html>`__ to see an example of how to use get_external_exadata_storage_server API.
11458
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_exadata_storage_server.py.html>`__ to see an example of how to use get_external_exadata_storage_server API.
11459
11459
  """
11460
11460
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11461
11461
  required_arguments = ['externalExadataStorageServerId']
@@ -11555,7 +11555,7 @@ class DbManagementClient(object):
11555
11555
  :rtype: :class:`~oci.response.Response`
11556
11556
 
11557
11557
  :example:
11558
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_listener.py.html>`__ to see an example of how to use get_external_listener API.
11558
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_listener.py.html>`__ to see an example of how to use get_external_listener API.
11559
11559
  """
11560
11560
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11561
11561
  required_arguments = ['externalListenerId']
@@ -11653,7 +11653,7 @@ class DbManagementClient(object):
11653
11653
  :rtype: :class:`~oci.response.Response`
11654
11654
 
11655
11655
  :example:
11656
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_my_sql_database.py.html>`__ to see an example of how to use get_external_my_sql_database API.
11656
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_my_sql_database.py.html>`__ to see an example of how to use get_external_my_sql_database API.
11657
11657
  """
11658
11658
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11659
11659
  required_arguments = ['externalMySqlDatabaseId']
@@ -11751,7 +11751,7 @@ class DbManagementClient(object):
11751
11751
  :rtype: :class:`~oci.response.Response`
11752
11752
 
11753
11753
  :example:
11754
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_external_my_sql_database_connector.py.html>`__ to see an example of how to use get_external_my_sql_database_connector API.
11754
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_external_my_sql_database_connector.py.html>`__ to see an example of how to use get_external_my_sql_database_connector API.
11755
11755
  """
11756
11756
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11757
11757
  required_arguments = ['externalMySqlDatabaseConnectorId']
@@ -11851,7 +11851,7 @@ class DbManagementClient(object):
11851
11851
  :rtype: :class:`~oci.response.Response`
11852
11852
 
11853
11853
  :example:
11854
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_iorm_plan.py.html>`__ to see an example of how to use get_iorm_plan API.
11854
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_iorm_plan.py.html>`__ to see an example of how to use get_iorm_plan API.
11855
11855
  """
11856
11856
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11857
11857
  required_arguments = ['externalExadataStorageServerId']
@@ -11949,7 +11949,7 @@ class DbManagementClient(object):
11949
11949
  :rtype: :class:`~oci.response.Response`
11950
11950
 
11951
11951
  :example:
11952
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_job.py.html>`__ to see an example of how to use get_job API.
11952
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_job.py.html>`__ to see an example of how to use get_job API.
11953
11953
  """
11954
11954
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11955
11955
  required_arguments = ['jobId']
@@ -12045,7 +12045,7 @@ class DbManagementClient(object):
12045
12045
  :rtype: :class:`~oci.response.Response`
12046
12046
 
12047
12047
  :example:
12048
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
12048
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
12049
12049
  """
12050
12050
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12051
12051
  required_arguments = ['jobExecutionId']
@@ -12141,7 +12141,7 @@ class DbManagementClient(object):
12141
12141
  :rtype: :class:`~oci.response.Response`
12142
12142
 
12143
12143
  :example:
12144
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
12144
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
12145
12145
  """
12146
12146
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12147
12147
  required_arguments = ['jobRunId']
@@ -12239,7 +12239,7 @@ class DbManagementClient(object):
12239
12239
  :rtype: :class:`~oci.response.Response`
12240
12240
 
12241
12241
  :example:
12242
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_managed_database.py.html>`__ to see an example of how to use get_managed_database API.
12242
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_managed_database.py.html>`__ to see an example of how to use get_managed_database API.
12243
12243
  """
12244
12244
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12245
12245
  required_arguments = ['managedDatabaseId']
@@ -12337,7 +12337,7 @@ class DbManagementClient(object):
12337
12337
  :rtype: :class:`~oci.response.Response`
12338
12338
 
12339
12339
  :example:
12340
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_managed_database_group.py.html>`__ to see an example of how to use get_managed_database_group API.
12340
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_managed_database_group.py.html>`__ to see an example of how to use get_managed_database_group API.
12341
12341
  """
12342
12342
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12343
12343
  required_arguments = ['managedDatabaseGroupId']
@@ -12435,7 +12435,7 @@ class DbManagementClient(object):
12435
12435
  :rtype: :class:`~oci.response.Response`
12436
12436
 
12437
12437
  :example:
12438
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_named_credential.py.html>`__ to see an example of how to use get_named_credential API.
12438
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_named_credential.py.html>`__ to see an example of how to use get_named_credential API.
12439
12439
  """
12440
12440
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12441
12441
  required_arguments = ['namedCredentialId']
@@ -12535,7 +12535,7 @@ class DbManagementClient(object):
12535
12535
  :rtype: :class:`~oci.response.Response`
12536
12536
 
12537
12537
  :example:
12538
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_open_alert_history.py.html>`__ to see an example of how to use get_open_alert_history API.
12538
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_open_alert_history.py.html>`__ to see an example of how to use get_open_alert_history API.
12539
12539
  """
12540
12540
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12541
12541
  required_arguments = ['externalExadataStorageServerId']
@@ -12645,7 +12645,7 @@ class DbManagementClient(object):
12645
12645
  :rtype: :class:`~oci.response.Response`
12646
12646
 
12647
12647
  :example:
12648
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_optimizer_statistics_advisor_execution.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution API.
12648
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_optimizer_statistics_advisor_execution.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution API.
12649
12649
  """
12650
12650
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12651
12651
  required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
@@ -12762,7 +12762,7 @@ class DbManagementClient(object):
12762
12762
  :rtype: :class:`~oci.response.Response`
12763
12763
 
12764
12764
  :example:
12765
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_optimizer_statistics_advisor_execution_script.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution_script API.
12765
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_optimizer_statistics_advisor_execution_script.py.html>`__ to see an example of how to use get_optimizer_statistics_advisor_execution_script API.
12766
12766
  """
12767
12767
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12768
12768
  required_arguments = ['managedDatabaseId', 'executionName', 'taskName']
@@ -12876,7 +12876,7 @@ class DbManagementClient(object):
12876
12876
  :rtype: :class:`~oci.response.Response`
12877
12877
 
12878
12878
  :example:
12879
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_optimizer_statistics_collection_operation.py.html>`__ to see an example of how to use get_optimizer_statistics_collection_operation API.
12879
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_optimizer_statistics_collection_operation.py.html>`__ to see an example of how to use get_optimizer_statistics_collection_operation API.
12880
12880
  """
12881
12881
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12882
12882
  required_arguments = ['managedDatabaseId', 'optimizerStatisticsCollectionOperationId']
@@ -13001,7 +13001,7 @@ class DbManagementClient(object):
13001
13001
  :rtype: :class:`~oci.response.Response`
13002
13002
 
13003
13003
  :example:
13004
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_pdb_metrics.py.html>`__ to see an example of how to use get_pdb_metrics API.
13004
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_pdb_metrics.py.html>`__ to see an example of how to use get_pdb_metrics API.
13005
13005
  """
13006
13006
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13007
13007
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -13144,7 +13144,7 @@ class DbManagementClient(object):
13144
13144
  :rtype: :class:`~oci.response.Response`
13145
13145
 
13146
13146
  :example:
13147
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_peer_database_metrics.py.html>`__ to see an example of how to use get_peer_database_metrics API.
13147
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_peer_database_metrics.py.html>`__ to see an example of how to use get_peer_database_metrics API.
13148
13148
  """
13149
13149
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13150
13150
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -13266,7 +13266,7 @@ class DbManagementClient(object):
13266
13266
  :rtype: :class:`~oci.response.Response`
13267
13267
 
13268
13268
  :example:
13269
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_preferred_credential.py.html>`__ to see an example of how to use get_preferred_credential API.
13269
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_preferred_credential.py.html>`__ to see an example of how to use get_preferred_credential API.
13270
13270
  """
13271
13271
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13272
13272
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -13371,7 +13371,7 @@ class DbManagementClient(object):
13371
13371
  :rtype: :class:`~oci.response.Response`
13372
13372
 
13373
13373
  :example:
13374
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_sql_plan_baseline.py.html>`__ to see an example of how to use get_sql_plan_baseline API.
13374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_sql_plan_baseline.py.html>`__ to see an example of how to use get_sql_plan_baseline API.
13375
13375
  """
13376
13376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13377
13377
  required_arguments = ['managedDatabaseId', 'planName']
@@ -13479,7 +13479,7 @@ class DbManagementClient(object):
13479
13479
  :rtype: :class:`~oci.response.Response`
13480
13480
 
13481
13481
  :example:
13482
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_sql_plan_baseline_configuration.py.html>`__ to see an example of how to use get_sql_plan_baseline_configuration API.
13482
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_sql_plan_baseline_configuration.py.html>`__ to see an example of how to use get_sql_plan_baseline_configuration API.
13483
13483
  """
13484
13484
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13485
13485
  required_arguments = ['managedDatabaseId']
@@ -13587,7 +13587,7 @@ class DbManagementClient(object):
13587
13587
  :rtype: :class:`~oci.response.Response`
13588
13588
 
13589
13589
  :example:
13590
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_tablespace.py.html>`__ to see an example of how to use get_tablespace API.
13590
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_tablespace.py.html>`__ to see an example of how to use get_tablespace API.
13591
13591
  """
13592
13592
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13593
13593
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -13688,7 +13688,7 @@ class DbManagementClient(object):
13688
13688
  :rtype: :class:`~oci.response.Response`
13689
13689
 
13690
13690
  :example:
13691
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_top_sql_cpu_activity.py.html>`__ to see an example of how to use get_top_sql_cpu_activity API.
13691
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_top_sql_cpu_activity.py.html>`__ to see an example of how to use get_top_sql_cpu_activity API.
13692
13692
  """
13693
13693
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13694
13694
  required_arguments = ['externalExadataStorageServerId']
@@ -13794,7 +13794,7 @@ class DbManagementClient(object):
13794
13794
  :rtype: :class:`~oci.response.Response`
13795
13795
 
13796
13796
  :example:
13797
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_user.py.html>`__ to see an example of how to use get_user API.
13797
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_user.py.html>`__ to see an example of how to use get_user API.
13798
13798
  """
13799
13799
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13800
13800
  required_arguments = ['managedDatabaseId', 'userName']
@@ -13895,7 +13895,7 @@ class DbManagementClient(object):
13895
13895
  :rtype: :class:`~oci.response.Response`
13896
13896
 
13897
13897
  :example:
13898
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
13898
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
13899
13899
  """
13900
13900
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13901
13901
  required_arguments = ['workRequestId']
@@ -13999,7 +13999,7 @@ class DbManagementClient(object):
13999
13999
  :rtype: :class:`~oci.response.Response`
14000
14000
 
14001
14001
  :example:
14002
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/implement_optimizer_statistics_advisor_recommendations.py.html>`__ to see an example of how to use implement_optimizer_statistics_advisor_recommendations API.
14002
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/implement_optimizer_statistics_advisor_recommendations.py.html>`__ to see an example of how to use implement_optimizer_statistics_advisor_recommendations API.
14003
14003
  """
14004
14004
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14005
14005
  required_arguments = ['managedDatabaseId', 'executionName']
@@ -14122,7 +14122,7 @@ class DbManagementClient(object):
14122
14122
  :rtype: :class:`~oci.response.Response`
14123
14123
 
14124
14124
  :example:
14125
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_asm_properties.py.html>`__ to see an example of how to use list_asm_properties API.
14125
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_asm_properties.py.html>`__ to see an example of how to use list_asm_properties API.
14126
14126
  """
14127
14127
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14128
14128
  required_arguments = ['managedDatabaseId']
@@ -14272,7 +14272,7 @@ class DbManagementClient(object):
14272
14272
  :rtype: :class:`~oci.response.Response`
14273
14273
 
14274
14274
  :example:
14275
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_associated_databases.py.html>`__ to see an example of how to use list_associated_databases API.
14275
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_associated_databases.py.html>`__ to see an example of how to use list_associated_databases API.
14276
14276
  """
14277
14277
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14278
14278
  required_arguments = ['dbManagementPrivateEndpointId', 'compartmentId']
@@ -14451,7 +14451,7 @@ class DbManagementClient(object):
14451
14451
  :rtype: :class:`~oci.response.Response`
14452
14452
 
14453
14453
  :example:
14454
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_awr_db_snapshots.py.html>`__ to see an example of how to use list_awr_db_snapshots API.
14454
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_awr_db_snapshots.py.html>`__ to see an example of how to use list_awr_db_snapshots API.
14455
14455
  """
14456
14456
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14457
14457
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -14631,7 +14631,7 @@ class DbManagementClient(object):
14631
14631
  :rtype: :class:`~oci.response.Response`
14632
14632
 
14633
14633
  :example:
14634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_awr_dbs.py.html>`__ to see an example of how to use list_awr_dbs API.
14634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_awr_dbs.py.html>`__ to see an example of how to use list_awr_dbs API.
14635
14635
  """
14636
14636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14637
14637
  required_arguments = ['managedDatabaseId']
@@ -14795,7 +14795,7 @@ class DbManagementClient(object):
14795
14795
  :rtype: :class:`~oci.response.Response`
14796
14796
 
14797
14797
  :example:
14798
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_consumer_group_privileges.py.html>`__ to see an example of how to use list_consumer_group_privileges API.
14798
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_consumer_group_privileges.py.html>`__ to see an example of how to use list_consumer_group_privileges API.
14799
14799
  """
14800
14800
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14801
14801
  required_arguments = ['managedDatabaseId', 'userName']
@@ -14951,7 +14951,7 @@ class DbManagementClient(object):
14951
14951
  :rtype: :class:`~oci.response.Response`
14952
14952
 
14953
14953
  :example:
14954
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_cursor_cache_statements.py.html>`__ to see an example of how to use list_cursor_cache_statements API.
14954
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_cursor_cache_statements.py.html>`__ to see an example of how to use list_cursor_cache_statements API.
14955
14955
  """
14956
14956
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14957
14957
  required_arguments = ['managedDatabaseId']
@@ -15110,7 +15110,7 @@ class DbManagementClient(object):
15110
15110
  :rtype: :class:`~oci.response.Response`
15111
15111
 
15112
15112
  :example:
15113
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_data_access_containers.py.html>`__ to see an example of how to use list_data_access_containers API.
15113
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_data_access_containers.py.html>`__ to see an example of how to use list_data_access_containers API.
15114
15114
  """
15115
15115
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15116
15116
  required_arguments = ['managedDatabaseId', 'userName']
@@ -15269,7 +15269,7 @@ class DbManagementClient(object):
15269
15269
  :rtype: :class:`~oci.response.Response`
15270
15270
 
15271
15271
  :example:
15272
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_database_parameters.py.html>`__ to see an example of how to use list_database_parameters API.
15272
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_database_parameters.py.html>`__ to see an example of how to use list_database_parameters API.
15273
15273
  """
15274
15274
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15275
15275
  required_arguments = ['managedDatabaseId']
@@ -15445,7 +15445,7 @@ class DbManagementClient(object):
15445
15445
  :rtype: :class:`~oci.response.Response`
15446
15446
 
15447
15447
  :example:
15448
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_db_management_private_endpoints.py.html>`__ to see an example of how to use list_db_management_private_endpoints API.
15448
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_db_management_private_endpoints.py.html>`__ to see an example of how to use list_db_management_private_endpoints API.
15449
15449
  """
15450
15450
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15451
15451
  required_arguments = ['compartmentId']
@@ -15598,7 +15598,7 @@ class DbManagementClient(object):
15598
15598
  :rtype: :class:`~oci.response.Response`
15599
15599
 
15600
15600
  :example:
15601
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_asm_disk_groups.py.html>`__ to see an example of how to use list_external_asm_disk_groups API.
15601
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_asm_disk_groups.py.html>`__ to see an example of how to use list_external_asm_disk_groups API.
15602
15602
  """
15603
15603
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15604
15604
  required_arguments = ['externalAsmId']
@@ -15755,7 +15755,7 @@ class DbManagementClient(object):
15755
15755
  :rtype: :class:`~oci.response.Response`
15756
15756
 
15757
15757
  :example:
15758
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_asm_instances.py.html>`__ to see an example of how to use list_external_asm_instances API.
15758
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_asm_instances.py.html>`__ to see an example of how to use list_external_asm_instances API.
15759
15759
  """
15760
15760
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15761
15761
  required_arguments = []
@@ -15898,7 +15898,7 @@ class DbManagementClient(object):
15898
15898
  :rtype: :class:`~oci.response.Response`
15899
15899
 
15900
15900
  :example:
15901
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_asm_users.py.html>`__ to see an example of how to use list_external_asm_users API.
15901
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_asm_users.py.html>`__ to see an example of how to use list_external_asm_users API.
15902
15902
  """
15903
15903
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15904
15904
  required_arguments = ['externalAsmId']
@@ -16055,7 +16055,7 @@ class DbManagementClient(object):
16055
16055
  :rtype: :class:`~oci.response.Response`
16056
16056
 
16057
16057
  :example:
16058
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_asms.py.html>`__ to see an example of how to use list_external_asms API.
16058
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_asms.py.html>`__ to see an example of how to use list_external_asms API.
16059
16059
  """
16060
16060
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16061
16061
  required_arguments = []
@@ -16204,7 +16204,7 @@ class DbManagementClient(object):
16204
16204
  :rtype: :class:`~oci.response.Response`
16205
16205
 
16206
16206
  :example:
16207
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_cluster_instances.py.html>`__ to see an example of how to use list_external_cluster_instances API.
16207
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_cluster_instances.py.html>`__ to see an example of how to use list_external_cluster_instances API.
16208
16208
  """
16209
16209
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16210
16210
  required_arguments = []
@@ -16353,7 +16353,7 @@ class DbManagementClient(object):
16353
16353
  :rtype: :class:`~oci.response.Response`
16354
16354
 
16355
16355
  :example:
16356
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_clusters.py.html>`__ to see an example of how to use list_external_clusters API.
16356
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_clusters.py.html>`__ to see an example of how to use list_external_clusters API.
16357
16357
  """
16358
16358
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16359
16359
  required_arguments = []
@@ -16507,7 +16507,7 @@ class DbManagementClient(object):
16507
16507
  :rtype: :class:`~oci.response.Response`
16508
16508
 
16509
16509
  :example:
16510
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_databases.py.html>`__ to see an example of how to use list_external_databases API.
16510
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_databases.py.html>`__ to see an example of how to use list_external_databases API.
16511
16511
  """
16512
16512
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16513
16513
  required_arguments = []
@@ -16658,7 +16658,7 @@ class DbManagementClient(object):
16658
16658
  :rtype: :class:`~oci.response.Response`
16659
16659
 
16660
16660
  :example:
16661
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_db_homes.py.html>`__ to see an example of how to use list_external_db_homes API.
16661
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_db_homes.py.html>`__ to see an example of how to use list_external_db_homes API.
16662
16662
  """
16663
16663
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16664
16664
  required_arguments = []
@@ -16807,7 +16807,7 @@ class DbManagementClient(object):
16807
16807
  :rtype: :class:`~oci.response.Response`
16808
16808
 
16809
16809
  :example:
16810
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_db_nodes.py.html>`__ to see an example of how to use list_external_db_nodes API.
16810
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_db_nodes.py.html>`__ to see an example of how to use list_external_db_nodes API.
16811
16811
  """
16812
16812
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16813
16813
  required_arguments = []
@@ -16956,7 +16956,7 @@ class DbManagementClient(object):
16956
16956
  :rtype: :class:`~oci.response.Response`
16957
16957
 
16958
16958
  :example:
16959
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_db_system_connectors.py.html>`__ to see an example of how to use list_external_db_system_connectors API.
16959
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_db_system_connectors.py.html>`__ to see an example of how to use list_external_db_system_connectors API.
16960
16960
  """
16961
16961
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16962
16962
  required_arguments = []
@@ -17100,7 +17100,7 @@ class DbManagementClient(object):
17100
17100
  :rtype: :class:`~oci.response.Response`
17101
17101
 
17102
17102
  :example:
17103
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_db_system_discoveries.py.html>`__ to see an example of how to use list_external_db_system_discoveries API.
17103
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_db_system_discoveries.py.html>`__ to see an example of how to use list_external_db_system_discoveries API.
17104
17104
  """
17105
17105
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17106
17106
  required_arguments = ['compartmentId']
@@ -17241,7 +17241,7 @@ class DbManagementClient(object):
17241
17241
  :rtype: :class:`~oci.response.Response`
17242
17242
 
17243
17243
  :example:
17244
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_db_systems.py.html>`__ to see an example of how to use list_external_db_systems API.
17244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_db_systems.py.html>`__ to see an example of how to use list_external_db_systems API.
17245
17245
  """
17246
17246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17247
17247
  required_arguments = ['compartmentId']
@@ -17382,7 +17382,7 @@ class DbManagementClient(object):
17382
17382
  :rtype: :class:`~oci.response.Response`
17383
17383
 
17384
17384
  :example:
17385
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_exadata_infrastructures.py.html>`__ to see an example of how to use list_external_exadata_infrastructures API.
17385
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_exadata_infrastructures.py.html>`__ to see an example of how to use list_external_exadata_infrastructures API.
17386
17386
  """
17387
17387
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17388
17388
  required_arguments = ['compartmentId']
@@ -17528,7 +17528,7 @@ class DbManagementClient(object):
17528
17528
  :rtype: :class:`~oci.response.Response`
17529
17529
 
17530
17530
  :example:
17531
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_exadata_storage_connectors.py.html>`__ to see an example of how to use list_external_exadata_storage_connectors API.
17531
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_exadata_storage_connectors.py.html>`__ to see an example of how to use list_external_exadata_storage_connectors API.
17532
17532
  """
17533
17533
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17534
17534
  required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
@@ -17675,7 +17675,7 @@ class DbManagementClient(object):
17675
17675
  :rtype: :class:`~oci.response.Response`
17676
17676
 
17677
17677
  :example:
17678
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_exadata_storage_servers.py.html>`__ to see an example of how to use list_external_exadata_storage_servers API.
17678
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_exadata_storage_servers.py.html>`__ to see an example of how to use list_external_exadata_storage_servers API.
17679
17679
  """
17680
17680
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17681
17681
  required_arguments = ['compartmentId', 'externalExadataInfrastructureId']
@@ -17822,7 +17822,7 @@ class DbManagementClient(object):
17822
17822
  :rtype: :class:`~oci.response.Response`
17823
17823
 
17824
17824
  :example:
17825
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_listener_services.py.html>`__ to see an example of how to use list_external_listener_services API.
17825
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_listener_services.py.html>`__ to see an example of how to use list_external_listener_services API.
17826
17826
  """
17827
17827
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17828
17828
  required_arguments = ['externalListenerId', 'managedDatabaseId']
@@ -17980,7 +17980,7 @@ class DbManagementClient(object):
17980
17980
  :rtype: :class:`~oci.response.Response`
17981
17981
 
17982
17982
  :example:
17983
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_listeners.py.html>`__ to see an example of how to use list_external_listeners API.
17983
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_listeners.py.html>`__ to see an example of how to use list_external_listeners API.
17984
17984
  """
17985
17985
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17986
17986
  required_arguments = []
@@ -18124,7 +18124,7 @@ class DbManagementClient(object):
18124
18124
  :rtype: :class:`~oci.response.Response`
18125
18125
 
18126
18126
  :example:
18127
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_external_my_sql_databases.py.html>`__ to see an example of how to use list_external_my_sql_databases API.
18127
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_external_my_sql_databases.py.html>`__ to see an example of how to use list_external_my_sql_databases API.
18128
18128
  """
18129
18129
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18130
18130
  required_arguments = ['compartmentId']
@@ -18288,7 +18288,7 @@ class DbManagementClient(object):
18288
18288
  :rtype: :class:`~oci.response.Response`
18289
18289
 
18290
18290
  :example:
18291
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
18291
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
18292
18292
  """
18293
18293
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18294
18294
  required_arguments = ['compartmentId']
@@ -18461,7 +18461,7 @@ class DbManagementClient(object):
18461
18461
  :rtype: :class:`~oci.response.Response`
18462
18462
 
18463
18463
  :example:
18464
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
18464
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
18465
18465
  """
18466
18466
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18467
18467
  required_arguments = ['compartmentId']
@@ -18631,7 +18631,7 @@ class DbManagementClient(object):
18631
18631
  :rtype: :class:`~oci.response.Response`
18632
18632
 
18633
18633
  :example:
18634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
18634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
18635
18635
  """
18636
18636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18637
18637
  required_arguments = ['compartmentId']
@@ -18796,7 +18796,7 @@ class DbManagementClient(object):
18796
18796
  :rtype: :class:`~oci.response.Response`
18797
18797
 
18798
18798
  :example:
18799
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_managed_database_groups.py.html>`__ to see an example of how to use list_managed_database_groups API.
18799
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_managed_database_groups.py.html>`__ to see an example of how to use list_managed_database_groups API.
18800
18800
  """
18801
18801
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18802
18802
  required_arguments = ['compartmentId']
@@ -18969,7 +18969,7 @@ class DbManagementClient(object):
18969
18969
  :rtype: :class:`~oci.response.Response`
18970
18970
 
18971
18971
  :example:
18972
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_managed_databases.py.html>`__ to see an example of how to use list_managed_databases API.
18972
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_managed_databases.py.html>`__ to see an example of how to use list_managed_databases API.
18973
18973
  """
18974
18974
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18975
18975
  required_arguments = ['compartmentId']
@@ -19135,7 +19135,7 @@ class DbManagementClient(object):
19135
19135
  :rtype: :class:`~oci.response.Response`
19136
19136
 
19137
19137
  :example:
19138
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_my_sql_database_connectors.py.html>`__ to see an example of how to use list_my_sql_database_connectors API.
19138
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_my_sql_database_connectors.py.html>`__ to see an example of how to use list_my_sql_database_connectors API.
19139
19139
  """
19140
19140
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19141
19141
  required_arguments = ['compartmentId']
@@ -19289,7 +19289,7 @@ class DbManagementClient(object):
19289
19289
  :rtype: :class:`~oci.response.Response`
19290
19290
 
19291
19291
  :example:
19292
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_named_credentials.py.html>`__ to see an example of how to use list_named_credentials API.
19292
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_named_credentials.py.html>`__ to see an example of how to use list_named_credentials API.
19293
19293
  """
19294
19294
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19295
19295
  required_arguments = ['compartmentId']
@@ -19455,7 +19455,7 @@ class DbManagementClient(object):
19455
19455
  :rtype: :class:`~oci.response.Response`
19456
19456
 
19457
19457
  :example:
19458
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_object_privileges.py.html>`__ to see an example of how to use list_object_privileges API.
19458
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_object_privileges.py.html>`__ to see an example of how to use list_object_privileges API.
19459
19459
  """
19460
19460
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19461
19461
  required_arguments = ['managedDatabaseId', 'userName']
@@ -19599,7 +19599,7 @@ class DbManagementClient(object):
19599
19599
  :rtype: :class:`~oci.response.Response`
19600
19600
 
19601
19601
  :example:
19602
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_optimizer_statistics_advisor_executions.py.html>`__ to see an example of how to use list_optimizer_statistics_advisor_executions API.
19602
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_optimizer_statistics_advisor_executions.py.html>`__ to see an example of how to use list_optimizer_statistics_advisor_executions API.
19603
19603
  """
19604
19604
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19605
19605
  required_arguments = ['managedDatabaseId']
@@ -19742,7 +19742,7 @@ class DbManagementClient(object):
19742
19742
  :rtype: :class:`~oci.response.Response`
19743
19743
 
19744
19744
  :example:
19745
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_optimizer_statistics_collection_aggregations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_aggregations API.
19745
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_optimizer_statistics_collection_aggregations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_aggregations API.
19746
19746
  """
19747
19747
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19748
19748
  required_arguments = ['managedDatabaseId', 'groupType']
@@ -19917,7 +19917,7 @@ class DbManagementClient(object):
19917
19917
  :rtype: :class:`~oci.response.Response`
19918
19918
 
19919
19919
  :example:
19920
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_optimizer_statistics_collection_operations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_operations API.
19920
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_optimizer_statistics_collection_operations.py.html>`__ to see an example of how to use list_optimizer_statistics_collection_operations API.
19921
19921
  """
19922
19922
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19923
19923
  required_arguments = ['managedDatabaseId']
@@ -20060,7 +20060,7 @@ class DbManagementClient(object):
20060
20060
  :rtype: :class:`~oci.response.Response`
20061
20061
 
20062
20062
  :example:
20063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_preferred_credentials.py.html>`__ to see an example of how to use list_preferred_credentials API.
20063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_preferred_credentials.py.html>`__ to see an example of how to use list_preferred_credentials API.
20064
20064
  """
20065
20065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20066
20066
  required_arguments = ['managedDatabaseId']
@@ -20185,7 +20185,7 @@ class DbManagementClient(object):
20185
20185
  :rtype: :class:`~oci.response.Response`
20186
20186
 
20187
20187
  :example:
20188
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_proxied_for_users.py.html>`__ to see an example of how to use list_proxied_for_users API.
20188
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_proxied_for_users.py.html>`__ to see an example of how to use list_proxied_for_users API.
20189
20189
  """
20190
20190
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20191
20191
  required_arguments = ['managedDatabaseId', 'userName']
@@ -20343,7 +20343,7 @@ class DbManagementClient(object):
20343
20343
  :rtype: :class:`~oci.response.Response`
20344
20344
 
20345
20345
  :example:
20346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_proxy_users.py.html>`__ to see an example of how to use list_proxy_users API.
20346
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_proxy_users.py.html>`__ to see an example of how to use list_proxy_users API.
20347
20347
  """
20348
20348
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20349
20349
  required_arguments = ['managedDatabaseId', 'userName']
@@ -20501,7 +20501,7 @@ class DbManagementClient(object):
20501
20501
  :rtype: :class:`~oci.response.Response`
20502
20502
 
20503
20503
  :example:
20504
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_roles.py.html>`__ to see an example of how to use list_roles API.
20504
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_roles.py.html>`__ to see an example of how to use list_roles API.
20505
20505
  """
20506
20506
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20507
20507
  required_arguments = ['managedDatabaseId', 'userName']
@@ -20657,7 +20657,7 @@ class DbManagementClient(object):
20657
20657
  :rtype: :class:`~oci.response.Response`
20658
20658
 
20659
20659
  :example:
20660
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_sql_plan_baseline_jobs.py.html>`__ to see an example of how to use list_sql_plan_baseline_jobs API.
20660
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_sql_plan_baseline_jobs.py.html>`__ to see an example of how to use list_sql_plan_baseline_jobs API.
20661
20661
  """
20662
20662
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20663
20663
  required_arguments = ['managedDatabaseId']
@@ -20861,7 +20861,7 @@ class DbManagementClient(object):
20861
20861
  :rtype: :class:`~oci.response.Response`
20862
20862
 
20863
20863
  :example:
20864
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_sql_plan_baselines.py.html>`__ to see an example of how to use list_sql_plan_baselines API.
20864
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_sql_plan_baselines.py.html>`__ to see an example of how to use list_sql_plan_baselines API.
20865
20865
  """
20866
20866
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20867
20867
  required_arguments = ['managedDatabaseId']
@@ -21051,7 +21051,7 @@ class DbManagementClient(object):
21051
21051
  :rtype: :class:`~oci.response.Response`
21052
21052
 
21053
21053
  :example:
21054
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_system_privileges.py.html>`__ to see an example of how to use list_system_privileges API.
21054
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_system_privileges.py.html>`__ to see an example of how to use list_system_privileges API.
21055
21055
  """
21056
21056
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21057
21057
  required_arguments = ['managedDatabaseId', 'userName']
@@ -21186,7 +21186,7 @@ class DbManagementClient(object):
21186
21186
  :rtype: :class:`~oci.response.Response`
21187
21187
 
21188
21188
  :example:
21189
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_table_statistics.py.html>`__ to see an example of how to use list_table_statistics API.
21189
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_table_statistics.py.html>`__ to see an example of how to use list_table_statistics API.
21190
21190
  """
21191
21191
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21192
21192
  required_arguments = ['managedDatabaseId']
@@ -21311,7 +21311,7 @@ class DbManagementClient(object):
21311
21311
  :rtype: :class:`~oci.response.Response`
21312
21312
 
21313
21313
  :example:
21314
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_tablespaces.py.html>`__ to see an example of how to use list_tablespaces API.
21314
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_tablespaces.py.html>`__ to see an example of how to use list_tablespaces API.
21315
21315
  """
21316
21316
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21317
21317
  required_arguments = ['managedDatabaseId']
@@ -21466,7 +21466,7 @@ class DbManagementClient(object):
21466
21466
  :rtype: :class:`~oci.response.Response`
21467
21467
 
21468
21468
  :example:
21469
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_users.py.html>`__ to see an example of how to use list_users API.
21469
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_users.py.html>`__ to see an example of how to use list_users API.
21470
21470
  """
21471
21471
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21472
21472
  required_arguments = ['managedDatabaseId']
@@ -21613,7 +21613,7 @@ class DbManagementClient(object):
21613
21613
  :rtype: :class:`~oci.response.Response`
21614
21614
 
21615
21615
  :example:
21616
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
21616
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
21617
21617
  """
21618
21618
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21619
21619
  required_arguments = ['workRequestId']
@@ -21756,7 +21756,7 @@ class DbManagementClient(object):
21756
21756
  :rtype: :class:`~oci.response.Response`
21757
21757
 
21758
21758
  :example:
21759
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
21759
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
21760
21760
  """
21761
21761
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21762
21762
  required_arguments = ['workRequestId']
@@ -21914,7 +21914,7 @@ class DbManagementClient(object):
21914
21914
  :rtype: :class:`~oci.response.Response`
21915
21915
 
21916
21916
  :example:
21917
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
21917
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
21918
21918
  """
21919
21919
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21920
21920
  required_arguments = ['compartmentId']
@@ -22049,7 +22049,7 @@ class DbManagementClient(object):
22049
22049
  :rtype: :class:`~oci.response.Response`
22050
22050
 
22051
22051
  :example:
22052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/load_sql_plan_baselines_from_awr.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_awr API.
22052
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/load_sql_plan_baselines_from_awr.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_awr API.
22053
22053
  """
22054
22054
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22055
22055
  required_arguments = ['managedDatabaseId']
@@ -22154,7 +22154,7 @@ class DbManagementClient(object):
22154
22154
  :rtype: :class:`~oci.response.Response`
22155
22155
 
22156
22156
  :example:
22157
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/load_sql_plan_baselines_from_cursor_cache.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_cursor_cache API.
22157
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/load_sql_plan_baselines_from_cursor_cache.py.html>`__ to see an example of how to use load_sql_plan_baselines_from_cursor_cache API.
22158
22158
  """
22159
22159
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22160
22160
  required_arguments = ['managedDatabaseId']
@@ -22271,7 +22271,7 @@ class DbManagementClient(object):
22271
22271
  :rtype: :class:`~oci.response.Response`
22272
22272
 
22273
22273
  :example:
22274
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/modify_autonomous_database_management_feature.py.html>`__ to see an example of how to use modify_autonomous_database_management_feature API.
22274
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/modify_autonomous_database_management_feature.py.html>`__ to see an example of how to use modify_autonomous_database_management_feature API.
22275
22275
  """
22276
22276
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22277
22277
  required_arguments = ['autonomousDatabaseId']
@@ -22393,7 +22393,7 @@ class DbManagementClient(object):
22393
22393
  :rtype: :class:`~oci.response.Response`
22394
22394
 
22395
22395
  :example:
22396
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/modify_database_management_feature.py.html>`__ to see an example of how to use modify_database_management_feature API.
22396
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/modify_database_management_feature.py.html>`__ to see an example of how to use modify_database_management_feature API.
22397
22397
  """
22398
22398
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22399
22399
  required_arguments = ['databaseId']
@@ -22515,7 +22515,7 @@ class DbManagementClient(object):
22515
22515
  :rtype: :class:`~oci.response.Response`
22516
22516
 
22517
22517
  :example:
22518
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/modify_external_container_database_management_feature.py.html>`__ to see an example of how to use modify_external_container_database_management_feature API.
22518
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/modify_external_container_database_management_feature.py.html>`__ to see an example of how to use modify_external_container_database_management_feature API.
22519
22519
  """
22520
22520
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22521
22521
  required_arguments = ['externalContainerDatabaseId']
@@ -22637,7 +22637,7 @@ class DbManagementClient(object):
22637
22637
  :rtype: :class:`~oci.response.Response`
22638
22638
 
22639
22639
  :example:
22640
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/modify_pluggable_database_management_feature.py.html>`__ to see an example of how to use modify_pluggable_database_management_feature API.
22640
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/modify_pluggable_database_management_feature.py.html>`__ to see an example of how to use modify_pluggable_database_management_feature API.
22641
22641
  """
22642
22642
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22643
22643
  required_arguments = ['pluggableDatabaseId']
@@ -22752,7 +22752,7 @@ class DbManagementClient(object):
22752
22752
  :rtype: :class:`~oci.response.Response`
22753
22753
 
22754
22754
  :example:
22755
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/patch_external_db_system_discovery.py.html>`__ to see an example of how to use patch_external_db_system_discovery API.
22755
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/patch_external_db_system_discovery.py.html>`__ to see an example of how to use patch_external_db_system_discovery API.
22756
22756
  """
22757
22757
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22758
22758
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -22867,7 +22867,7 @@ class DbManagementClient(object):
22867
22867
  :rtype: :class:`~oci.response.Response`
22868
22868
 
22869
22869
  :example:
22870
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/remove_data_file.py.html>`__ to see an example of how to use remove_data_file API.
22870
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/remove_data_file.py.html>`__ to see an example of how to use remove_data_file API.
22871
22871
  """
22872
22872
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22873
22873
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -22984,7 +22984,7 @@ class DbManagementClient(object):
22984
22984
  :rtype: :class:`~oci.response.Response`
22985
22985
 
22986
22986
  :example:
22987
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/remove_managed_database_from_managed_database_group.py.html>`__ to see an example of how to use remove_managed_database_from_managed_database_group API.
22987
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/remove_managed_database_from_managed_database_group.py.html>`__ to see an example of how to use remove_managed_database_from_managed_database_group API.
22988
22988
  """
22989
22989
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22990
22990
  required_arguments = ['managedDatabaseGroupId']
@@ -23095,7 +23095,7 @@ class DbManagementClient(object):
23095
23095
  :rtype: :class:`~oci.response.Response`
23096
23096
 
23097
23097
  :example:
23098
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/reset_database_parameters.py.html>`__ to see an example of how to use reset_database_parameters API.
23098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/reset_database_parameters.py.html>`__ to see an example of how to use reset_database_parameters API.
23099
23099
  """
23100
23100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23101
23101
  required_arguments = ['managedDatabaseId']
@@ -23211,7 +23211,7 @@ class DbManagementClient(object):
23211
23211
  :rtype: :class:`~oci.response.Response`
23212
23212
 
23213
23213
  :example:
23214
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/resize_data_file.py.html>`__ to see an example of how to use resize_data_file API.
23214
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/resize_data_file.py.html>`__ to see an example of how to use resize_data_file API.
23215
23215
  """
23216
23216
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23217
23217
  required_arguments = ['managedDatabaseId', 'tablespaceName']
@@ -23329,7 +23329,7 @@ class DbManagementClient(object):
23329
23329
  :rtype: :class:`~oci.response.Response`
23330
23330
 
23331
23331
  :example:
23332
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/run_historic_addm.py.html>`__ to see an example of how to use run_historic_addm API.
23332
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/run_historic_addm.py.html>`__ to see an example of how to use run_historic_addm API.
23333
23333
  """
23334
23334
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23335
23335
  required_arguments = ['managedDatabaseId']
@@ -23491,7 +23491,7 @@ class DbManagementClient(object):
23491
23491
  :rtype: :class:`~oci.response.Response`
23492
23492
 
23493
23493
  :example:
23494
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_cpu_usages.py.html>`__ to see an example of how to use summarize_awr_db_cpu_usages API.
23494
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_cpu_usages.py.html>`__ to see an example of how to use summarize_awr_db_cpu_usages API.
23495
23495
  """
23496
23496
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23497
23497
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -23699,7 +23699,7 @@ class DbManagementClient(object):
23699
23699
  :rtype: :class:`~oci.response.Response`
23700
23700
 
23701
23701
  :example:
23702
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_metrics.py.html>`__ to see an example of how to use summarize_awr_db_metrics API.
23702
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_metrics.py.html>`__ to see an example of how to use summarize_awr_db_metrics API.
23703
23703
  """
23704
23704
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23705
23705
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -23903,7 +23903,7 @@ class DbManagementClient(object):
23903
23903
  :rtype: :class:`~oci.response.Response`
23904
23904
 
23905
23905
  :example:
23906
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_parameter_changes.py.html>`__ to see an example of how to use summarize_awr_db_parameter_changes API.
23906
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_parameter_changes.py.html>`__ to see an example of how to use summarize_awr_db_parameter_changes API.
23907
23907
  """
23908
23908
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23909
23909
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -24131,7 +24131,7 @@ class DbManagementClient(object):
24131
24131
  :rtype: :class:`~oci.response.Response`
24132
24132
 
24133
24133
  :example:
24134
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_parameters.py.html>`__ to see an example of how to use summarize_awr_db_parameters API.
24134
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_parameters.py.html>`__ to see an example of how to use summarize_awr_db_parameters API.
24135
24135
  """
24136
24136
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24137
24137
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -24342,7 +24342,7 @@ class DbManagementClient(object):
24342
24342
  :rtype: :class:`~oci.response.Response`
24343
24343
 
24344
24344
  :example:
24345
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_snapshot_ranges.py.html>`__ to see an example of how to use summarize_awr_db_snapshot_ranges API.
24345
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_snapshot_ranges.py.html>`__ to see an example of how to use summarize_awr_db_snapshot_ranges API.
24346
24346
  """
24347
24347
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24348
24348
  required_arguments = ['managedDatabaseId']
@@ -24534,7 +24534,7 @@ class DbManagementClient(object):
24534
24534
  :rtype: :class:`~oci.response.Response`
24535
24535
 
24536
24536
  :example:
24537
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_sysstats.py.html>`__ to see an example of how to use summarize_awr_db_sysstats API.
24537
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_sysstats.py.html>`__ to see an example of how to use summarize_awr_db_sysstats API.
24538
24538
  """
24539
24539
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24540
24540
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -24732,7 +24732,7 @@ class DbManagementClient(object):
24732
24732
  :rtype: :class:`~oci.response.Response`
24733
24733
 
24734
24734
  :example:
24735
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_top_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_top_wait_events API.
24735
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_top_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_top_wait_events API.
24736
24736
  """
24737
24737
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24738
24738
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -24947,7 +24947,7 @@ class DbManagementClient(object):
24947
24947
  :rtype: :class:`~oci.response.Response`
24948
24948
 
24949
24949
  :example:
24950
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_wait_event_buckets.py.html>`__ to see an example of how to use summarize_awr_db_wait_event_buckets API.
24950
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_wait_event_buckets.py.html>`__ to see an example of how to use summarize_awr_db_wait_event_buckets API.
24951
24951
  """
24952
24952
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24953
24953
  required_arguments = ['managedDatabaseId', 'awrDbId', 'name']
@@ -25158,7 +25158,7 @@ class DbManagementClient(object):
25158
25158
  :rtype: :class:`~oci.response.Response`
25159
25159
 
25160
25160
  :example:
25161
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_awr_db_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_wait_events API.
25161
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_awr_db_wait_events.py.html>`__ to see an example of how to use summarize_awr_db_wait_events API.
25162
25162
  """
25163
25163
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25164
25164
  required_arguments = ['managedDatabaseId', 'awrDbId']
@@ -25331,7 +25331,7 @@ class DbManagementClient(object):
25331
25331
  :rtype: :class:`~oci.response.Response`
25332
25332
 
25333
25333
  :example:
25334
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_external_asm_metrics.py.html>`__ to see an example of how to use summarize_external_asm_metrics API.
25334
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_external_asm_metrics.py.html>`__ to see an example of how to use summarize_external_asm_metrics API.
25335
25335
  """
25336
25336
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25337
25337
  required_arguments = ['externalAsmId', 'startTime', 'endTime']
@@ -25463,7 +25463,7 @@ class DbManagementClient(object):
25463
25463
  :rtype: :class:`~oci.response.Response`
25464
25464
 
25465
25465
  :example:
25466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_external_cluster_metrics.py.html>`__ to see an example of how to use summarize_external_cluster_metrics API.
25466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_external_cluster_metrics.py.html>`__ to see an example of how to use summarize_external_cluster_metrics API.
25467
25467
  """
25468
25468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25469
25469
  required_arguments = ['externalClusterId', 'startTime', 'endTime']
@@ -25595,7 +25595,7 @@ class DbManagementClient(object):
25595
25595
  :rtype: :class:`~oci.response.Response`
25596
25596
 
25597
25597
  :example:
25598
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_external_db_node_metrics.py.html>`__ to see an example of how to use summarize_external_db_node_metrics API.
25598
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_external_db_node_metrics.py.html>`__ to see an example of how to use summarize_external_db_node_metrics API.
25599
25599
  """
25600
25600
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25601
25601
  required_arguments = ['externalDbNodeId', 'startTime', 'endTime']
@@ -25727,7 +25727,7 @@ class DbManagementClient(object):
25727
25727
  :rtype: :class:`~oci.response.Response`
25728
25728
 
25729
25729
  :example:
25730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_external_db_system_availability_metrics.py.html>`__ to see an example of how to use summarize_external_db_system_availability_metrics API.
25730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_external_db_system_availability_metrics.py.html>`__ to see an example of how to use summarize_external_db_system_availability_metrics API.
25731
25731
  """
25732
25732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25733
25733
  required_arguments = ['externalDbSystemId', 'startTime', 'endTime']
@@ -25859,7 +25859,7 @@ class DbManagementClient(object):
25859
25859
  :rtype: :class:`~oci.response.Response`
25860
25860
 
25861
25861
  :example:
25862
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_external_listener_metrics.py.html>`__ to see an example of how to use summarize_external_listener_metrics API.
25862
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_external_listener_metrics.py.html>`__ to see an example of how to use summarize_external_listener_metrics API.
25863
25863
  """
25864
25864
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25865
25865
  required_arguments = ['externalListenerId', 'startTime', 'endTime']
@@ -26009,7 +26009,7 @@ class DbManagementClient(object):
26009
26009
  :rtype: :class:`~oci.response.Response`
26010
26010
 
26011
26011
  :example:
26012
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_job_executions_statuses.py.html>`__ to see an example of how to use summarize_job_executions_statuses API.
26012
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_job_executions_statuses.py.html>`__ to see an example of how to use summarize_job_executions_statuses API.
26013
26013
  """
26014
26014
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26015
26015
  required_arguments = ['compartmentId', 'startTime', 'endTime']
@@ -26146,7 +26146,7 @@ class DbManagementClient(object):
26146
26146
  :rtype: :class:`~oci.response.Response`
26147
26147
 
26148
26148
  :example:
26149
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_managed_database_availability_metrics.py.html>`__ to see an example of how to use summarize_managed_database_availability_metrics API.
26149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_managed_database_availability_metrics.py.html>`__ to see an example of how to use summarize_managed_database_availability_metrics API.
26150
26150
  """
26151
26151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26152
26152
  required_arguments = ['managedDatabaseId', 'startTime', 'endTime']
@@ -26265,7 +26265,7 @@ class DbManagementClient(object):
26265
26265
  :rtype: :class:`~oci.response.Response`
26266
26266
 
26267
26267
  :example:
26268
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_sql_plan_baselines.py.html>`__ to see an example of how to use summarize_sql_plan_baselines API.
26268
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_sql_plan_baselines.py.html>`__ to see an example of how to use summarize_sql_plan_baselines API.
26269
26269
  """
26270
26270
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26271
26271
  required_arguments = ['managedDatabaseId']
@@ -26382,7 +26382,7 @@ class DbManagementClient(object):
26382
26382
  :rtype: :class:`~oci.response.Response`
26383
26383
 
26384
26384
  :example:
26385
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/summarize_sql_plan_baselines_by_last_execution.py.html>`__ to see an example of how to use summarize_sql_plan_baselines_by_last_execution API.
26385
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/summarize_sql_plan_baselines_by_last_execution.py.html>`__ to see an example of how to use summarize_sql_plan_baselines_by_last_execution API.
26386
26386
  """
26387
26387
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26388
26388
  required_arguments = ['managedDatabaseId']
@@ -26497,7 +26497,7 @@ class DbManagementClient(object):
26497
26497
  :rtype: :class:`~oci.response.Response`
26498
26498
 
26499
26499
  :example:
26500
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/test_named_credential.py.html>`__ to see an example of how to use test_named_credential API.
26500
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/test_named_credential.py.html>`__ to see an example of how to use test_named_credential API.
26501
26501
  """
26502
26502
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26503
26503
  required_arguments = ['namedCredentialId']
@@ -26603,7 +26603,7 @@ class DbManagementClient(object):
26603
26603
  :rtype: :class:`~oci.response.Response`
26604
26604
 
26605
26605
  :example:
26606
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/test_preferred_credential.py.html>`__ to see an example of how to use test_preferred_credential API.
26606
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/test_preferred_credential.py.html>`__ to see an example of how to use test_preferred_credential API.
26607
26607
  """
26608
26608
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26609
26609
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -26715,7 +26715,7 @@ class DbManagementClient(object):
26715
26715
  :rtype: :class:`~oci.response.Response`
26716
26716
 
26717
26717
  :example:
26718
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_db_management_private_endpoint.py.html>`__ to see an example of how to use update_db_management_private_endpoint API.
26718
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_db_management_private_endpoint.py.html>`__ to see an example of how to use update_db_management_private_endpoint API.
26719
26719
  """
26720
26720
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26721
26721
  required_arguments = ['dbManagementPrivateEndpointId']
@@ -26827,7 +26827,7 @@ class DbManagementClient(object):
26827
26827
  :rtype: :class:`~oci.response.Response`
26828
26828
 
26829
26829
  :example:
26830
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_asm.py.html>`__ to see an example of how to use update_external_asm API.
26830
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_asm.py.html>`__ to see an example of how to use update_external_asm API.
26831
26831
  """
26832
26832
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26833
26833
  required_arguments = ['externalAsmId']
@@ -26937,7 +26937,7 @@ class DbManagementClient(object):
26937
26937
  :rtype: :class:`~oci.response.Response`
26938
26938
 
26939
26939
  :example:
26940
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_asm_instance.py.html>`__ to see an example of how to use update_external_asm_instance API.
26940
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_asm_instance.py.html>`__ to see an example of how to use update_external_asm_instance API.
26941
26941
  """
26942
26942
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26943
26943
  required_arguments = ['externalAsmInstanceId']
@@ -27049,7 +27049,7 @@ class DbManagementClient(object):
27049
27049
  :rtype: :class:`~oci.response.Response`
27050
27050
 
27051
27051
  :example:
27052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_cluster.py.html>`__ to see an example of how to use update_external_cluster API.
27052
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_cluster.py.html>`__ to see an example of how to use update_external_cluster API.
27053
27053
  """
27054
27054
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27055
27055
  required_arguments = ['externalClusterId']
@@ -27159,7 +27159,7 @@ class DbManagementClient(object):
27159
27159
  :rtype: :class:`~oci.response.Response`
27160
27160
 
27161
27161
  :example:
27162
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_cluster_instance.py.html>`__ to see an example of how to use update_external_cluster_instance API.
27162
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_cluster_instance.py.html>`__ to see an example of how to use update_external_cluster_instance API.
27163
27163
  """
27164
27164
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27165
27165
  required_arguments = ['externalClusterInstanceId']
@@ -27269,7 +27269,7 @@ class DbManagementClient(object):
27269
27269
  :rtype: :class:`~oci.response.Response`
27270
27270
 
27271
27271
  :example:
27272
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_db_home.py.html>`__ to see an example of how to use update_external_db_home API.
27272
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_db_home.py.html>`__ to see an example of how to use update_external_db_home API.
27273
27273
  """
27274
27274
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27275
27275
  required_arguments = ['externalDbHomeId']
@@ -27381,7 +27381,7 @@ class DbManagementClient(object):
27381
27381
  :rtype: :class:`~oci.response.Response`
27382
27382
 
27383
27383
  :example:
27384
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_db_node.py.html>`__ to see an example of how to use update_external_db_node API.
27384
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_db_node.py.html>`__ to see an example of how to use update_external_db_node API.
27385
27385
  """
27386
27386
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27387
27387
  required_arguments = ['externalDbNodeId']
@@ -27491,7 +27491,7 @@ class DbManagementClient(object):
27491
27491
  :rtype: :class:`~oci.response.Response`
27492
27492
 
27493
27493
  :example:
27494
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_db_system.py.html>`__ to see an example of how to use update_external_db_system API.
27494
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_db_system.py.html>`__ to see an example of how to use update_external_db_system API.
27495
27495
  """
27496
27496
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27497
27497
  required_arguments = ['externalDbSystemId']
@@ -27603,7 +27603,7 @@ class DbManagementClient(object):
27603
27603
  :rtype: :class:`~oci.response.Response`
27604
27604
 
27605
27605
  :example:
27606
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_db_system_connector.py.html>`__ to see an example of how to use update_external_db_system_connector API.
27606
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_db_system_connector.py.html>`__ to see an example of how to use update_external_db_system_connector API.
27607
27607
  """
27608
27608
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27609
27609
  required_arguments = ['externalDbSystemConnectorId']
@@ -27713,7 +27713,7 @@ class DbManagementClient(object):
27713
27713
  :rtype: :class:`~oci.response.Response`
27714
27714
 
27715
27715
  :example:
27716
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_db_system_discovery.py.html>`__ to see an example of how to use update_external_db_system_discovery API.
27716
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_db_system_discovery.py.html>`__ to see an example of how to use update_external_db_system_discovery API.
27717
27717
  """
27718
27718
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27719
27719
  required_arguments = ['externalDbSystemDiscoveryId']
@@ -27832,7 +27832,7 @@ class DbManagementClient(object):
27832
27832
  :rtype: :class:`~oci.response.Response`
27833
27833
 
27834
27834
  :example:
27835
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_exadata_infrastructure.py.html>`__ to see an example of how to use update_external_exadata_infrastructure API.
27835
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_exadata_infrastructure.py.html>`__ to see an example of how to use update_external_exadata_infrastructure API.
27836
27836
  """
27837
27837
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27838
27838
  required_arguments = ['externalExadataInfrastructureId']
@@ -27949,7 +27949,7 @@ class DbManagementClient(object):
27949
27949
  :rtype: :class:`~oci.response.Response`
27950
27950
 
27951
27951
  :example:
27952
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_exadata_storage_connector.py.html>`__ to see an example of how to use update_external_exadata_storage_connector API.
27952
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_exadata_storage_connector.py.html>`__ to see an example of how to use update_external_exadata_storage_connector API.
27953
27953
  """
27954
27954
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27955
27955
  required_arguments = ['externalExadataStorageConnectorId']
@@ -28061,7 +28061,7 @@ class DbManagementClient(object):
28061
28061
  :rtype: :class:`~oci.response.Response`
28062
28062
 
28063
28063
  :example:
28064
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_exadata_storage_grid.py.html>`__ to see an example of how to use update_external_exadata_storage_grid API.
28064
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_exadata_storage_grid.py.html>`__ to see an example of how to use update_external_exadata_storage_grid API.
28065
28065
  """
28066
28066
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28067
28067
  required_arguments = ['externalExadataStorageGridId']
@@ -28173,7 +28173,7 @@ class DbManagementClient(object):
28173
28173
  :rtype: :class:`~oci.response.Response`
28174
28174
 
28175
28175
  :example:
28176
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_exadata_storage_server.py.html>`__ to see an example of how to use update_external_exadata_storage_server API.
28176
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_exadata_storage_server.py.html>`__ to see an example of how to use update_external_exadata_storage_server API.
28177
28177
  """
28178
28178
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28179
28179
  required_arguments = ['externalExadataStorageServerId']
@@ -28285,7 +28285,7 @@ class DbManagementClient(object):
28285
28285
  :rtype: :class:`~oci.response.Response`
28286
28286
 
28287
28287
  :example:
28288
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_listener.py.html>`__ to see an example of how to use update_external_listener API.
28288
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_listener.py.html>`__ to see an example of how to use update_external_listener API.
28289
28289
  """
28290
28290
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28291
28291
  required_arguments = ['externalListenerId']
@@ -28393,7 +28393,7 @@ class DbManagementClient(object):
28393
28393
  :rtype: :class:`~oci.response.Response`
28394
28394
 
28395
28395
  :example:
28396
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_mysql_database.py.html>`__ to see an example of how to use update_external_mysql_database API.
28396
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_mysql_database.py.html>`__ to see an example of how to use update_external_mysql_database API.
28397
28397
  """
28398
28398
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28399
28399
  required_arguments = ['externalMySqlDatabaseId']
@@ -28503,7 +28503,7 @@ class DbManagementClient(object):
28503
28503
  :rtype: :class:`~oci.response.Response`
28504
28504
 
28505
28505
  :example:
28506
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_external_mysql_database_connector.py.html>`__ to see an example of how to use update_external_mysql_database_connector API.
28506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_external_mysql_database_connector.py.html>`__ to see an example of how to use update_external_mysql_database_connector API.
28507
28507
  """
28508
28508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28509
28509
  required_arguments = ['externalMySqlDatabaseConnectorId']
@@ -28613,7 +28613,7 @@ class DbManagementClient(object):
28613
28613
  :rtype: :class:`~oci.response.Response`
28614
28614
 
28615
28615
  :example:
28616
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_job.py.html>`__ to see an example of how to use update_job API.
28616
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_job.py.html>`__ to see an example of how to use update_job API.
28617
28617
  """
28618
28618
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28619
28619
  required_arguments = ['jobId']
@@ -28725,7 +28725,7 @@ class DbManagementClient(object):
28725
28725
  :rtype: :class:`~oci.response.Response`
28726
28726
 
28727
28727
  :example:
28728
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_managed_database.py.html>`__ to see an example of how to use update_managed_database API.
28728
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_managed_database.py.html>`__ to see an example of how to use update_managed_database API.
28729
28729
  """
28730
28730
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28731
28731
  required_arguments = ['managedDatabaseId']
@@ -28837,7 +28837,7 @@ class DbManagementClient(object):
28837
28837
  :rtype: :class:`~oci.response.Response`
28838
28838
 
28839
28839
  :example:
28840
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_managed_database_group.py.html>`__ to see an example of how to use update_managed_database_group API.
28840
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_managed_database_group.py.html>`__ to see an example of how to use update_managed_database_group API.
28841
28841
  """
28842
28842
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28843
28843
  required_arguments = ['managedDatabaseGroupId']
@@ -28949,7 +28949,7 @@ class DbManagementClient(object):
28949
28949
  :rtype: :class:`~oci.response.Response`
28950
28950
 
28951
28951
  :example:
28952
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_named_credential.py.html>`__ to see an example of how to use update_named_credential API.
28952
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_named_credential.py.html>`__ to see an example of how to use update_named_credential API.
28953
28953
  """
28954
28954
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28955
28955
  required_arguments = ['namedCredentialId']
@@ -29064,7 +29064,7 @@ class DbManagementClient(object):
29064
29064
  :rtype: :class:`~oci.response.Response`
29065
29065
 
29066
29066
  :example:
29067
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_preferred_credential.py.html>`__ to see an example of how to use update_preferred_credential API.
29067
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_preferred_credential.py.html>`__ to see an example of how to use update_preferred_credential API.
29068
29068
  """
29069
29069
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29070
29070
  required_arguments = ['managedDatabaseId', 'credentialName']
@@ -29173,7 +29173,7 @@ class DbManagementClient(object):
29173
29173
  :rtype: :class:`~oci.response.Response`
29174
29174
 
29175
29175
  :example:
29176
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/databasemanagement/update_tablespace.py.html>`__ to see an example of how to use update_tablespace API.
29176
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/databasemanagement/update_tablespace.py.html>`__ to see an example of how to use update_tablespace API.
29177
29177
  """
29178
29178
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29179
29179
  required_arguments = ['managedDatabaseId', 'tablespaceName']