oci 2.151.0__py3-none-any.whl → 2.152.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (325) hide show
  1. oci/__init__.py +2 -2
  2. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  3. oci/addons/__init__.py +20 -0
  4. oci/addons/adk/__init__.py +13 -0
  5. oci/addons/adk/agent.py +852 -0
  6. oci/addons/adk/agent_client.py +682 -0
  7. oci/addons/adk/agent_error.py +36 -0
  8. oci/addons/adk/auth/__init__.py +3 -0
  9. oci/addons/adk/auth/auth_provider.py +28 -0
  10. oci/addons/adk/auth/factory.py +78 -0
  11. oci/addons/adk/auth/oci/__init__.py +3 -0
  12. oci/addons/adk/auth/oci/instance_principal.py +53 -0
  13. oci/addons/adk/auth/oci/resource_principal.py +53 -0
  14. oci/addons/adk/auth/oci/session.py +91 -0
  15. oci/addons/adk/auth/oci/user_principal.py +64 -0
  16. oci/addons/adk/constants.py +17 -0
  17. oci/addons/adk/logger.py +163 -0
  18. oci/addons/adk/run/__init__.py +3 -0
  19. oci/addons/adk/run/response.py +56 -0
  20. oci/addons/adk/run/types.py +32 -0
  21. oci/addons/adk/tool/__init__.py +13 -0
  22. oci/addons/adk/tool/function_tool.py +334 -0
  23. oci/addons/adk/tool/prebuilt/__init__.py +8 -0
  24. oci/addons/adk/tool/prebuilt/agentic_rag_tool.py +49 -0
  25. oci/addons/adk/tool/prebuilt/calculator_toolkit.py +104 -0
  26. oci/addons/adk/tool/tool.py +37 -0
  27. oci/addons/adk/tool/toolkit.py +189 -0
  28. oci/addons/adk/tool/utils.py +120 -0
  29. oci/addons/adk/util.py +325 -0
  30. oci/adm/application_dependency_management_client.py +36 -36
  31. oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
  32. oci/ai_document/ai_service_document_client.py +26 -26
  33. oci/ai_language/ai_service_language_client.py +44 -44
  34. oci/ai_speech/ai_service_speech_client.py +19 -19
  35. oci/ai_vision/ai_service_vision_client.py +28 -28
  36. oci/analytics/analytics_client.py +24 -24
  37. oci/announcements_service/announcement_client.py +5 -5
  38. oci/announcements_service/announcement_subscription_client.py +9 -9
  39. oci/announcements_service/announcements_preferences_client.py +4 -4
  40. oci/announcements_service/service_client.py +1 -1
  41. oci/apigateway/api_gateway_client.py +21 -21
  42. oci/apigateway/deployment_client.py +6 -6
  43. oci/apigateway/gateway_client.py +6 -6
  44. oci/apigateway/subscribers_client.py +6 -6
  45. oci/apigateway/usage_plans_client.py +6 -6
  46. oci/apigateway/work_requests_client.py +5 -5
  47. oci/apm_config/config_client.py +12 -12
  48. oci/apm_control_plane/apm_domain_client.py +14 -14
  49. oci/apm_synthetics/apm_synthetic_client.py +28 -28
  50. oci/apm_traces/attributes_client.py +8 -8
  51. oci/apm_traces/query_client.py +2 -2
  52. oci/apm_traces/trace_client.py +4 -4
  53. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  54. oci/artifacts/artifacts_client.py +32 -32
  55. oci/audit/audit_client.py +3 -3
  56. oci/autoscaling/auto_scaling_client.py +11 -11
  57. oci/bastion/bastion_client.py +15 -15
  58. oci/bds/bds_client.py +84 -84
  59. oci/blockchain/blockchain_platform_client.py +27 -27
  60. oci/budget/budget_client.py +10 -10
  61. oci/capacity_management/capacity_management_client.py +32 -32
  62. oci/certificates/certificates_client.py +5 -5
  63. oci/certificates_management/certificates_management_client.py +32 -32
  64. oci/cims/incident_client.py +6 -6
  65. oci/cloud_bridge/common_client.py +5 -5
  66. oci/cloud_bridge/discovery_client.py +15 -15
  67. oci/cloud_bridge/inventory_client.py +16 -16
  68. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  69. oci/cloud_guard/cloud_guard_client.py +155 -155
  70. oci/cloud_migrations/migration_client.py +43 -43
  71. oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
  72. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  73. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  74. oci/compute_instance_agent/plugin_client.py +2 -2
  75. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  76. oci/container_engine/container_engine_client.py +46 -46
  77. oci/container_instances/container_instance_client.py +18 -18
  78. oci/core/blockstorage_client.py +60 -60
  79. oci/core/compute_client.py +117 -117
  80. oci/core/compute_management_client.py +32 -32
  81. oci/core/virtual_network_client.py +258 -258
  82. oci/dashboard_service/dashboard_client.py +6 -6
  83. oci/dashboard_service/dashboard_group_client.py +6 -6
  84. oci/data_catalog/data_catalog_client.py +149 -149
  85. oci/data_flow/data_flow_client.py +45 -45
  86. oci/data_integration/data_integration_client.py +163 -163
  87. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  88. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  89. oci/data_safe/data_safe_client.py +317 -317
  90. oci/data_science/data_science_client.py +145 -145
  91. oci/database/database_client.py +415 -415
  92. oci/database_management/db_management_client.py +356 -230
  93. oci/database_management/db_management_client_composite_operations.py +44 -0
  94. oci/database_management/diagnosability_client.py +4 -4
  95. oci/database_management/managed_my_sql_databases_client.py +7 -247
  96. oci/database_management/models/__init__.py +0 -4
  97. oci/database_management/models/database_diagnostics_and_management_feature_details.py +35 -4
  98. oci/database_management/models/disable_database_management_feature_details.py +33 -2
  99. oci/database_management/models/disable_external_container_database_management_feature_details.py +33 -2
  100. oci/database_management/models/discovered_external_database.py +64 -2
  101. oci/database_management/models/exadata_infrastructure_lifecycle_state_values.py +40 -36
  102. oci/database_management/models/external_database_diagnostics_and_management_feature_details.py +64 -2
  103. oci/database_management/models/managed_database.py +2 -4
  104. oci/database_management/models/managed_database_summary.py +2 -4
  105. oci/database_management/models/modify_database_management_feature_details.py +1 -1
  106. oci/database_management/perfhub_client.py +1 -1
  107. oci/database_management/sql_tuning_client.py +17 -17
  108. oci/database_migration/database_migration_client.py +42 -42
  109. oci/database_tools/database_tools_client.py +23 -23
  110. oci/dblm/db_life_cycle_management_client.py +14 -14
  111. oci/delegate_access_control/delegate_access_control_client.py +26 -26
  112. oci/delegate_access_control/work_request_client.py +4 -4
  113. oci/demand_signal/occ_demand_signal_client.py +7 -7
  114. oci/desktops/desktop_service_client.py +21 -21
  115. oci/devops/devops_client.py +141 -141
  116. oci/disaster_recovery/disaster_recovery_client.py +31 -31
  117. oci/dns/dns_client.py +54 -54
  118. oci/dts/appliance_export_job_client.py +6 -6
  119. oci/dts/shipping_vendors_client.py +1 -1
  120. oci/dts/transfer_appliance_client.py +8 -8
  121. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  122. oci/dts/transfer_device_client.py +5 -5
  123. oci/dts/transfer_job_client.py +6 -6
  124. oci/dts/transfer_package_client.py +7 -7
  125. oci/em_warehouse/em_warehouse_client.py +13 -13
  126. oci/email/email_client.py +31 -31
  127. oci/email_data_plane/email_dp_client.py +1 -1
  128. oci/events/events_client.py +6 -6
  129. oci/file_storage/file_storage_client.py +74 -74
  130. oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
  131. oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
  132. oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
  133. oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
  134. oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
  135. oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
  136. oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
  137. oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
  138. oci/fleet_software_update/fleet_software_update_client.py +46 -46
  139. oci/functions/functions_invoke_client.py +1 -1
  140. oci/functions/functions_management_client.py +16 -16
  141. oci/fusion_apps/fusion_applications_client.py +41 -41
  142. oci/generative_ai/generative_ai_client.py +22 -22
  143. oci/generative_ai/models/create_dedicated_ai_cluster_details.py +4 -0
  144. oci/generative_ai/models/dedicated_ai_cluster.py +11 -3
  145. oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
  146. oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
  147. oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
  148. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  149. oci/globally_distributed_database/sharded_database_service_client.py +58 -58
  150. oci/golden_gate/golden_gate_client.py +89 -89
  151. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  152. oci/governance_rules_control_plane/work_request_client.py +5 -5
  153. oci/healthchecks/health_checks_client.py +17 -17
  154. oci/identity/identity_client.py +145 -145
  155. oci/identity_data_plane/dataplane_client.py +2 -2
  156. oci/identity_domains/identity_domains_client.py +311 -311
  157. oci/integration/integration_instance_client.py +19 -19
  158. oci/jms/java_management_service_client.py +79 -79
  159. oci/jms_java_downloads/java_download_client.py +25 -25
  160. oci/key_management/ekm_client.py +5 -5
  161. oci/key_management/kms_crypto_client.py +6 -6
  162. oci/key_management/kms_hsm_cluster_client.py +12 -12
  163. oci/key_management/kms_management_client.py +21 -21
  164. oci/key_management/kms_vault_client.py +14 -14
  165. oci/license_manager/license_manager_client.py +18 -18
  166. oci/limits/limits_client.py +4 -4
  167. oci/limits/quotas_client.py +7 -7
  168. oci/load_balancer/load_balancer_client.py +61 -61
  169. oci/lockbox/lockbox_client.py +24 -24
  170. oci/log_analytics/log_analytics_client.py +200 -200
  171. oci/logging/logging_management_client.py +30 -30
  172. oci/loggingingestion/logging_client.py +1 -1
  173. oci/loggingsearch/log_search_client.py +1 -1
  174. oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
  175. oci/management_agent/management_agent_client.py +28 -28
  176. oci/management_dashboard/dashx_apis_client.py +14 -14
  177. oci/marketplace/account_client.py +2 -2
  178. oci/marketplace/marketplace_client.py +30 -30
  179. oci/marketplace_private_offer/attachment_client.py +5 -5
  180. oci/marketplace_private_offer/offer_client.py +6 -6
  181. oci/marketplace_publisher/attachment_client.py +5 -5
  182. oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
  183. oci/marketplace_publisher/offer_client.py +6 -6
  184. oci/media_services/media_services_client.py +60 -60
  185. oci/media_services/media_stream_client.py +2 -2
  186. oci/mngdmac/mac_device_client.py +3 -3
  187. oci/mngdmac/mac_order_client.py +11 -11
  188. oci/model_deployment/__init__.py +14 -0
  189. oci/model_deployment/model_deployment_client.py +331 -0
  190. oci/model_deployment/model_deployment_client_composite_operations.py +26 -0
  191. oci/model_deployment/models/__init__.py +14 -0
  192. oci/model_deployment/models/inference_result.py +70 -0
  193. oci/monitoring/monitoring_client.py +18 -18
  194. oci/mysql/channels_client.py +7 -7
  195. oci/mysql/db_backups_client.py +7 -7
  196. oci/mysql/db_system_client.py +17 -17
  197. oci/mysql/mysqlaas_client.py +7 -7
  198. oci/mysql/replicas_client.py +5 -5
  199. oci/mysql/work_requests_client.py +4 -4
  200. oci/network_firewall/network_firewall_client.py +86 -86
  201. oci/network_load_balancer/network_load_balancer_client.py +35 -35
  202. oci/nosql/nosql_client.py +24 -24
  203. oci/object_storage/object_storage_client.py +55 -55
  204. oci/oce/oce_instance_client.py +10 -10
  205. oci/oci_control_center/occ_metrics_client.py +3 -3
  206. oci/ocvp/cluster_client.py +5 -5
  207. oci/ocvp/esxi_host_client.py +8 -8
  208. oci/ocvp/sddc_client.py +14 -14
  209. oci/ocvp/work_request_client.py +4 -4
  210. oci/oda/management_client.py +59 -59
  211. oci/oda/oda_client.py +17 -17
  212. oci/oda/odapackage_client.py +7 -7
  213. oci/onesubscription/billing_schedule_client.py +1 -1
  214. oci/onesubscription/commitment_client.py +2 -2
  215. oci/onesubscription/computed_usage_client.py +3 -3
  216. oci/onesubscription/invoice_summary_client.py +2 -2
  217. oci/onesubscription/organization_subscription_client.py +1 -1
  218. oci/onesubscription/ratecard_client.py +1 -1
  219. oci/onesubscription/subscribed_service_client.py +2 -2
  220. oci/onesubscription/subscription_client.py +1 -1
  221. oci/ons/notification_control_plane_client.py +6 -6
  222. oci/ons/notification_data_plane_client.py +10 -10
  223. oci/opa/opa_instance_client.py +13 -13
  224. oci/opensearch/models/__init__.py +2 -0
  225. oci/opensearch/models/create_opensearch_cluster_details.py +291 -0
  226. oci/opensearch/models/create_opensearch_cluster_pipeline_details.py +31 -0
  227. oci/opensearch/models/opensearch_cluster.py +291 -0
  228. oci/opensearch/models/opensearch_cluster_pipeline.py +31 -0
  229. oci/opensearch/models/opensearch_cluster_pipeline_summary.py +31 -0
  230. oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py +31 -0
  231. oci/opensearch/models/resize_opensearch_cluster_vertical_details.py +217 -0
  232. oci/opensearch/models/shapes_details.py +70 -0
  233. oci/opensearch/models/update_cluster_specs_details.py +186 -0
  234. oci/opensearch/models/update_opensearch_cluster_pipeline_details.py +31 -0
  235. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  236. oci/opensearch/opensearch_cluster_client.py +87 -16
  237. oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
  238. oci/operator_access_control/access_requests_client.py +10 -10
  239. oci/operator_access_control/operator_actions_client.py +2 -2
  240. oci/operator_access_control/operator_control_assignment_client.py +8 -8
  241. oci/operator_access_control/operator_control_client.py +6 -6
  242. oci/opsi/operations_insights_client.py +181 -181
  243. oci/optimizer/optimizer_client.py +26 -26
  244. oci/os_management/event_client.py +8 -8
  245. oci/os_management/os_management_client.py +69 -69
  246. oci/os_management_hub/event_client.py +8 -8
  247. oci/os_management_hub/lifecycle_environment_client.py +13 -13
  248. oci/os_management_hub/managed_instance_client.py +33 -33
  249. oci/os_management_hub/managed_instance_group_client.py +26 -26
  250. oci/os_management_hub/management_station_client.py +10 -10
  251. oci/os_management_hub/onboarding_client.py +13 -13
  252. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  253. oci/os_management_hub/scheduled_job_client.py +7 -7
  254. oci/os_management_hub/software_source_client.py +33 -33
  255. oci/os_management_hub/work_request_client.py +5 -5
  256. oci/osp_gateway/address_rule_service_client.py +1 -1
  257. oci/osp_gateway/address_service_client.py +2 -2
  258. oci/osp_gateway/invoice_service_client.py +5 -5
  259. oci/osp_gateway/subscription_service_client.py +5 -5
  260. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  261. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  262. oci/osub_subscription/commitment_client.py +2 -2
  263. oci/osub_subscription/ratecard_client.py +1 -1
  264. oci/osub_subscription/subscription_client.py +1 -1
  265. oci/osub_usage/computed_usage_client.py +3 -3
  266. oci/psql/postgresql_client.py +34 -34
  267. oci/queue/queue_admin_client.py +11 -11
  268. oci/queue/queue_client.py +8 -8
  269. oci/recovery/database_recovery_client.py +26 -26
  270. oci/redis/redis_cluster_client.py +12 -12
  271. oci/resource_manager/resource_manager_client.py +52 -52
  272. oci/resource_scheduler/schedule_client.py +14 -14
  273. oci/resource_search/resource_search_client.py +3 -3
  274. oci/rover/rover_bundle_client.py +8 -8
  275. oci/rover/rover_cluster_client.py +8 -8
  276. oci/rover/rover_entitlement_client.py +6 -6
  277. oci/rover/rover_node_client.py +15 -15
  278. oci/rover/shape_client.py +1 -1
  279. oci/rover/work_requests_client.py +5 -5
  280. oci/sch/connector_plugins_client.py +2 -2
  281. oci/sch/service_connector_client.py +12 -12
  282. oci/secrets/secrets_client.py +3 -3
  283. oci/security_attribute/security_attribute_client.py +18 -18
  284. oci/service_catalog/service_catalog_client.py +26 -26
  285. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  286. oci/service_mesh/service_mesh_client.py +48 -48
  287. oci/stack_monitoring/stack_monitoring_client.py +87 -87
  288. oci/streaming/stream_admin_client.py +18 -18
  289. oci/streaming/stream_client.py +8 -8
  290. oci/tenant_manager_control_plane/domain_client.py +5 -5
  291. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  292. oci/tenant_manager_control_plane/governance_client.py +2 -2
  293. oci/tenant_manager_control_plane/link_client.py +3 -3
  294. oci/tenant_manager_control_plane/orders_client.py +2 -2
  295. oci/tenant_manager_control_plane/organization_client.py +10 -10
  296. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  297. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  298. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  299. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  300. oci/threat_intelligence/threatintel_client.py +5 -5
  301. oci/usage/resources_client.py +2 -2
  302. oci/usage/rewards_client.py +6 -6
  303. oci/usage/usagelimits_client.py +1 -1
  304. oci/usage_api/usageapi_client.py +33 -33
  305. oci/vault/vaults_client.py +13 -13
  306. oci/vbs_inst/vbs_instance_client.py +10 -10
  307. oci/version.py +1 -1
  308. oci/visual_builder/vb_instance_client.py +14 -14
  309. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  310. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  311. oci/waa/waa_client.py +13 -13
  312. oci/waa/work_request_client.py +4 -4
  313. oci/waas/redirect_client.py +6 -6
  314. oci/waas/waas_client.py +66 -66
  315. oci/waf/waf_client.py +24 -24
  316. oci/work_requests/work_request_client.py +4 -4
  317. oci/zpr/zpr_client.py +15 -15
  318. {oci-2.151.0.dist-info → oci-2.152.0.dist-info}/METADATA +6 -1
  319. {oci-2.151.0.dist-info → oci-2.152.0.dist-info}/RECORD +323 -292
  320. oci/database_management/models/disable_external_mysql_associated_service_details.py +0 -144
  321. oci/database_management/models/enable_external_mysql_associated_service_details.py +0 -144
  322. {oci-2.151.0.dist-info → oci-2.152.0.dist-info}/LICENSE.txt +0 -0
  323. {oci-2.151.0.dist-info → oci-2.152.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  324. {oci-2.151.0.dist-info → oci-2.152.0.dist-info}/WHEEL +0 -0
  325. {oci-2.151.0.dist-info → oci-2.152.0.dist-info}/top_level.txt +0 -0
@@ -157,7 +157,7 @@ class DatabaseClient(object):
157
157
  :rtype: :class:`~oci.response.Response`
158
158
 
159
159
  :example:
160
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/activate_exadata_infrastructure.py.html>`__ to see an example of how to use activate_exadata_infrastructure API.
160
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/activate_exadata_infrastructure.py.html>`__ to see an example of how to use activate_exadata_infrastructure API.
161
161
  """
162
162
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
163
163
  required_arguments = ['exadataInfrastructureId']
@@ -280,7 +280,7 @@ class DatabaseClient(object):
280
280
  :rtype: :class:`~oci.response.Response`
281
281
 
282
282
  :example:
283
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/add_standby_autonomous_container_database.py.html>`__ to see an example of how to use add_standby_autonomous_container_database API.
283
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/add_standby_autonomous_container_database.py.html>`__ to see an example of how to use add_standby_autonomous_container_database API.
284
284
  """
285
285
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
286
286
  required_arguments = ['autonomousContainerDatabaseId']
@@ -397,7 +397,7 @@ class DatabaseClient(object):
397
397
  :rtype: :class:`~oci.response.Response`
398
398
 
399
399
  :example:
400
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
400
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/add_storage_capacity_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_cloud_exadata_infrastructure API.
401
401
  """
402
402
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
403
403
  required_arguments = ['cloudExadataInfrastructureId']
@@ -512,7 +512,7 @@ class DatabaseClient(object):
512
512
  :rtype: :class:`~oci.response.Response`
513
513
 
514
514
  :example:
515
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
515
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/add_storage_capacity_exadata_infrastructure.py.html>`__ to see an example of how to use add_storage_capacity_exadata_infrastructure API.
516
516
  """
517
517
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
518
518
  required_arguments = ['exadataInfrastructureId']
@@ -630,7 +630,7 @@ class DatabaseClient(object):
630
630
  :rtype: :class:`~oci.response.Response`
631
631
 
632
632
  :example:
633
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/add_virtual_machine_to_cloud_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_cloud_vm_cluster API.
633
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/add_virtual_machine_to_cloud_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_cloud_vm_cluster API.
634
634
  """
635
635
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
636
636
  required_arguments = ['cloudVmClusterId']
@@ -750,7 +750,7 @@ class DatabaseClient(object):
750
750
  :rtype: :class:`~oci.response.Response`
751
751
 
752
752
  :example:
753
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
753
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/add_virtual_machine_to_vm_cluster.py.html>`__ to see an example of how to use add_virtual_machine_to_vm_cluster API.
754
754
  """
755
755
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
756
756
  required_arguments = ['vmClusterId']
@@ -870,7 +870,7 @@ class DatabaseClient(object):
870
870
  :rtype: :class:`~oci.response.Response`
871
871
 
872
872
  :example:
873
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
873
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/autonomous_database_manual_refresh.py.html>`__ to see an example of how to use autonomous_database_manual_refresh API.
874
874
  """
875
875
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
876
876
  required_arguments = ['autonomousDatabaseId']
@@ -987,7 +987,7 @@ class DatabaseClient(object):
987
987
  :rtype: :class:`~oci.response.Response`
988
988
 
989
989
  :example:
990
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
990
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/cancel_backup.py.html>`__ to see an example of how to use cancel_backup API.
991
991
  """
992
992
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
993
993
  required_arguments = ['backupId']
@@ -1103,7 +1103,7 @@ class DatabaseClient(object):
1103
1103
  :rtype: :class:`~oci.response.Response`
1104
1104
 
1105
1105
  :example:
1106
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
1106
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/cancel_execution_window.py.html>`__ to see an example of how to use cancel_execution_window API.
1107
1107
  """
1108
1108
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1109
1109
  required_arguments = ['executionWindowId']
@@ -1220,7 +1220,7 @@ class DatabaseClient(object):
1220
1220
  :rtype: :class:`~oci.response.Response`
1221
1221
 
1222
1222
  :example:
1223
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
1223
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/cascading_delete_scheduling_plan.py.html>`__ to see an example of how to use cascading_delete_scheduling_plan API.
1224
1224
  """
1225
1225
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1226
1226
  required_arguments = ['schedulingPlanId']
@@ -1340,7 +1340,7 @@ class DatabaseClient(object):
1340
1340
  :rtype: :class:`~oci.response.Response`
1341
1341
 
1342
1342
  :example:
1343
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
1343
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_container_database_compartment.py.html>`__ to see an example of how to use change_autonomous_container_database_compartment API.
1344
1344
  """
1345
1345
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1346
1346
  required_arguments = ['autonomousContainerDatabaseId']
@@ -1462,7 +1462,7 @@ class DatabaseClient(object):
1462
1462
  :rtype: :class:`~oci.response.Response`
1463
1463
 
1464
1464
  :example:
1465
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1465
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_database_compartment.py.html>`__ to see an example of how to use change_autonomous_database_compartment API.
1466
1466
  """
1467
1467
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1468
1468
  required_arguments = ['autonomousDatabaseId']
@@ -1580,7 +1580,7 @@ class DatabaseClient(object):
1580
1580
  :rtype: :class:`~oci.response.Response`
1581
1581
 
1582
1582
  :example:
1583
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_autonomous_database_software_image_compartment.py.html>`__ to see an example of how to use change_autonomous_database_software_image_compartment API.
1583
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_database_software_image_compartment.py.html>`__ to see an example of how to use change_autonomous_database_software_image_compartment API.
1584
1584
  """
1585
1585
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1586
1586
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -1698,7 +1698,7 @@ class DatabaseClient(object):
1698
1698
  :rtype: :class:`~oci.response.Response`
1699
1699
 
1700
1700
  :example:
1701
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
1701
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_database_subscription.py.html>`__ to see an example of how to use change_autonomous_database_subscription API.
1702
1702
  """
1703
1703
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1704
1704
  required_arguments = ['autonomousDatabaseId']
@@ -1820,7 +1820,7 @@ class DatabaseClient(object):
1820
1820
  :rtype: :class:`~oci.response.Response`
1821
1821
 
1822
1822
  :example:
1823
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1823
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_autonomous_exadata_infrastructure_compartment API.
1824
1824
  """
1825
1825
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1826
1826
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -1938,7 +1938,7 @@ class DatabaseClient(object):
1938
1938
  :rtype: :class:`~oci.response.Response`
1939
1939
 
1940
1940
  :example:
1941
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1941
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_autonomous_vm_cluster_compartment API.
1942
1942
  """
1943
1943
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1944
1944
  required_arguments = ['autonomousVmClusterId']
@@ -2060,7 +2060,7 @@ class DatabaseClient(object):
2060
2060
  :rtype: :class:`~oci.response.Response`
2061
2061
 
2062
2062
  :example:
2063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
2063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_backup_destination_compartment.py.html>`__ to see an example of how to use change_backup_destination_compartment API.
2064
2064
  """
2065
2065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2066
2066
  required_arguments = ['backupDestinationId']
@@ -2178,7 +2178,7 @@ class DatabaseClient(object):
2178
2178
  :rtype: :class:`~oci.response.Response`
2179
2179
 
2180
2180
  :example:
2181
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
2181
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_autonomous_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_autonomous_vm_cluster_compartment API.
2182
2182
  """
2183
2183
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2184
2184
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -2298,7 +2298,7 @@ class DatabaseClient(object):
2298
2298
  :rtype: :class:`~oci.response.Response`
2299
2299
 
2300
2300
  :example:
2301
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
2301
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_compartment API.
2302
2302
  """
2303
2303
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2304
2304
  required_arguments = ['cloudExadataInfrastructureId']
@@ -2416,7 +2416,7 @@ class DatabaseClient(object):
2416
2416
  :rtype: :class:`~oci.response.Response`
2417
2417
 
2418
2418
  :example:
2419
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
2419
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_exadata_infrastructure_subscription.py.html>`__ to see an example of how to use change_cloud_exadata_infrastructure_subscription API.
2420
2420
  """
2421
2421
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2422
2422
  required_arguments = ['cloudExadataInfrastructureId']
@@ -2534,7 +2534,7 @@ class DatabaseClient(object):
2534
2534
  :rtype: :class:`~oci.response.Response`
2535
2535
 
2536
2536
  :example:
2537
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
2537
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_vm_cluster_compartment.py.html>`__ to see an example of how to use change_cloud_vm_cluster_compartment API.
2538
2538
  """
2539
2539
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2540
2540
  required_arguments = ['cloudVmClusterId']
@@ -2652,7 +2652,7 @@ class DatabaseClient(object):
2652
2652
  :rtype: :class:`~oci.response.Response`
2653
2653
 
2654
2654
  :example:
2655
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
2655
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_cloud_vm_cluster_subscription.py.html>`__ to see an example of how to use change_cloud_vm_cluster_subscription API.
2656
2656
  """
2657
2657
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2658
2658
  required_arguments = ['cloudVmClusterId']
@@ -2774,7 +2774,7 @@ class DatabaseClient(object):
2774
2774
  :rtype: :class:`~oci.response.Response`
2775
2775
 
2776
2776
  :example:
2777
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
2777
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_database_software_image_compartment.py.html>`__ to see an example of how to use change_database_software_image_compartment API.
2778
2778
  """
2779
2779
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2780
2780
  required_arguments = ['databaseSoftwareImageId']
@@ -2897,7 +2897,7 @@ class DatabaseClient(object):
2897
2897
  :rtype: :class:`~oci.response.Response`
2898
2898
 
2899
2899
  :example:
2900
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2900
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_dataguard_role.py.html>`__ to see an example of how to use change_dataguard_role API.
2901
2901
  """
2902
2902
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2903
2903
  required_arguments = ['autonomousContainerDatabaseId']
@@ -3028,7 +3028,7 @@ class DatabaseClient(object):
3028
3028
  :rtype: :class:`~oci.response.Response`
3029
3029
 
3030
3030
  :example:
3031
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
3031
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_db_system_compartment.py.html>`__ to see an example of how to use change_db_system_compartment API.
3032
3032
  """
3033
3033
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3034
3034
  required_arguments = ['dbSystemId']
@@ -3139,7 +3139,7 @@ class DatabaseClient(object):
3139
3139
  :rtype: :class:`~oci.response.Response`
3140
3140
 
3141
3141
  :example:
3142
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
3142
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_disaster_recovery_configuration.py.html>`__ to see an example of how to use change_disaster_recovery_configuration API.
3143
3143
  """
3144
3144
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3145
3145
  required_arguments = ['autonomousDatabaseId']
@@ -3256,7 +3256,7 @@ class DatabaseClient(object):
3256
3256
  :rtype: :class:`~oci.response.Response`
3257
3257
 
3258
3258
  :example:
3259
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_encryption_key_location.py.html>`__ to see an example of how to use change_encryption_key_location API.
3259
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_encryption_key_location.py.html>`__ to see an example of how to use change_encryption_key_location API.
3260
3260
  """
3261
3261
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3262
3262
  required_arguments = ['databaseId']
@@ -3375,7 +3375,7 @@ class DatabaseClient(object):
3375
3375
  :rtype: :class:`~oci.response.Response`
3376
3376
 
3377
3377
  :example:
3378
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
3378
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exadata_infrastructure_compartment.py.html>`__ to see an example of how to use change_exadata_infrastructure_compartment API.
3379
3379
  """
3380
3380
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3381
3381
  required_arguments = ['exadataInfrastructureId']
@@ -3493,7 +3493,7 @@ class DatabaseClient(object):
3493
3493
  :rtype: :class:`~oci.response.Response`
3494
3494
 
3495
3495
  :example:
3496
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
3496
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exadb_vm_cluster_compartment.py.html>`__ to see an example of how to use change_exadb_vm_cluster_compartment API.
3497
3497
  """
3498
3498
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3499
3499
  required_arguments = ['exadbVmClusterId']
@@ -3611,7 +3611,7 @@ class DatabaseClient(object):
3611
3611
  :rtype: :class:`~oci.response.Response`
3612
3612
 
3613
3613
  :example:
3614
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_exadb_vm_cluster_subscription.py.html>`__ to see an example of how to use change_exadb_vm_cluster_subscription API.
3614
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exadb_vm_cluster_subscription.py.html>`__ to see an example of how to use change_exadb_vm_cluster_subscription API.
3615
3615
  """
3616
3616
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3617
3617
  required_arguments = ['exadbVmClusterId']
@@ -3729,7 +3729,7 @@ class DatabaseClient(object):
3729
3729
  :rtype: :class:`~oci.response.Response`
3730
3730
 
3731
3731
  :example:
3732
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_exascale_db_storage_vault_compartment.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_compartment API.
3732
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exascale_db_storage_vault_compartment.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_compartment API.
3733
3733
  """
3734
3734
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3735
3735
  required_arguments = ['exascaleDbStorageVaultId']
@@ -3847,7 +3847,7 @@ class DatabaseClient(object):
3847
3847
  :rtype: :class:`~oci.response.Response`
3848
3848
 
3849
3849
  :example:
3850
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_exascale_db_storage_vault_subscription.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_subscription API.
3850
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_exascale_db_storage_vault_subscription.py.html>`__ to see an example of how to use change_exascale_db_storage_vault_subscription API.
3851
3851
  """
3852
3852
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3853
3853
  required_arguments = ['exascaleDbStorageVaultId']
@@ -3970,7 +3970,7 @@ class DatabaseClient(object):
3970
3970
  :rtype: :class:`~oci.response.Response`
3971
3971
 
3972
3972
  :example:
3973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
3973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_external_container_database_compartment.py.html>`__ to see an example of how to use change_external_container_database_compartment API.
3974
3974
  """
3975
3975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3976
3976
  required_arguments = ['externalContainerDatabaseId']
@@ -4092,7 +4092,7 @@ class DatabaseClient(object):
4092
4092
  :rtype: :class:`~oci.response.Response`
4093
4093
 
4094
4094
  :example:
4095
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
4095
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_external_non_container_database_compartment.py.html>`__ to see an example of how to use change_external_non_container_database_compartment API.
4096
4096
  """
4097
4097
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4098
4098
  required_arguments = ['externalNonContainerDatabaseId']
@@ -4217,7 +4217,7 @@ class DatabaseClient(object):
4217
4217
  :rtype: :class:`~oci.response.Response`
4218
4218
 
4219
4219
  :example:
4220
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
4220
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_external_pluggable_database_compartment.py.html>`__ to see an example of how to use change_external_pluggable_database_compartment API.
4221
4221
  """
4222
4222
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4223
4223
  required_arguments = ['externalPluggableDatabaseId']
@@ -4339,7 +4339,7 @@ class DatabaseClient(object):
4339
4339
  :rtype: :class:`~oci.response.Response`
4340
4340
 
4341
4341
  :example:
4342
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
4342
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_key_store_compartment.py.html>`__ to see an example of how to use change_key_store_compartment API.
4343
4343
  """
4344
4344
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4345
4345
  required_arguments = ['keyStoreId']
@@ -4457,7 +4457,7 @@ class DatabaseClient(object):
4457
4457
  :rtype: :class:`~oci.response.Response`
4458
4458
 
4459
4459
  :example:
4460
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
4460
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_key_store_type.py.html>`__ to see an example of how to use change_key_store_type API.
4461
4461
  """
4462
4462
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4463
4463
  required_arguments = ['databaseId']
@@ -4575,7 +4575,7 @@ class DatabaseClient(object):
4575
4575
  :rtype: :class:`~oci.response.Response`
4576
4576
 
4577
4577
  :example:
4578
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
4578
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_oneoff_patch_compartment.py.html>`__ to see an example of how to use change_oneoff_patch_compartment API.
4579
4579
  """
4580
4580
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4581
4581
  required_arguments = ['oneoffPatchId']
@@ -4693,7 +4693,7 @@ class DatabaseClient(object):
4693
4693
  :rtype: :class:`~oci.response.Response`
4694
4694
 
4695
4695
  :example:
4696
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
4696
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_scheduling_plan_compartment.py.html>`__ to see an example of how to use change_scheduling_plan_compartment API.
4697
4697
  """
4698
4698
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4699
4699
  required_arguments = ['schedulingPlanId']
@@ -4811,7 +4811,7 @@ class DatabaseClient(object):
4811
4811
  :rtype: :class:`~oci.response.Response`
4812
4812
 
4813
4813
  :example:
4814
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
4814
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_scheduling_policy_compartment.py.html>`__ to see an example of how to use change_scheduling_policy_compartment API.
4815
4815
  """
4816
4816
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4817
4817
  required_arguments = ['schedulingPolicyId']
@@ -4930,7 +4930,7 @@ class DatabaseClient(object):
4930
4930
  :rtype: :class:`~oci.response.Response`
4931
4931
 
4932
4932
  :example:
4933
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
4933
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/change_vm_cluster_compartment.py.html>`__ to see an example of how to use change_vm_cluster_compartment API.
4934
4934
  """
4935
4935
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4936
4936
  required_arguments = ['vmClusterId']
@@ -5047,7 +5047,7 @@ class DatabaseClient(object):
5047
5047
  :rtype: :class:`~oci.response.Response`
5048
5048
 
5049
5049
  :example:
5050
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
5050
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/check_external_database_connector_connection_status.py.html>`__ to see an example of how to use check_external_database_connector_connection_status API.
5051
5051
  """
5052
5052
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5053
5053
  required_arguments = ['externalDatabaseConnectorId']
@@ -5164,7 +5164,7 @@ class DatabaseClient(object):
5164
5164
  :rtype: :class:`~oci.response.Response`
5165
5165
 
5166
5166
  :example:
5167
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
5167
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/complete_external_backup_job.py.html>`__ to see an example of how to use complete_external_backup_job API.
5168
5168
  """
5169
5169
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5170
5170
  required_arguments = ['backupId']
@@ -5286,7 +5286,7 @@ class DatabaseClient(object):
5286
5286
  :rtype: :class:`~oci.response.Response`
5287
5287
 
5288
5288
  :example:
5289
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
5289
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/configure_autonomous_database_vault_key.py.html>`__ to see an example of how to use configure_autonomous_database_vault_key API.
5290
5290
  """
5291
5291
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5292
5292
  required_arguments = ['autonomousDatabaseId']
@@ -5404,7 +5404,7 @@ class DatabaseClient(object):
5404
5404
  :rtype: :class:`~oci.response.Response`
5405
5405
 
5406
5406
  :example:
5407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
5407
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/configure_exascale_exadata_infrastructure.py.html>`__ to see an example of how to use configure_exascale_exadata_infrastructure API.
5408
5408
  """
5409
5409
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5410
5410
  required_arguments = ['exadataInfrastructureId']
@@ -5517,7 +5517,7 @@ class DatabaseClient(object):
5517
5517
  :rtype: :class:`~oci.response.Response`
5518
5518
 
5519
5519
  :example:
5520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
5520
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/configure_saas_admin_user.py.html>`__ to see an example of how to use configure_saas_admin_user API.
5521
5521
  """
5522
5522
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5523
5523
  required_arguments = ['autonomousDatabaseId']
@@ -5632,7 +5632,7 @@ class DatabaseClient(object):
5632
5632
  :rtype: :class:`~oci.response.Response`
5633
5633
 
5634
5634
  :example:
5635
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/confirm_key_store_details_are_correct.py.html>`__ to see an example of how to use confirm_key_store_details_are_correct API.
5635
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/confirm_key_store_details_are_correct.py.html>`__ to see an example of how to use confirm_key_store_details_are_correct API.
5636
5636
  """
5637
5637
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5638
5638
  required_arguments = ['keyStoreId']
@@ -5753,7 +5753,7 @@ class DatabaseClient(object):
5753
5753
  :rtype: :class:`~oci.response.Response`
5754
5754
 
5755
5755
  :example:
5756
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/convert_standby_autonomous_container_database.py.html>`__ to see an example of how to use convert_standby_autonomous_container_database API.
5756
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_standby_autonomous_container_database.py.html>`__ to see an example of how to use convert_standby_autonomous_container_database API.
5757
5757
  """
5758
5758
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5759
5759
  required_arguments = ['autonomousContainerDatabaseId']
@@ -5866,7 +5866,7 @@ class DatabaseClient(object):
5866
5866
  :rtype: :class:`~oci.response.Response`
5867
5867
 
5868
5868
  :example:
5869
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
5869
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_to_pdb.py.html>`__ to see an example of how to use convert_to_pdb API.
5870
5870
  """
5871
5871
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5872
5872
  required_arguments = ['databaseId']
@@ -5984,7 +5984,7 @@ class DatabaseClient(object):
5984
5984
  :rtype: :class:`~oci.response.Response`
5985
5985
 
5986
5986
  :example:
5987
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
5987
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_to_regular_pluggable_database.py.html>`__ to see an example of how to use convert_to_regular_pluggable_database API.
5988
5988
  """
5989
5989
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5990
5990
  required_arguments = ['pluggableDatabaseId']
@@ -6108,7 +6108,7 @@ class DatabaseClient(object):
6108
6108
  :rtype: :class:`~oci.response.Response`
6109
6109
 
6110
6110
  :example:
6111
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/convert_to_standalone.py.html>`__ to see an example of how to use convert_to_standalone API.
6111
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/convert_to_standalone.py.html>`__ to see an example of how to use convert_to_standalone API.
6112
6112
  """
6113
6113
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6114
6114
  required_arguments = ['databaseId']
@@ -6218,7 +6218,7 @@ class DatabaseClient(object):
6218
6218
  :rtype: :class:`~oci.response.Response`
6219
6219
 
6220
6220
  :example:
6221
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
6221
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_application_vip.py.html>`__ to see an example of how to use create_application_vip API.
6222
6222
  """
6223
6223
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6224
6224
  required_arguments = []
@@ -6311,7 +6311,7 @@ class DatabaseClient(object):
6311
6311
  :rtype: :class:`~oci.response.Response`
6312
6312
 
6313
6313
  :example:
6314
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
6314
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_container_database.py.html>`__ to see an example of how to use create_autonomous_container_database API.
6315
6315
  """
6316
6316
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6317
6317
  required_arguments = []
@@ -6417,7 +6417,7 @@ class DatabaseClient(object):
6417
6417
  :rtype: :class:`~oci.response.Response`
6418
6418
 
6419
6419
  :example:
6420
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use create_autonomous_container_database_dataguard_association API.
6420
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use create_autonomous_container_database_dataguard_association API.
6421
6421
  """
6422
6422
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6423
6423
  required_arguments = ['autonomousContainerDatabaseId']
@@ -6523,7 +6523,7 @@ class DatabaseClient(object):
6523
6523
  :rtype: :class:`~oci.response.Response`
6524
6524
 
6525
6525
  :example:
6526
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
6526
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_database.py.html>`__ to see an example of how to use create_autonomous_database API.
6527
6527
  """
6528
6528
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6529
6529
  required_arguments = []
@@ -6619,7 +6619,7 @@ class DatabaseClient(object):
6619
6619
  :rtype: :class:`~oci.response.Response`
6620
6620
 
6621
6621
  :example:
6622
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
6622
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_database_backup.py.html>`__ to see an example of how to use create_autonomous_database_backup API.
6623
6623
  """
6624
6624
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6625
6625
  required_arguments = []
@@ -6715,7 +6715,7 @@ class DatabaseClient(object):
6715
6715
  :rtype: :class:`~oci.response.Response`
6716
6716
 
6717
6717
  :example:
6718
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
6718
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_database_software_image.py.html>`__ to see an example of how to use create_autonomous_database_software_image API.
6719
6719
  """
6720
6720
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6721
6721
  required_arguments = []
@@ -6811,7 +6811,7 @@ class DatabaseClient(object):
6811
6811
  :rtype: :class:`~oci.response.Response`
6812
6812
 
6813
6813
  :example:
6814
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
6814
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_autonomous_vm_cluster API.
6815
6815
  """
6816
6816
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6817
6817
  required_arguments = []
@@ -6904,7 +6904,7 @@ class DatabaseClient(object):
6904
6904
  :rtype: :class:`~oci.response.Response`
6905
6905
 
6906
6906
  :example:
6907
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
6907
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_backup.py.html>`__ to see an example of how to use create_backup API.
6908
6908
  """
6909
6909
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6910
6910
  required_arguments = []
@@ -6998,7 +6998,7 @@ class DatabaseClient(object):
6998
6998
  :rtype: :class:`~oci.response.Response`
6999
6999
 
7000
7000
  :example:
7001
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
7001
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_backup_destination.py.html>`__ to see an example of how to use create_backup_destination API.
7002
7002
  """
7003
7003
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7004
7004
  required_arguments = []
@@ -7094,7 +7094,7 @@ class DatabaseClient(object):
7094
7094
  :rtype: :class:`~oci.response.Response`
7095
7095
 
7096
7096
  :example:
7097
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
7097
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use create_cloud_autonomous_vm_cluster API.
7098
7098
  """
7099
7099
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7100
7100
  required_arguments = []
@@ -7198,7 +7198,7 @@ class DatabaseClient(object):
7198
7198
  :rtype: :class:`~oci.response.Response`
7199
7199
 
7200
7200
  :example:
7201
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
7201
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use create_cloud_exadata_infrastructure API.
7202
7202
  """
7203
7203
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7204
7204
  required_arguments = []
@@ -7302,7 +7302,7 @@ class DatabaseClient(object):
7302
7302
  :rtype: :class:`~oci.response.Response`
7303
7303
 
7304
7304
  :example:
7305
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
7305
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_cloud_vm_cluster.py.html>`__ to see an example of how to use create_cloud_vm_cluster API.
7306
7306
  """
7307
7307
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7308
7308
  required_arguments = []
@@ -7404,7 +7404,7 @@ class DatabaseClient(object):
7404
7404
  :rtype: :class:`~oci.response.Response`
7405
7405
 
7406
7406
  :example:
7407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
7407
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_console_connection.py.html>`__ to see an example of how to use create_console_connection API.
7408
7408
  """
7409
7409
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7410
7410
  required_arguments = ['dbNodeId']
@@ -7515,7 +7515,7 @@ class DatabaseClient(object):
7515
7515
  :rtype: :class:`~oci.response.Response`
7516
7516
 
7517
7517
  :example:
7518
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
7518
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_console_history.py.html>`__ to see an example of how to use create_console_history API.
7519
7519
  """
7520
7520
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7521
7521
  required_arguments = ['dbNodeId']
@@ -7635,7 +7635,7 @@ class DatabaseClient(object):
7635
7635
  :rtype: :class:`~oci.response.Response`
7636
7636
 
7637
7637
  :example:
7638
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
7638
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_data_guard_association.py.html>`__ to see an example of how to use create_data_guard_association API.
7639
7639
  """
7640
7640
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7641
7641
  required_arguments = ['databaseId']
@@ -7741,7 +7741,7 @@ class DatabaseClient(object):
7741
7741
  :rtype: :class:`~oci.response.Response`
7742
7742
 
7743
7743
  :example:
7744
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
7744
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_database.py.html>`__ to see an example of how to use create_database API.
7745
7745
  """
7746
7746
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7747
7747
  required_arguments = []
@@ -7834,7 +7834,7 @@ class DatabaseClient(object):
7834
7834
  :rtype: :class:`~oci.response.Response`
7835
7835
 
7836
7836
  :example:
7837
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
7837
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_database_software_image.py.html>`__ to see an example of how to use create_database_software_image API.
7838
7838
  """
7839
7839
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7840
7840
  required_arguments = []
@@ -7925,7 +7925,7 @@ class DatabaseClient(object):
7925
7925
  :rtype: :class:`~oci.response.Response`
7926
7926
 
7927
7927
  :example:
7928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
7928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_db_home.py.html>`__ to see an example of how to use create_db_home API.
7929
7929
  """
7930
7930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7931
7931
  required_arguments = []
@@ -8020,7 +8020,7 @@ class DatabaseClient(object):
8020
8020
  :rtype: :class:`~oci.response.Response`
8021
8021
 
8022
8022
  :example:
8023
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
8023
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_exadata_infrastructure.py.html>`__ to see an example of how to use create_exadata_infrastructure API.
8024
8024
  """
8025
8025
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8026
8026
  required_arguments = []
@@ -8118,7 +8118,7 @@ class DatabaseClient(object):
8118
8118
  :rtype: :class:`~oci.response.Response`
8119
8119
 
8120
8120
  :example:
8121
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
8121
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_exadb_vm_cluster.py.html>`__ to see an example of how to use create_exadb_vm_cluster API.
8122
8122
  """
8123
8123
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8124
8124
  required_arguments = []
@@ -8214,7 +8214,7 @@ class DatabaseClient(object):
8214
8214
  :rtype: :class:`~oci.response.Response`
8215
8215
 
8216
8216
  :example:
8217
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
8217
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_exascale_db_storage_vault.py.html>`__ to see an example of how to use create_exascale_db_storage_vault API.
8218
8218
  """
8219
8219
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8220
8220
  required_arguments = []
@@ -8310,7 +8310,7 @@ class DatabaseClient(object):
8310
8310
  :rtype: :class:`~oci.response.Response`
8311
8311
 
8312
8312
  :example:
8313
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
8313
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_execution_action.py.html>`__ to see an example of how to use create_execution_action API.
8314
8314
  """
8315
8315
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8316
8316
  required_arguments = []
@@ -8406,7 +8406,7 @@ class DatabaseClient(object):
8406
8406
  :rtype: :class:`~oci.response.Response`
8407
8407
 
8408
8408
  :example:
8409
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
8409
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_execution_window.py.html>`__ to see an example of how to use create_execution_window API.
8410
8410
  """
8411
8411
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8412
8412
  required_arguments = []
@@ -8503,7 +8503,7 @@ class DatabaseClient(object):
8503
8503
  :rtype: :class:`~oci.response.Response`
8504
8504
 
8505
8505
  :example:
8506
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
8506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_backup_job.py.html>`__ to see an example of how to use create_external_backup_job API.
8507
8507
  """
8508
8508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8509
8509
  required_arguments = []
@@ -8597,7 +8597,7 @@ class DatabaseClient(object):
8597
8597
  :rtype: :class:`~oci.response.Response`
8598
8598
 
8599
8599
  :example:
8600
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
8600
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_container_database.py.html>`__ to see an example of how to use create_external_container_database API.
8601
8601
  """
8602
8602
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8603
8603
  required_arguments = []
@@ -8693,7 +8693,7 @@ class DatabaseClient(object):
8693
8693
  :rtype: :class:`~oci.response.Response`
8694
8694
 
8695
8695
  :example:
8696
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
8696
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_database_connector.py.html>`__ to see an example of how to use create_external_database_connector API.
8697
8697
  """
8698
8698
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8699
8699
  required_arguments = []
@@ -8789,7 +8789,7 @@ class DatabaseClient(object):
8789
8789
  :rtype: :class:`~oci.response.Response`
8790
8790
 
8791
8791
  :example:
8792
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
8792
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_non_container_database.py.html>`__ to see an example of how to use create_external_non_container_database API.
8793
8793
  """
8794
8794
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8795
8795
  required_arguments = []
@@ -8886,7 +8886,7 @@ class DatabaseClient(object):
8886
8886
  :rtype: :class:`~oci.response.Response`
8887
8887
 
8888
8888
  :example:
8889
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
8889
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_external_pluggable_database.py.html>`__ to see an example of how to use create_external_pluggable_database API.
8890
8890
  """
8891
8891
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8892
8892
  required_arguments = []
@@ -8982,7 +8982,7 @@ class DatabaseClient(object):
8982
8982
  :rtype: :class:`~oci.response.Response`
8983
8983
 
8984
8984
  :example:
8985
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
8985
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_key_store.py.html>`__ to see an example of how to use create_key_store API.
8986
8986
  """
8987
8987
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8988
8988
  required_arguments = []
@@ -9081,7 +9081,7 @@ class DatabaseClient(object):
9081
9081
  :rtype: :class:`~oci.response.Response`
9082
9082
 
9083
9083
  :example:
9084
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
9084
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_maintenance_run.py.html>`__ to see an example of how to use create_maintenance_run API.
9085
9085
  """
9086
9086
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9087
9087
  required_arguments = []
@@ -9177,7 +9177,7 @@ class DatabaseClient(object):
9177
9177
  :rtype: :class:`~oci.response.Response`
9178
9178
 
9179
9179
  :example:
9180
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
9180
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_oneoff_patch.py.html>`__ to see an example of how to use create_oneoff_patch API.
9181
9181
  """
9182
9182
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9183
9183
  required_arguments = []
@@ -9275,7 +9275,7 @@ class DatabaseClient(object):
9275
9275
  :rtype: :class:`~oci.response.Response`
9276
9276
 
9277
9277
  :example:
9278
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
9278
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_pluggable_database.py.html>`__ to see an example of how to use create_pluggable_database API.
9279
9279
  """
9280
9280
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9281
9281
  required_arguments = []
@@ -9371,7 +9371,7 @@ class DatabaseClient(object):
9371
9371
  :rtype: :class:`~oci.response.Response`
9372
9372
 
9373
9373
  :example:
9374
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
9374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduled_action.py.html>`__ to see an example of how to use create_scheduled_action API.
9375
9375
  """
9376
9376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9377
9377
  required_arguments = []
@@ -9467,7 +9467,7 @@ class DatabaseClient(object):
9467
9467
  :rtype: :class:`~oci.response.Response`
9468
9468
 
9469
9469
  :example:
9470
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
9470
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduling_plan.py.html>`__ to see an example of how to use create_scheduling_plan API.
9471
9471
  """
9472
9472
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9473
9473
  required_arguments = []
@@ -9563,7 +9563,7 @@ class DatabaseClient(object):
9563
9563
  :rtype: :class:`~oci.response.Response`
9564
9564
 
9565
9565
  :example:
9566
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
9566
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduling_policy.py.html>`__ to see an example of how to use create_scheduling_policy API.
9567
9567
  """
9568
9568
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9569
9569
  required_arguments = []
@@ -9664,7 +9664,7 @@ class DatabaseClient(object):
9664
9664
  :rtype: :class:`~oci.response.Response`
9665
9665
 
9666
9666
  :example:
9667
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
9667
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_scheduling_window.py.html>`__ to see an example of how to use create_scheduling_window API.
9668
9668
  """
9669
9669
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9670
9670
  required_arguments = ['schedulingPolicyId']
@@ -9773,7 +9773,7 @@ class DatabaseClient(object):
9773
9773
  :rtype: :class:`~oci.response.Response`
9774
9774
 
9775
9775
  :example:
9776
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
9776
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_vm_cluster.py.html>`__ to see an example of how to use create_vm_cluster API.
9777
9777
  """
9778
9778
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9779
9779
  required_arguments = []
@@ -9875,7 +9875,7 @@ class DatabaseClient(object):
9875
9875
  :rtype: :class:`~oci.response.Response`
9876
9876
 
9877
9877
  :example:
9878
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
9878
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/create_vm_cluster_network.py.html>`__ to see an example of how to use create_vm_cluster_network API.
9879
9879
  """
9880
9880
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9881
9881
  required_arguments = ['exadataInfrastructureId']
@@ -10004,7 +10004,7 @@ class DatabaseClient(object):
10004
10004
  :rtype: :class:`~oci.response.Response`
10005
10005
 
10006
10006
  :example:
10007
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
10007
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/db_node_action.py.html>`__ to see an example of how to use db_node_action API.
10008
10008
  """
10009
10009
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10010
10010
  required_arguments = ['dbNodeId', 'action']
@@ -10117,7 +10117,7 @@ class DatabaseClient(object):
10117
10117
  :rtype: :class:`~oci.response.Response`
10118
10118
 
10119
10119
  :example:
10120
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
10120
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_application_vip.py.html>`__ to see an example of how to use delete_application_vip API.
10121
10121
  """
10122
10122
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10123
10123
  required_arguments = ['applicationVipId']
@@ -10220,7 +10220,7 @@ class DatabaseClient(object):
10220
10220
  :rtype: :class:`~oci.response.Response`
10221
10221
 
10222
10222
  :example:
10223
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
10223
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_database.py.html>`__ to see an example of how to use delete_autonomous_database API.
10224
10224
  """
10225
10225
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10226
10226
  required_arguments = ['autonomousDatabaseId']
@@ -10323,7 +10323,7 @@ class DatabaseClient(object):
10323
10323
  :rtype: :class:`~oci.response.Response`
10324
10324
 
10325
10325
  :example:
10326
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
10326
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_database_backup.py.html>`__ to see an example of how to use delete_autonomous_database_backup API.
10327
10327
  """
10328
10328
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10329
10329
  required_arguments = ['autonomousDatabaseBackupId']
@@ -10426,7 +10426,7 @@ class DatabaseClient(object):
10426
10426
  :rtype: :class:`~oci.response.Response`
10427
10427
 
10428
10428
  :example:
10429
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
10429
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_database_software_image.py.html>`__ to see an example of how to use delete_autonomous_database_software_image API.
10430
10430
  """
10431
10431
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10432
10432
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -10529,7 +10529,7 @@ class DatabaseClient(object):
10529
10529
  :rtype: :class:`~oci.response.Response`
10530
10530
 
10531
10531
  :example:
10532
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
10532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_autonomous_vm_cluster API.
10533
10533
  """
10534
10534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10535
10535
  required_arguments = ['autonomousVmClusterId']
@@ -10629,7 +10629,7 @@ class DatabaseClient(object):
10629
10629
  :rtype: :class:`~oci.response.Response`
10630
10630
 
10631
10631
  :example:
10632
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
10632
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_backup.py.html>`__ to see an example of how to use delete_backup API.
10633
10633
  """
10634
10634
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10635
10635
  required_arguments = ['backupId']
@@ -10730,7 +10730,7 @@ class DatabaseClient(object):
10730
10730
  :rtype: :class:`~oci.response.Response`
10731
10731
 
10732
10732
  :example:
10733
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
10733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_backup_destination.py.html>`__ to see an example of how to use delete_backup_destination API.
10734
10734
  """
10735
10735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10736
10736
  required_arguments = ['backupDestinationId']
@@ -10833,7 +10833,7 @@ class DatabaseClient(object):
10833
10833
  :rtype: :class:`~oci.response.Response`
10834
10834
 
10835
10835
  :example:
10836
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
10836
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_autonomous_vm_cluster API.
10837
10837
  """
10838
10838
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10839
10839
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -10939,7 +10939,7 @@ class DatabaseClient(object):
10939
10939
  :rtype: :class:`~oci.response.Response`
10940
10940
 
10941
10941
  :example:
10942
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
10942
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use delete_cloud_exadata_infrastructure API.
10943
10943
  """
10944
10944
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10945
10945
  required_arguments = ['cloudExadataInfrastructureId']
@@ -11050,7 +11050,7 @@ class DatabaseClient(object):
11050
11050
  :rtype: :class:`~oci.response.Response`
11051
11051
 
11052
11052
  :example:
11053
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
11053
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_cloud_vm_cluster.py.html>`__ to see an example of how to use delete_cloud_vm_cluster API.
11054
11054
  """
11055
11055
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11056
11056
  required_arguments = ['cloudVmClusterId']
@@ -11153,7 +11153,7 @@ class DatabaseClient(object):
11153
11153
  :rtype: :class:`~oci.response.Response`
11154
11154
 
11155
11155
  :example:
11156
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
11156
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_console_connection.py.html>`__ to see an example of how to use delete_console_connection API.
11157
11157
  """
11158
11158
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11159
11159
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -11258,7 +11258,7 @@ class DatabaseClient(object):
11258
11258
  :rtype: :class:`~oci.response.Response`
11259
11259
 
11260
11260
  :example:
11261
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
11261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
11262
11262
  """
11263
11263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11264
11264
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -11371,7 +11371,7 @@ class DatabaseClient(object):
11371
11371
  :rtype: :class:`~oci.response.Response`
11372
11372
 
11373
11373
  :example:
11374
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
11374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_database.py.html>`__ to see an example of how to use delete_database API.
11375
11375
  """
11376
11376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11377
11377
  required_arguments = ['databaseId']
@@ -11479,7 +11479,7 @@ class DatabaseClient(object):
11479
11479
  :rtype: :class:`~oci.response.Response`
11480
11480
 
11481
11481
  :example:
11482
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
11482
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_database_software_image.py.html>`__ to see an example of how to use delete_database_software_image API.
11483
11483
  """
11484
11484
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11485
11485
  required_arguments = ['databaseSoftwareImageId']
@@ -11586,7 +11586,7 @@ class DatabaseClient(object):
11586
11586
  :rtype: :class:`~oci.response.Response`
11587
11587
 
11588
11588
  :example:
11589
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
11589
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_db_home.py.html>`__ to see an example of how to use delete_db_home API.
11590
11590
  """
11591
11591
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11592
11592
  required_arguments = ['dbHomeId']
@@ -11695,7 +11695,7 @@ class DatabaseClient(object):
11695
11695
  :rtype: :class:`~oci.response.Response`
11696
11696
 
11697
11697
  :example:
11698
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
11698
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_exadata_infrastructure.py.html>`__ to see an example of how to use delete_exadata_infrastructure API.
11699
11699
  """
11700
11700
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11701
11701
  required_arguments = ['exadataInfrastructureId']
@@ -11798,7 +11798,7 @@ class DatabaseClient(object):
11798
11798
  :rtype: :class:`~oci.response.Response`
11799
11799
 
11800
11800
  :example:
11801
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
11801
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_exadb_vm_cluster.py.html>`__ to see an example of how to use delete_exadb_vm_cluster API.
11802
11802
  """
11803
11803
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11804
11804
  required_arguments = ['exadbVmClusterId']
@@ -11901,7 +11901,7 @@ class DatabaseClient(object):
11901
11901
  :rtype: :class:`~oci.response.Response`
11902
11902
 
11903
11903
  :example:
11904
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
11904
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_exascale_db_storage_vault.py.html>`__ to see an example of how to use delete_exascale_db_storage_vault API.
11905
11905
  """
11906
11906
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11907
11907
  required_arguments = ['exascaleDbStorageVaultId']
@@ -12004,7 +12004,7 @@ class DatabaseClient(object):
12004
12004
  :rtype: :class:`~oci.response.Response`
12005
12005
 
12006
12006
  :example:
12007
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
12007
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_execution_action.py.html>`__ to see an example of how to use delete_execution_action API.
12008
12008
  """
12009
12009
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12010
12010
  required_arguments = ['executionActionId']
@@ -12107,7 +12107,7 @@ class DatabaseClient(object):
12107
12107
  :rtype: :class:`~oci.response.Response`
12108
12108
 
12109
12109
  :example:
12110
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
12110
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_execution_window.py.html>`__ to see an example of how to use delete_execution_window API.
12111
12111
  """
12112
12112
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12113
12113
  required_arguments = ['executionWindowId']
@@ -12212,7 +12212,7 @@ class DatabaseClient(object):
12212
12212
  :rtype: :class:`~oci.response.Response`
12213
12213
 
12214
12214
  :example:
12215
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
12215
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_container_database.py.html>`__ to see an example of how to use delete_external_container_database API.
12216
12216
  """
12217
12217
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12218
12218
  required_arguments = ['externalContainerDatabaseId']
@@ -12318,7 +12318,7 @@ class DatabaseClient(object):
12318
12318
  :rtype: :class:`~oci.response.Response`
12319
12319
 
12320
12320
  :example:
12321
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
12321
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_database_connector.py.html>`__ to see an example of how to use delete_external_database_connector API.
12322
12322
  """
12323
12323
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12324
12324
  required_arguments = ['externalDatabaseConnectorId']
@@ -12421,7 +12421,7 @@ class DatabaseClient(object):
12421
12421
  :rtype: :class:`~oci.response.Response`
12422
12422
 
12423
12423
  :example:
12424
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
12424
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_non_container_database.py.html>`__ to see an example of how to use delete_external_non_container_database API.
12425
12425
  """
12426
12426
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12427
12427
  required_arguments = ['externalNonContainerDatabaseId']
@@ -12525,7 +12525,7 @@ class DatabaseClient(object):
12525
12525
  :rtype: :class:`~oci.response.Response`
12526
12526
 
12527
12527
  :example:
12528
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
12528
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_external_pluggable_database.py.html>`__ to see an example of how to use delete_external_pluggable_database API.
12529
12529
  """
12530
12530
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12531
12531
  required_arguments = ['externalPluggableDatabaseId']
@@ -12628,7 +12628,7 @@ class DatabaseClient(object):
12628
12628
  :rtype: :class:`~oci.response.Response`
12629
12629
 
12630
12630
  :example:
12631
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
12631
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_key_store.py.html>`__ to see an example of how to use delete_key_store API.
12632
12632
  """
12633
12633
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12634
12634
  required_arguments = ['keyStoreId']
@@ -12731,7 +12731,7 @@ class DatabaseClient(object):
12731
12731
  :rtype: :class:`~oci.response.Response`
12732
12732
 
12733
12733
  :example:
12734
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
12734
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_oneoff_patch.py.html>`__ to see an example of how to use delete_oneoff_patch API.
12735
12735
  """
12736
12736
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12737
12737
  required_arguments = ['oneoffPatchId']
@@ -12834,7 +12834,7 @@ class DatabaseClient(object):
12834
12834
  :rtype: :class:`~oci.response.Response`
12835
12835
 
12836
12836
  :example:
12837
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
12837
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_pluggable_database.py.html>`__ to see an example of how to use delete_pluggable_database API.
12838
12838
  """
12839
12839
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12840
12840
  required_arguments = ['pluggableDatabaseId']
@@ -12937,7 +12937,7 @@ class DatabaseClient(object):
12937
12937
  :rtype: :class:`~oci.response.Response`
12938
12938
 
12939
12939
  :example:
12940
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
12940
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduled_action.py.html>`__ to see an example of how to use delete_scheduled_action API.
12941
12941
  """
12942
12942
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12943
12943
  required_arguments = ['scheduledActionId']
@@ -13040,7 +13040,7 @@ class DatabaseClient(object):
13040
13040
  :rtype: :class:`~oci.response.Response`
13041
13041
 
13042
13042
  :example:
13043
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
13043
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduling_plan.py.html>`__ to see an example of how to use delete_scheduling_plan API.
13044
13044
  """
13045
13045
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13046
13046
  required_arguments = ['schedulingPlanId']
@@ -13143,7 +13143,7 @@ class DatabaseClient(object):
13143
13143
  :rtype: :class:`~oci.response.Response`
13144
13144
 
13145
13145
  :example:
13146
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
13146
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduling_policy.py.html>`__ to see an example of how to use delete_scheduling_policy API.
13147
13147
  """
13148
13148
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13149
13149
  required_arguments = ['schedulingPolicyId']
@@ -13251,7 +13251,7 @@ class DatabaseClient(object):
13251
13251
  :rtype: :class:`~oci.response.Response`
13252
13252
 
13253
13253
  :example:
13254
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
13254
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_scheduling_window.py.html>`__ to see an example of how to use delete_scheduling_window API.
13255
13255
  """
13256
13256
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13257
13257
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -13355,7 +13355,7 @@ class DatabaseClient(object):
13355
13355
  :rtype: :class:`~oci.response.Response`
13356
13356
 
13357
13357
  :example:
13358
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
13358
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_vm_cluster.py.html>`__ to see an example of how to use delete_vm_cluster API.
13359
13359
  """
13360
13360
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13361
13361
  required_arguments = ['vmClusterId']
@@ -13464,7 +13464,7 @@ class DatabaseClient(object):
13464
13464
  :rtype: :class:`~oci.response.Response`
13465
13465
 
13466
13466
  :example:
13467
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
13467
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/delete_vm_cluster_network.py.html>`__ to see an example of how to use delete_vm_cluster_network API.
13468
13468
  """
13469
13469
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13470
13470
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -13566,7 +13566,7 @@ class DatabaseClient(object):
13566
13566
  :rtype: :class:`~oci.response.Response`
13567
13567
 
13568
13568
  :example:
13569
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
13569
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/deregister_autonomous_database_data_safe.py.html>`__ to see an example of how to use deregister_autonomous_database_data_safe API.
13570
13570
  """
13571
13571
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13572
13572
  required_arguments = ['autonomousDatabaseId']
@@ -13665,7 +13665,7 @@ class DatabaseClient(object):
13665
13665
  :rtype: :class:`~oci.response.Response`
13666
13666
 
13667
13667
  :example:
13668
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
13668
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_autonomous_database_management.py.html>`__ to see an example of how to use disable_autonomous_database_management API.
13669
13669
  """
13670
13670
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13671
13671
  required_arguments = ['autonomousDatabaseId']
@@ -13761,7 +13761,7 @@ class DatabaseClient(object):
13761
13761
  :rtype: :class:`~oci.response.Response`
13762
13762
 
13763
13763
  :example:
13764
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
13764
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use disable_autonomous_database_operations_insights API.
13765
13765
  """
13766
13766
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13767
13767
  required_arguments = ['autonomousDatabaseId']
@@ -13869,7 +13869,7 @@ class DatabaseClient(object):
13869
13869
  :rtype: :class:`~oci.response.Response`
13870
13870
 
13871
13871
  :example:
13872
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
13872
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_database_management.py.html>`__ to see an example of how to use disable_database_management API.
13873
13873
  """
13874
13874
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13875
13875
  required_arguments = ['databaseId']
@@ -13984,7 +13984,7 @@ class DatabaseClient(object):
13984
13984
  :rtype: :class:`~oci.response.Response`
13985
13985
 
13986
13986
  :example:
13987
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
13987
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_container_database_database_management.py.html>`__ to see an example of how to use disable_external_container_database_database_management API.
13988
13988
  """
13989
13989
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13990
13990
  required_arguments = ['externalContainerDatabaseId']
@@ -14097,7 +14097,7 @@ class DatabaseClient(object):
14097
14097
  :rtype: :class:`~oci.response.Response`
14098
14098
 
14099
14099
  :example:
14100
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
14100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_container_database_stack_monitoring API.
14101
14101
  """
14102
14102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14103
14103
  required_arguments = ['externalContainerDatabaseId']
@@ -14214,7 +14214,7 @@ class DatabaseClient(object):
14214
14214
  :rtype: :class:`~oci.response.Response`
14215
14215
 
14216
14216
  :example:
14217
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_non_container_database_database_management.py.html>`__ to see an example of how to use disable_external_non_container_database_database_management API.
14217
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_non_container_database_database_management.py.html>`__ to see an example of how to use disable_external_non_container_database_database_management API.
14218
14218
  """
14219
14219
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14220
14220
  required_arguments = ['externalNonContainerDatabaseId']
@@ -14327,7 +14327,7 @@ class DatabaseClient(object):
14327
14327
  :rtype: :class:`~oci.response.Response`
14328
14328
 
14329
14329
  :example:
14330
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use disable_external_non_container_database_operations_insights API.
14330
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use disable_external_non_container_database_operations_insights API.
14331
14331
  """
14332
14332
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14333
14333
  required_arguments = ['externalNonContainerDatabaseId']
@@ -14440,7 +14440,7 @@ class DatabaseClient(object):
14440
14440
  :rtype: :class:`~oci.response.Response`
14441
14441
 
14442
14442
  :example:
14443
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_non_container_database_stack_monitoring API.
14443
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_non_container_database_stack_monitoring API.
14444
14444
  """
14445
14445
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14446
14446
  required_arguments = ['externalNonContainerDatabaseId']
@@ -14557,7 +14557,7 @@ class DatabaseClient(object):
14557
14557
  :rtype: :class:`~oci.response.Response`
14558
14558
 
14559
14559
  :example:
14560
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
14560
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use disable_external_pluggable_database_database_management API.
14561
14561
  """
14562
14562
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14563
14563
  required_arguments = ['externalPluggableDatabaseId']
@@ -14670,7 +14670,7 @@ class DatabaseClient(object):
14670
14670
  :rtype: :class:`~oci.response.Response`
14671
14671
 
14672
14672
  :example:
14673
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
14673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use disable_external_pluggable_database_operations_insights API.
14674
14674
  """
14675
14675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14676
14676
  required_arguments = ['externalPluggableDatabaseId']
@@ -14783,7 +14783,7 @@ class DatabaseClient(object):
14783
14783
  :rtype: :class:`~oci.response.Response`
14784
14784
 
14785
14785
  :example:
14786
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
14786
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use disable_external_pluggable_database_stack_monitoring API.
14787
14787
  """
14788
14788
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14789
14789
  required_arguments = ['externalPluggableDatabaseId']
@@ -14896,7 +14896,7 @@ class DatabaseClient(object):
14896
14896
  :rtype: :class:`~oci.response.Response`
14897
14897
 
14898
14898
  :example:
14899
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
14899
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/disable_pluggable_database_management.py.html>`__ to see an example of how to use disable_pluggable_database_management API.
14900
14900
  """
14901
14901
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14902
14902
  required_arguments = ['pluggableDatabaseId']
@@ -15006,7 +15006,7 @@ class DatabaseClient(object):
15006
15006
  :rtype: :class:`~oci.response.Response`
15007
15007
 
15008
15008
  :example:
15009
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
15009
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/download_exadata_infrastructure_config_file.py.html>`__ to see an example of how to use download_exadata_infrastructure_config_file API.
15010
15010
  """
15011
15011
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15012
15012
  required_arguments = ['exadataInfrastructureId']
@@ -15119,7 +15119,7 @@ class DatabaseClient(object):
15119
15119
  :rtype: :class:`~oci.response.Response`
15120
15120
 
15121
15121
  :example:
15122
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
15122
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/download_oneoff_patch.py.html>`__ to see an example of how to use download_oneoff_patch API.
15123
15123
  """
15124
15124
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15125
15125
  required_arguments = ['oneoffPatchId']
@@ -15234,7 +15234,7 @@ class DatabaseClient(object):
15234
15234
  :rtype: :class:`~oci.response.Response`
15235
15235
 
15236
15236
  :example:
15237
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
15237
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/download_validation_report.py.html>`__ to see an example of how to use download_validation_report API.
15238
15238
  """
15239
15239
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15240
15240
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -15348,7 +15348,7 @@ class DatabaseClient(object):
15348
15348
  :rtype: :class:`~oci.response.Response`
15349
15349
 
15350
15350
  :example:
15351
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
15351
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/download_vm_cluster_network_config_file.py.html>`__ to see an example of how to use download_vm_cluster_network_config_file API.
15352
15352
  """
15353
15353
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15354
15354
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -15470,7 +15470,7 @@ class DatabaseClient(object):
15470
15470
  :rtype: :class:`~oci.response.Response`
15471
15471
 
15472
15472
  :example:
15473
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/edit_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use edit_autonomous_container_database_dataguard API.
15473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/edit_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use edit_autonomous_container_database_dataguard API.
15474
15474
  """
15475
15475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15476
15476
  required_arguments = ['autonomousContainerDatabaseId']
@@ -15575,7 +15575,7 @@ class DatabaseClient(object):
15575
15575
  :rtype: :class:`~oci.response.Response`
15576
15576
 
15577
15577
  :example:
15578
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
15578
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_autonomous_database_management.py.html>`__ to see an example of how to use enable_autonomous_database_management API.
15579
15579
  """
15580
15580
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15581
15581
  required_arguments = ['autonomousDatabaseId']
@@ -15671,7 +15671,7 @@ class DatabaseClient(object):
15671
15671
  :rtype: :class:`~oci.response.Response`
15672
15672
 
15673
15673
  :example:
15674
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
15674
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_autonomous_database_operations_insights.py.html>`__ to see an example of how to use enable_autonomous_database_operations_insights API.
15675
15675
  """
15676
15676
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15677
15677
  required_arguments = ['autonomousDatabaseId']
@@ -15782,7 +15782,7 @@ class DatabaseClient(object):
15782
15782
  :rtype: :class:`~oci.response.Response`
15783
15783
 
15784
15784
  :example:
15785
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
15785
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_database_management.py.html>`__ to see an example of how to use enable_database_management API.
15786
15786
  """
15787
15787
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15788
15788
  required_arguments = ['databaseId']
@@ -15906,7 +15906,7 @@ class DatabaseClient(object):
15906
15906
  :rtype: :class:`~oci.response.Response`
15907
15907
 
15908
15908
  :example:
15909
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
15909
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_container_database_database_management.py.html>`__ to see an example of how to use enable_external_container_database_database_management API.
15910
15910
  """
15911
15911
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15912
15912
  required_arguments = ['externalContainerDatabaseId']
@@ -16024,7 +16024,7 @@ class DatabaseClient(object):
16024
16024
  :rtype: :class:`~oci.response.Response`
16025
16025
 
16026
16026
  :example:
16027
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
16027
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_container_database_stack_monitoring API.
16028
16028
  """
16029
16029
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16030
16030
  required_arguments = ['externalContainerDatabaseId']
@@ -16146,7 +16146,7 @@ class DatabaseClient(object):
16146
16146
  :rtype: :class:`~oci.response.Response`
16147
16147
 
16148
16148
  :example:
16149
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_non_container_database_database_management.py.html>`__ to see an example of how to use enable_external_non_container_database_database_management API.
16149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_non_container_database_database_management.py.html>`__ to see an example of how to use enable_external_non_container_database_database_management API.
16150
16150
  """
16151
16151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16152
16152
  required_arguments = ['externalNonContainerDatabaseId']
@@ -16264,7 +16264,7 @@ class DatabaseClient(object):
16264
16264
  :rtype: :class:`~oci.response.Response`
16265
16265
 
16266
16266
  :example:
16267
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use enable_external_non_container_database_operations_insights API.
16267
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_non_container_database_operations_insights.py.html>`__ to see an example of how to use enable_external_non_container_database_operations_insights API.
16268
16268
  """
16269
16269
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16270
16270
  required_arguments = ['externalNonContainerDatabaseId']
@@ -16382,7 +16382,7 @@ class DatabaseClient(object):
16382
16382
  :rtype: :class:`~oci.response.Response`
16383
16383
 
16384
16384
  :example:
16385
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_non_container_database_stack_monitoring API.
16385
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_non_container_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_non_container_database_stack_monitoring API.
16386
16386
  """
16387
16387
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16388
16388
  required_arguments = ['externalNonContainerDatabaseId']
@@ -16504,7 +16504,7 @@ class DatabaseClient(object):
16504
16504
  :rtype: :class:`~oci.response.Response`
16505
16505
 
16506
16506
  :example:
16507
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
16507
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_pluggable_database_database_management.py.html>`__ to see an example of how to use enable_external_pluggable_database_database_management API.
16508
16508
  """
16509
16509
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16510
16510
  required_arguments = ['externalPluggableDatabaseId']
@@ -16622,7 +16622,7 @@ class DatabaseClient(object):
16622
16622
  :rtype: :class:`~oci.response.Response`
16623
16623
 
16624
16624
  :example:
16625
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
16625
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_pluggable_database_operations_insights.py.html>`__ to see an example of how to use enable_external_pluggable_database_operations_insights API.
16626
16626
  """
16627
16627
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16628
16628
  required_arguments = ['externalPluggableDatabaseId']
@@ -16740,7 +16740,7 @@ class DatabaseClient(object):
16740
16740
  :rtype: :class:`~oci.response.Response`
16741
16741
 
16742
16742
  :example:
16743
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
16743
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_external_pluggable_database_stack_monitoring.py.html>`__ to see an example of how to use enable_external_pluggable_database_stack_monitoring API.
16744
16744
  """
16745
16745
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16746
16746
  required_arguments = ['externalPluggableDatabaseId']
@@ -16858,7 +16858,7 @@ class DatabaseClient(object):
16858
16858
  :rtype: :class:`~oci.response.Response`
16859
16859
 
16860
16860
  :example:
16861
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
16861
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/enable_pluggable_database_management.py.html>`__ to see an example of how to use enable_pluggable_database_management API.
16862
16862
  """
16863
16863
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16864
16864
  required_arguments = ['pluggableDatabaseId']
@@ -16983,7 +16983,7 @@ class DatabaseClient(object):
16983
16983
  :rtype: :class:`~oci.response.Response`
16984
16984
 
16985
16985
  :example:
16986
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
16986
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/fail_over_autonomous_database.py.html>`__ to see an example of how to use fail_over_autonomous_database API.
16987
16987
  """
16988
16988
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16989
16989
  required_arguments = ['autonomousDatabaseId']
@@ -17099,7 +17099,7 @@ class DatabaseClient(object):
17099
17099
  :rtype: :class:`~oci.response.Response`
17100
17100
 
17101
17101
  :example:
17102
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/failover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard API.
17102
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/failover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard API.
17103
17103
  """
17104
17104
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17105
17105
  required_arguments = ['autonomousContainerDatabaseId']
@@ -17208,7 +17208,7 @@ class DatabaseClient(object):
17208
17208
  :rtype: :class:`~oci.response.Response`
17209
17209
 
17210
17210
  :example:
17211
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
17211
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/failover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use failover_autonomous_container_database_dataguard_association API.
17212
17212
  """
17213
17213
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17214
17214
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -17328,7 +17328,7 @@ class DatabaseClient(object):
17328
17328
  :rtype: :class:`~oci.response.Response`
17329
17329
 
17330
17330
  :example:
17331
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/failover_data_guard.py.html>`__ to see an example of how to use failover_data_guard API.
17331
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/failover_data_guard.py.html>`__ to see an example of how to use failover_data_guard API.
17332
17332
  """
17333
17333
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17334
17334
  required_arguments = ['databaseId']
@@ -17447,7 +17447,7 @@ class DatabaseClient(object):
17447
17447
  :rtype: :class:`~oci.response.Response`
17448
17448
 
17449
17449
  :example:
17450
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
17450
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/failover_data_guard_association.py.html>`__ to see an example of how to use failover_data_guard_association API.
17451
17451
  """
17452
17452
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17453
17453
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -17558,7 +17558,7 @@ class DatabaseClient(object):
17558
17558
  :rtype: :class:`~oci.response.Response`
17559
17559
 
17560
17560
  :example:
17561
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
17561
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/generate_autonomous_database_wallet.py.html>`__ to see an example of how to use generate_autonomous_database_wallet API.
17562
17562
  """
17563
17563
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17564
17564
  required_arguments = ['autonomousDatabaseId']
@@ -17671,7 +17671,7 @@ class DatabaseClient(object):
17671
17671
  :rtype: :class:`~oci.response.Response`
17672
17672
 
17673
17673
  :example:
17674
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
17674
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/generate_recommended_vm_cluster_network.py.html>`__ to see an example of how to use generate_recommended_vm_cluster_network API.
17675
17675
  """
17676
17676
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17677
17677
  required_arguments = ['exadataInfrastructureId']
@@ -17774,7 +17774,7 @@ class DatabaseClient(object):
17774
17774
  :rtype: :class:`~oci.response.Response`
17775
17775
 
17776
17776
  :example:
17777
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
17777
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_application_vip.py.html>`__ to see an example of how to use get_application_vip API.
17778
17778
  """
17779
17779
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17780
17780
  required_arguments = ['applicationVipId']
@@ -17869,7 +17869,7 @@ class DatabaseClient(object):
17869
17869
  :rtype: :class:`~oci.response.Response`
17870
17870
 
17871
17871
  :example:
17872
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
17872
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_container_database.py.html>`__ to see an example of how to use get_autonomous_container_database API.
17873
17873
  """
17874
17874
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17875
17875
  required_arguments = ['autonomousContainerDatabaseId']
@@ -17962,7 +17962,7 @@ class DatabaseClient(object):
17962
17962
  :rtype: :class:`~oci.response.Response`
17963
17963
 
17964
17964
  :example:
17965
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
17965
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_container_database_dataguard_association API.
17966
17966
  """
17967
17967
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17968
17968
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -18054,7 +18054,7 @@ class DatabaseClient(object):
18054
18054
  :rtype: :class:`~oci.response.Response`
18055
18055
 
18056
18056
  :example:
18057
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_container_database_resource_usage.py.html>`__ to see an example of how to use get_autonomous_container_database_resource_usage API.
18057
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_container_database_resource_usage.py.html>`__ to see an example of how to use get_autonomous_container_database_resource_usage API.
18058
18058
  """
18059
18059
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18060
18060
  required_arguments = ['autonomousContainerDatabaseId']
@@ -18152,7 +18152,7 @@ class DatabaseClient(object):
18152
18152
  :rtype: :class:`~oci.response.Response`
18153
18153
 
18154
18154
  :example:
18155
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
18155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database.py.html>`__ to see an example of how to use get_autonomous_database API.
18156
18156
  """
18157
18157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18158
18158
  required_arguments = ['autonomousDatabaseId']
@@ -18250,7 +18250,7 @@ class DatabaseClient(object):
18250
18250
  :rtype: :class:`~oci.response.Response`
18251
18251
 
18252
18252
  :example:
18253
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
18253
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_backup.py.html>`__ to see an example of how to use get_autonomous_database_backup API.
18254
18254
  """
18255
18255
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18256
18256
  required_arguments = ['autonomousDatabaseBackupId']
@@ -18353,7 +18353,7 @@ class DatabaseClient(object):
18353
18353
  :rtype: :class:`~oci.response.Response`
18354
18354
 
18355
18355
  :example:
18356
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
18356
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_dataguard_association.py.html>`__ to see an example of how to use get_autonomous_database_dataguard_association API.
18357
18357
  """
18358
18358
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18359
18359
  required_arguments = ['autonomousDatabaseId', 'autonomousDatabaseDataguardAssociationId']
@@ -18447,7 +18447,7 @@ class DatabaseClient(object):
18447
18447
  :rtype: :class:`~oci.response.Response`
18448
18448
 
18449
18449
  :example:
18450
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
18450
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use get_autonomous_database_regional_wallet API.
18451
18451
  """
18452
18452
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18453
18453
  required_arguments = []
@@ -18533,7 +18533,7 @@ class DatabaseClient(object):
18533
18533
  :rtype: :class:`~oci.response.Response`
18534
18534
 
18535
18535
  :example:
18536
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
18536
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_software_image.py.html>`__ to see an example of how to use get_autonomous_database_software_image API.
18537
18537
  """
18538
18538
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18539
18539
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -18631,7 +18631,7 @@ class DatabaseClient(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.151.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
18634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_database_wallet.py.html>`__ to see an example of how to use get_autonomous_database_wallet API.
18635
18635
  """
18636
18636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18637
18637
  required_arguments = ['autonomousDatabaseId']
@@ -18726,7 +18726,7 @@ class DatabaseClient(object):
18726
18726
  :rtype: :class:`~oci.response.Response`
18727
18727
 
18728
18728
  :example:
18729
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
18729
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use get_autonomous_exadata_infrastructure API.
18730
18730
  """
18731
18731
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18732
18732
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -18814,7 +18814,7 @@ class DatabaseClient(object):
18814
18814
  :rtype: :class:`~oci.response.Response`
18815
18815
 
18816
18816
  :example:
18817
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
18817
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_patch.py.html>`__ to see an example of how to use get_autonomous_patch API.
18818
18818
  """
18819
18819
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18820
18820
  required_arguments = ['autonomousPatchId']
@@ -18905,7 +18905,7 @@ class DatabaseClient(object):
18905
18905
  :rtype: :class:`~oci.response.Response`
18906
18906
 
18907
18907
  :example:
18908
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
18908
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_virtual_machine.py.html>`__ to see an example of how to use get_autonomous_virtual_machine API.
18909
18909
  """
18910
18910
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18911
18911
  required_arguments = ['autonomousVirtualMachineId']
@@ -19003,7 +19003,7 @@ class DatabaseClient(object):
19003
19003
  :rtype: :class:`~oci.response.Response`
19004
19004
 
19005
19005
  :example:
19006
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
19006
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_autonomous_vm_cluster API.
19007
19007
  """
19008
19008
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19009
19009
  required_arguments = ['autonomousVmClusterId']
@@ -19101,7 +19101,7 @@ class DatabaseClient(object):
19101
19101
  :rtype: :class:`~oci.response.Response`
19102
19102
 
19103
19103
  :example:
19104
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_autonomous_vm_cluster_resource_usage API.
19104
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_autonomous_vm_cluster_resource_usage API.
19105
19105
  """
19106
19106
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19107
19107
  required_arguments = ['autonomousVmClusterId']
@@ -19196,7 +19196,7 @@ class DatabaseClient(object):
19196
19196
  :rtype: :class:`~oci.response.Response`
19197
19197
 
19198
19198
  :example:
19199
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
19199
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_backup.py.html>`__ to see an example of how to use get_backup API.
19200
19200
  """
19201
19201
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19202
19202
  required_arguments = ['backupId']
@@ -19287,7 +19287,7 @@ class DatabaseClient(object):
19287
19287
  :rtype: :class:`~oci.response.Response`
19288
19288
 
19289
19289
  :example:
19290
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
19290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_backup_destination.py.html>`__ to see an example of how to use get_backup_destination API.
19291
19291
  """
19292
19292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19293
19293
  required_arguments = ['backupDestinationId']
@@ -19385,7 +19385,7 @@ class DatabaseClient(object):
19385
19385
  :rtype: :class:`~oci.response.Response`
19386
19386
 
19387
19387
  :example:
19388
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
19388
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster API.
19389
19389
  """
19390
19390
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19391
19391
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -19483,7 +19483,7 @@ class DatabaseClient(object):
19483
19483
  :rtype: :class:`~oci.response.Response`
19484
19484
 
19485
19485
  :example:
19486
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster_resource_usage API.
19486
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_autonomous_vm_cluster_resource_usage.py.html>`__ to see an example of how to use get_cloud_autonomous_vm_cluster_resource_usage API.
19487
19487
  """
19488
19488
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19489
19489
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -19581,7 +19581,7 @@ class DatabaseClient(object):
19581
19581
  :rtype: :class:`~oci.response.Response`
19582
19582
 
19583
19583
  :example:
19584
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
19584
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure API.
19585
19585
  """
19586
19586
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19587
19587
  required_arguments = ['cloudExadataInfrastructureId']
@@ -19684,7 +19684,7 @@ class DatabaseClient(object):
19684
19684
  :rtype: :class:`~oci.response.Response`
19685
19685
 
19686
19686
  :example:
19687
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
19687
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_exadata_infrastructure_unallocated_resources.py.html>`__ to see an example of how to use get_cloud_exadata_infrastructure_unallocated_resources API.
19688
19688
  """
19689
19689
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19690
19690
  required_arguments = ['cloudExadataInfrastructureId']
@@ -19790,7 +19790,7 @@ class DatabaseClient(object):
19790
19790
  :rtype: :class:`~oci.response.Response`
19791
19791
 
19792
19792
  :example:
19793
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
19793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_vm_cluster.py.html>`__ to see an example of how to use get_cloud_vm_cluster API.
19794
19794
  """
19795
19795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19796
19796
  required_arguments = ['cloudVmClusterId']
@@ -19889,7 +19889,7 @@ class DatabaseClient(object):
19889
19889
  :rtype: :class:`~oci.response.Response`
19890
19890
 
19891
19891
  :example:
19892
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
19892
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use get_cloud_vm_cluster_iorm_config API.
19893
19893
  """
19894
19894
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19895
19895
  required_arguments = ['cloudVmClusterId']
@@ -19992,7 +19992,7 @@ class DatabaseClient(object):
19992
19992
  :rtype: :class:`~oci.response.Response`
19993
19993
 
19994
19994
  :example:
19995
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
19995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_vm_cluster_update.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update API.
19996
19996
  """
19997
19997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19998
19998
  required_arguments = ['cloudVmClusterId', 'updateId']
@@ -20096,7 +20096,7 @@ class DatabaseClient(object):
20096
20096
  :rtype: :class:`~oci.response.Response`
20097
20097
 
20098
20098
  :example:
20099
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_cloud_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update_history_entry API.
20099
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_cloud_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_cloud_vm_cluster_update_history_entry API.
20100
20100
  """
20101
20101
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20102
20102
  required_arguments = ['cloudVmClusterId', 'updateHistoryEntryId']
@@ -20195,7 +20195,7 @@ class DatabaseClient(object):
20195
20195
  :rtype: :class:`~oci.response.Response`
20196
20196
 
20197
20197
  :example:
20198
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
20198
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_console_connection.py.html>`__ to see an example of how to use get_console_connection API.
20199
20199
  """
20200
20200
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20201
20201
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -20290,7 +20290,7 @@ class DatabaseClient(object):
20290
20290
  :rtype: :class:`~oci.response.Response`
20291
20291
 
20292
20292
  :example:
20293
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
20293
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
20294
20294
  """
20295
20295
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20296
20296
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -20392,7 +20392,7 @@ class DatabaseClient(object):
20392
20392
  :rtype: :class:`~oci.response.Response`
20393
20393
 
20394
20394
  :example:
20395
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
20395
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
20396
20396
  """
20397
20397
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20398
20398
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -20493,7 +20493,7 @@ class DatabaseClient(object):
20493
20493
  :rtype: :class:`~oci.response.Response`
20494
20494
 
20495
20495
  :example:
20496
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
20496
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_data_guard_association.py.html>`__ to see an example of how to use get_data_guard_association API.
20497
20497
  """
20498
20498
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20499
20499
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -20582,7 +20582,7 @@ class DatabaseClient(object):
20582
20582
  :rtype: :class:`~oci.response.Response`
20583
20583
 
20584
20584
  :example:
20585
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
20585
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_database.py.html>`__ to see an example of how to use get_database API.
20586
20586
  """
20587
20587
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20588
20588
  required_arguments = ['databaseId']
@@ -20670,7 +20670,7 @@ class DatabaseClient(object):
20670
20670
  :rtype: :class:`~oci.response.Response`
20671
20671
 
20672
20672
  :example:
20673
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
20673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_database_software_image.py.html>`__ to see an example of how to use get_database_software_image API.
20674
20674
  """
20675
20675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20676
20676
  required_arguments = ['databaseSoftwareImageId']
@@ -20766,7 +20766,7 @@ class DatabaseClient(object):
20766
20766
  :rtype: :class:`~oci.response.Response`
20767
20767
 
20768
20768
  :example:
20769
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
20769
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_database_upgrade_history_entry.py.html>`__ to see an example of how to use get_database_upgrade_history_entry API.
20770
20770
  """
20771
20771
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20772
20772
  required_arguments = ['databaseId', 'upgradeHistoryEntryId']
@@ -20862,7 +20862,7 @@ class DatabaseClient(object):
20862
20862
  :rtype: :class:`~oci.response.Response`
20863
20863
 
20864
20864
  :example:
20865
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
20865
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_home.py.html>`__ to see an example of how to use get_db_home API.
20866
20866
  """
20867
20867
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20868
20868
  required_arguments = ['dbHomeId']
@@ -20955,7 +20955,7 @@ class DatabaseClient(object):
20955
20955
  :rtype: :class:`~oci.response.Response`
20956
20956
 
20957
20957
  :example:
20958
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
20958
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_home_patch.py.html>`__ to see an example of how to use get_db_home_patch API.
20959
20959
  """
20960
20960
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20961
20961
  required_arguments = ['dbHomeId', 'patchId']
@@ -21049,7 +21049,7 @@ class DatabaseClient(object):
21049
21049
  :rtype: :class:`~oci.response.Response`
21050
21050
 
21051
21051
  :example:
21052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
21052
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_home_patch_history_entry.py.html>`__ to see an example of how to use get_db_home_patch_history_entry API.
21053
21053
  """
21054
21054
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21055
21055
  required_arguments = ['dbHomeId', 'patchHistoryEntryId']
@@ -21138,7 +21138,7 @@ class DatabaseClient(object):
21138
21138
  :rtype: :class:`~oci.response.Response`
21139
21139
 
21140
21140
  :example:
21141
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
21141
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_node.py.html>`__ to see an example of how to use get_db_node API.
21142
21142
  """
21143
21143
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21144
21144
  required_arguments = ['dbNodeId']
@@ -21234,7 +21234,7 @@ class DatabaseClient(object):
21234
21234
  :rtype: :class:`~oci.response.Response`
21235
21235
 
21236
21236
  :example:
21237
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
21237
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_server.py.html>`__ to see an example of how to use get_db_server API.
21238
21238
  """
21239
21239
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21240
21240
  required_arguments = ['dbServerId', 'exadataInfrastructureId']
@@ -21343,7 +21343,7 @@ class DatabaseClient(object):
21343
21343
  :rtype: :class:`~oci.response.Response`
21344
21344
 
21345
21345
  :example:
21346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
21346
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_system.py.html>`__ to see an example of how to use get_db_system API.
21347
21347
  """
21348
21348
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21349
21349
  required_arguments = ['dbSystemId']
@@ -21436,7 +21436,7 @@ class DatabaseClient(object):
21436
21436
  :rtype: :class:`~oci.response.Response`
21437
21437
 
21438
21438
  :example:
21439
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
21439
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_system_patch.py.html>`__ to see an example of how to use get_db_system_patch API.
21440
21440
  """
21441
21441
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21442
21442
  required_arguments = ['dbSystemId', 'patchId']
@@ -21530,7 +21530,7 @@ class DatabaseClient(object):
21530
21530
  :rtype: :class:`~oci.response.Response`
21531
21531
 
21532
21532
  :example:
21533
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
21533
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_system_patch_history_entry.py.html>`__ to see an example of how to use get_db_system_patch_history_entry API.
21534
21534
  """
21535
21535
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21536
21536
  required_arguments = ['dbSystemId', 'patchHistoryEntryId']
@@ -21627,7 +21627,7 @@ class DatabaseClient(object):
21627
21627
  :rtype: :class:`~oci.response.Response`
21628
21628
 
21629
21629
  :example:
21630
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
21630
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_db_system_upgrade_history_entry.py.html>`__ to see an example of how to use get_db_system_upgrade_history_entry API.
21631
21631
  """
21632
21632
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21633
21633
  required_arguments = ['dbSystemId', 'upgradeHistoryEntryId']
@@ -21732,7 +21732,7 @@ class DatabaseClient(object):
21732
21732
  :rtype: :class:`~oci.response.Response`
21733
21733
 
21734
21734
  :example:
21735
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
21735
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadata_infrastructure.py.html>`__ to see an example of how to use get_exadata_infrastructure API.
21736
21736
  """
21737
21737
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21738
21738
  required_arguments = ['exadataInfrastructureId']
@@ -21846,7 +21846,7 @@ class DatabaseClient(object):
21846
21846
  :rtype: :class:`~oci.response.Response`
21847
21847
 
21848
21848
  :example:
21849
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
21849
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadata_infrastructure_ocpus.py.html>`__ to see an example of how to use get_exadata_infrastructure_ocpus API.
21850
21850
  """
21851
21851
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21852
21852
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -21949,7 +21949,7 @@ class DatabaseClient(object):
21949
21949
  :rtype: :class:`~oci.response.Response`
21950
21950
 
21951
21951
  :example:
21952
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
21952
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadata_infrastructure_un_allocated_resources.py.html>`__ to see an example of how to use get_exadata_infrastructure_un_allocated_resources API.
21953
21953
  """
21954
21954
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21955
21955
  required_arguments = ['exadataInfrastructureId']
@@ -22066,7 +22066,7 @@ class DatabaseClient(object):
22066
22066
  :rtype: :class:`~oci.response.Response`
22067
22067
 
22068
22068
  :example:
22069
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
22069
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadata_iorm_config.py.html>`__ to see an example of how to use get_exadata_iorm_config API.
22070
22070
  """
22071
22071
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22072
22072
  required_arguments = ['dbSystemId']
@@ -22164,7 +22164,7 @@ class DatabaseClient(object):
22164
22164
  :rtype: :class:`~oci.response.Response`
22165
22165
 
22166
22166
  :example:
22167
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
22167
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadb_vm_cluster.py.html>`__ to see an example of how to use get_exadb_vm_cluster API.
22168
22168
  """
22169
22169
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22170
22170
  required_arguments = ['exadbVmClusterId']
@@ -22267,7 +22267,7 @@ class DatabaseClient(object):
22267
22267
  :rtype: :class:`~oci.response.Response`
22268
22268
 
22269
22269
  :example:
22270
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
22270
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadb_vm_cluster_update.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update API.
22271
22271
  """
22272
22272
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22273
22273
  required_arguments = ['exadbVmClusterId', 'updateId']
@@ -22371,7 +22371,7 @@ class DatabaseClient(object):
22371
22371
  :rtype: :class:`~oci.response.Response`
22372
22372
 
22373
22373
  :example:
22374
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exadb_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update_history_entry API.
22374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exadb_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_exadb_vm_cluster_update_history_entry API.
22375
22375
  """
22376
22376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22377
22377
  required_arguments = ['exadbVmClusterId', 'updateHistoryEntryId']
@@ -22470,7 +22470,7 @@ class DatabaseClient(object):
22470
22470
  :rtype: :class:`~oci.response.Response`
22471
22471
 
22472
22472
  :example:
22473
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
22473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_exascale_db_storage_vault.py.html>`__ to see an example of how to use get_exascale_db_storage_vault API.
22474
22474
  """
22475
22475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22476
22476
  required_arguments = ['exascaleDbStorageVaultId']
@@ -22568,7 +22568,7 @@ class DatabaseClient(object):
22568
22568
  :rtype: :class:`~oci.response.Response`
22569
22569
 
22570
22570
  :example:
22571
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
22571
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_execution_action.py.html>`__ to see an example of how to use get_execution_action API.
22572
22572
  """
22573
22573
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22574
22574
  required_arguments = ['executionActionId']
@@ -22666,7 +22666,7 @@ class DatabaseClient(object):
22666
22666
  :rtype: :class:`~oci.response.Response`
22667
22667
 
22668
22668
  :example:
22669
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
22669
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_execution_window.py.html>`__ to see an example of how to use get_execution_window API.
22670
22670
  """
22671
22671
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22672
22672
  required_arguments = ['executionWindowId']
@@ -22765,7 +22765,7 @@ class DatabaseClient(object):
22765
22765
  :rtype: :class:`~oci.response.Response`
22766
22766
 
22767
22767
  :example:
22768
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
22768
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_backup_job.py.html>`__ to see an example of how to use get_external_backup_job API.
22769
22769
  """
22770
22770
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22771
22771
  required_arguments = ['backupId']
@@ -22856,7 +22856,7 @@ class DatabaseClient(object):
22856
22856
  :rtype: :class:`~oci.response.Response`
22857
22857
 
22858
22858
  :example:
22859
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
22859
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_container_database.py.html>`__ to see an example of how to use get_external_container_database API.
22860
22860
  """
22861
22861
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22862
22862
  required_arguments = ['externalContainerDatabaseId']
@@ -22955,7 +22955,7 @@ class DatabaseClient(object):
22955
22955
  :rtype: :class:`~oci.response.Response`
22956
22956
 
22957
22957
  :example:
22958
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
22958
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_database_connector.py.html>`__ to see an example of how to use get_external_database_connector API.
22959
22959
  """
22960
22960
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22961
22961
  required_arguments = ['externalDatabaseConnectorId']
@@ -23053,7 +23053,7 @@ class DatabaseClient(object):
23053
23053
  :rtype: :class:`~oci.response.Response`
23054
23054
 
23055
23055
  :example:
23056
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
23056
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_non_container_database.py.html>`__ to see an example of how to use get_external_non_container_database API.
23057
23057
  """
23058
23058
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23059
23059
  required_arguments = ['externalNonContainerDatabaseId']
@@ -23152,7 +23152,7 @@ class DatabaseClient(object):
23152
23152
  :rtype: :class:`~oci.response.Response`
23153
23153
 
23154
23154
  :example:
23155
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
23155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_external_pluggable_database.py.html>`__ to see an example of how to use get_external_pluggable_database API.
23156
23156
  """
23157
23157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23158
23158
  required_arguments = ['externalPluggableDatabaseId']
@@ -23259,7 +23259,7 @@ class DatabaseClient(object):
23259
23259
  :rtype: :class:`~oci.response.Response`
23260
23260
 
23261
23261
  :example:
23262
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
23262
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_infrastructure_target_versions.py.html>`__ to see an example of how to use get_infrastructure_target_versions API.
23263
23263
  """
23264
23264
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23265
23265
  required_arguments = ['compartmentId']
@@ -23363,7 +23363,7 @@ class DatabaseClient(object):
23363
23363
  :rtype: :class:`~oci.response.Response`
23364
23364
 
23365
23365
  :example:
23366
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
23366
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_key_store.py.html>`__ to see an example of how to use get_key_store API.
23367
23367
  """
23368
23368
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23369
23369
  required_arguments = ['keyStoreId']
@@ -23456,7 +23456,7 @@ class DatabaseClient(object):
23456
23456
  :rtype: :class:`~oci.response.Response`
23457
23457
 
23458
23458
  :example:
23459
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
23459
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_maintenance_run.py.html>`__ to see an example of how to use get_maintenance_run API.
23460
23460
  """
23461
23461
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23462
23462
  required_arguments = ['maintenanceRunId']
@@ -23542,7 +23542,7 @@ class DatabaseClient(object):
23542
23542
  :rtype: :class:`~oci.response.Response`
23543
23543
 
23544
23544
  :example:
23545
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
23545
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_maintenance_run_history.py.html>`__ to see an example of how to use get_maintenance_run_history API.
23546
23546
  """
23547
23547
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23548
23548
  required_arguments = ['maintenanceRunHistoryId']
@@ -23633,7 +23633,7 @@ class DatabaseClient(object):
23633
23633
  :rtype: :class:`~oci.response.Response`
23634
23634
 
23635
23635
  :example:
23636
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
23636
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_oneoff_patch.py.html>`__ to see an example of how to use get_oneoff_patch API.
23637
23637
  """
23638
23638
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23639
23639
  required_arguments = ['oneoffPatchId']
@@ -23736,7 +23736,7 @@ class DatabaseClient(object):
23736
23736
  :rtype: :class:`~oci.response.Response`
23737
23737
 
23738
23738
  :example:
23739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
23739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_pdb_conversion_history_entry.py.html>`__ to see an example of how to use get_pdb_conversion_history_entry API.
23740
23740
  """
23741
23741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23742
23742
  required_arguments = ['databaseId', 'pdbConversionHistoryEntryId']
@@ -23832,7 +23832,7 @@ class DatabaseClient(object):
23832
23832
  :rtype: :class:`~oci.response.Response`
23833
23833
 
23834
23834
  :example:
23835
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
23835
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_pluggable_database.py.html>`__ to see an example of how to use get_pluggable_database API.
23836
23836
  """
23837
23837
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23838
23838
  required_arguments = ['pluggableDatabaseId']
@@ -23923,7 +23923,7 @@ class DatabaseClient(object):
23923
23923
  :rtype: :class:`~oci.response.Response`
23924
23924
 
23925
23925
  :example:
23926
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
23926
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduled_action.py.html>`__ to see an example of how to use get_scheduled_action API.
23927
23927
  """
23928
23928
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23929
23929
  required_arguments = ['scheduledActionId']
@@ -24021,7 +24021,7 @@ class DatabaseClient(object):
24021
24021
  :rtype: :class:`~oci.response.Response`
24022
24022
 
24023
24023
  :example:
24024
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
24024
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduling_plan.py.html>`__ to see an example of how to use get_scheduling_plan API.
24025
24025
  """
24026
24026
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24027
24027
  required_arguments = ['schedulingPlanId']
@@ -24119,7 +24119,7 @@ class DatabaseClient(object):
24119
24119
  :rtype: :class:`~oci.response.Response`
24120
24120
 
24121
24121
  :example:
24122
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
24122
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduling_policy.py.html>`__ to see an example of how to use get_scheduling_policy API.
24123
24123
  """
24124
24124
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24125
24125
  required_arguments = ['schedulingPolicyId']
@@ -24222,7 +24222,7 @@ class DatabaseClient(object):
24222
24222
  :rtype: :class:`~oci.response.Response`
24223
24223
 
24224
24224
  :example:
24225
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
24225
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_scheduling_window.py.html>`__ to see an example of how to use get_scheduling_window API.
24226
24226
  """
24227
24227
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24228
24228
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -24321,7 +24321,7 @@ class DatabaseClient(object):
24321
24321
  :rtype: :class:`~oci.response.Response`
24322
24322
 
24323
24323
  :example:
24324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
24324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster.py.html>`__ to see an example of how to use get_vm_cluster API.
24325
24325
  """
24326
24326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24327
24327
  required_arguments = ['vmClusterId']
@@ -24425,7 +24425,7 @@ class DatabaseClient(object):
24425
24425
  :rtype: :class:`~oci.response.Response`
24426
24426
 
24427
24427
  :example:
24428
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
24428
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_network.py.html>`__ to see an example of how to use get_vm_cluster_network API.
24429
24429
  """
24430
24430
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24431
24431
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -24526,7 +24526,7 @@ class DatabaseClient(object):
24526
24526
  :rtype: :class:`~oci.response.Response`
24527
24527
 
24528
24528
  :example:
24529
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
24529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_patch.py.html>`__ to see an example of how to use get_vm_cluster_patch API.
24530
24530
  """
24531
24531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24532
24532
  required_arguments = ['vmClusterId', 'patchId']
@@ -24620,7 +24620,7 @@ class DatabaseClient(object):
24620
24620
  :rtype: :class:`~oci.response.Response`
24621
24621
 
24622
24622
  :example:
24623
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
24623
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_patch_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_patch_history_entry API.
24624
24624
  """
24625
24625
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24626
24626
  required_arguments = ['vmClusterId', 'patchHistoryEntryId']
@@ -24717,7 +24717,7 @@ class DatabaseClient(object):
24717
24717
  :rtype: :class:`~oci.response.Response`
24718
24718
 
24719
24719
  :example:
24720
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
24720
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_update.py.html>`__ to see an example of how to use get_vm_cluster_update API.
24721
24721
  """
24722
24722
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24723
24723
  required_arguments = ['vmClusterId', 'updateId']
@@ -24821,7 +24821,7 @@ class DatabaseClient(object):
24821
24821
  :rtype: :class:`~oci.response.Response`
24822
24822
 
24823
24823
  :example:
24824
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
24824
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/get_vm_cluster_update_history_entry.py.html>`__ to see an example of how to use get_vm_cluster_update_history_entry API.
24825
24825
  """
24826
24826
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24827
24827
  required_arguments = ['vmClusterId', 'updateHistoryEntryId']
@@ -24922,7 +24922,7 @@ class DatabaseClient(object):
24922
24922
  :rtype: :class:`~oci.response.Response`
24923
24923
 
24924
24924
  :example:
24925
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
24925
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/launch_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use launch_autonomous_exadata_infrastructure API.
24926
24926
  """
24927
24927
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24928
24928
  required_arguments = []
@@ -25034,7 +25034,7 @@ class DatabaseClient(object):
25034
25034
  :rtype: :class:`~oci.response.Response`
25035
25035
 
25036
25036
  :example:
25037
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
25037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/launch_db_system.py.html>`__ to see an example of how to use launch_db_system API.
25038
25038
  """
25039
25039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25040
25040
  required_arguments = []
@@ -25152,7 +25152,7 @@ class DatabaseClient(object):
25152
25152
  :rtype: :class:`~oci.response.Response`
25153
25153
 
25154
25154
  :example:
25155
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
25155
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_application_vips.py.html>`__ to see an example of how to use list_application_vips API.
25156
25156
  """
25157
25157
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25158
25158
  required_arguments = ['compartmentId', 'cloudVmClusterId']
@@ -25280,7 +25280,7 @@ class DatabaseClient(object):
25280
25280
  :rtype: :class:`~oci.response.Response`
25281
25281
 
25282
25282
  :example:
25283
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
25283
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_container_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_container_database_dataguard_associations API.
25284
25284
  """
25285
25285
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25286
25286
  required_arguments = ['autonomousContainerDatabaseId']
@@ -25401,7 +25401,7 @@ class DatabaseClient(object):
25401
25401
  :rtype: :class:`~oci.response.Response`
25402
25402
 
25403
25403
  :example:
25404
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
25404
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_container_database_versions.py.html>`__ to see an example of how to use list_autonomous_container_database_versions API.
25405
25405
  """
25406
25406
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25407
25407
  required_arguments = ['compartmentId', 'serviceComponent']
@@ -25563,7 +25563,7 @@ class DatabaseClient(object):
25563
25563
  :rtype: :class:`~oci.response.Response`
25564
25564
 
25565
25565
  :example:
25566
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
25566
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_container_databases.py.html>`__ to see an example of how to use list_autonomous_container_databases API.
25567
25567
  """
25568
25568
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25569
25569
  required_arguments = ['compartmentId']
@@ -25739,7 +25739,7 @@ class DatabaseClient(object):
25739
25739
  :rtype: :class:`~oci.response.Response`
25740
25740
 
25741
25741
  :example:
25742
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
25742
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_backups.py.html>`__ to see an example of how to use list_autonomous_database_backups API.
25743
25743
  """
25744
25744
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25745
25745
  required_arguments = []
@@ -25876,7 +25876,7 @@ class DatabaseClient(object):
25876
25876
  :rtype: :class:`~oci.response.Response`
25877
25877
 
25878
25878
  :example:
25879
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
25879
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_character_sets.py.html>`__ to see an example of how to use list_autonomous_database_character_sets API.
25880
25880
  """
25881
25881
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25882
25882
  required_arguments = []
@@ -26017,7 +26017,7 @@ class DatabaseClient(object):
26017
26017
  :rtype: :class:`~oci.response.Response`
26018
26018
 
26019
26019
  :example:
26020
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
26020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_clones.py.html>`__ to see an example of how to use list_autonomous_database_clones API.
26021
26021
  """
26022
26022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26023
26023
  required_arguments = ['autonomousDatabaseId', 'compartmentId']
@@ -26167,7 +26167,7 @@ class DatabaseClient(object):
26167
26167
  :rtype: :class:`~oci.response.Response`
26168
26168
 
26169
26169
  :example:
26170
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
26170
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_dataguard_associations.py.html>`__ to see an example of how to use list_autonomous_database_dataguard_associations API.
26171
26171
  """
26172
26172
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26173
26173
  required_arguments = ['autonomousDatabaseId']
@@ -26278,7 +26278,7 @@ class DatabaseClient(object):
26278
26278
  :rtype: :class:`~oci.response.Response`
26279
26279
 
26280
26280
  :example:
26281
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
26281
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_peers.py.html>`__ to see an example of how to use list_autonomous_database_peers API.
26282
26282
  """
26283
26283
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26284
26284
  required_arguments = ['autonomousDatabaseId']
@@ -26392,7 +26392,7 @@ class DatabaseClient(object):
26392
26392
  :rtype: :class:`~oci.response.Response`
26393
26393
 
26394
26394
  :example:
26395
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
26395
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_refreshable_clones.py.html>`__ to see an example of how to use list_autonomous_database_refreshable_clones API.
26396
26396
  """
26397
26397
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26398
26398
  required_arguments = ['autonomousDatabaseId']
@@ -26529,7 +26529,7 @@ class DatabaseClient(object):
26529
26529
  :rtype: :class:`~oci.response.Response`
26530
26530
 
26531
26531
  :example:
26532
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
26532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_database_software_images.py.html>`__ to see an example of how to use list_autonomous_database_software_images API.
26533
26533
  """
26534
26534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26535
26535
  required_arguments = ['compartmentId', 'imageShapeFamily']
@@ -26730,7 +26730,7 @@ class DatabaseClient(object):
26730
26730
  :rtype: :class:`~oci.response.Response`
26731
26731
 
26732
26732
  :example:
26733
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
26733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_databases.py.html>`__ to see an example of how to use list_autonomous_databases API.
26734
26734
  """
26735
26735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26736
26736
  required_arguments = ['compartmentId']
@@ -26916,7 +26916,7 @@ class DatabaseClient(object):
26916
26916
  :rtype: :class:`~oci.response.Response`
26917
26917
 
26918
26918
  :example:
26919
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
26919
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_db_preview_versions.py.html>`__ to see an example of how to use list_autonomous_db_preview_versions API.
26920
26920
  """
26921
26921
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26922
26922
  required_arguments = ['compartmentId']
@@ -27047,7 +27047,7 @@ class DatabaseClient(object):
27047
27047
  :rtype: :class:`~oci.response.Response`
27048
27048
 
27049
27049
  :example:
27050
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
27050
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_db_versions.py.html>`__ to see an example of how to use list_autonomous_db_versions API.
27051
27051
  """
27052
27052
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27053
27053
  required_arguments = ['compartmentId']
@@ -27171,7 +27171,7 @@ class DatabaseClient(object):
27171
27171
  :rtype: :class:`~oci.response.Response`
27172
27172
 
27173
27173
  :example:
27174
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
27174
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_exadata_infrastructure_shapes.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructure_shapes API.
27175
27175
  """
27176
27176
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27177
27177
  required_arguments = ['availabilityDomain', 'compartmentId']
@@ -27295,7 +27295,7 @@ class DatabaseClient(object):
27295
27295
  :rtype: :class:`~oci.response.Response`
27296
27296
 
27297
27297
  :example:
27298
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
27298
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_exadata_infrastructures.py.html>`__ to see an example of how to use list_autonomous_exadata_infrastructures API.
27299
27299
  """
27300
27300
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27301
27301
  required_arguments = ['compartmentId']
@@ -27436,7 +27436,7 @@ class DatabaseClient(object):
27436
27436
  :rtype: :class:`~oci.response.Response`
27437
27437
 
27438
27438
  :example:
27439
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
27439
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_virtual_machines.py.html>`__ to see an example of how to use list_autonomous_virtual_machines API.
27440
27440
  """
27441
27441
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27442
27442
  required_arguments = ['compartmentId', 'autonomousVmClusterId']
@@ -27554,7 +27554,7 @@ class DatabaseClient(object):
27554
27554
  :rtype: :class:`~oci.response.Response`
27555
27555
 
27556
27556
  :example:
27557
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_autonomous_vm_cluster_acd_resource_usage API.
27557
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_autonomous_vm_cluster_acd_resource_usage API.
27558
27558
  """
27559
27559
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27560
27560
  required_arguments = ['autonomousVmClusterId']
@@ -27691,7 +27691,7 @@ class DatabaseClient(object):
27691
27691
  :rtype: :class:`~oci.response.Response`
27692
27692
 
27693
27693
  :example:
27694
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
27694
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_autonomous_vm_clusters API.
27695
27695
  """
27696
27696
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27697
27697
  required_arguments = ['compartmentId']
@@ -27828,7 +27828,7 @@ class DatabaseClient(object):
27828
27828
  :rtype: :class:`~oci.response.Response`
27829
27829
 
27830
27830
  :example:
27831
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
27831
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_backup_destination.py.html>`__ to see an example of how to use list_backup_destination API.
27832
27832
  """
27833
27833
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27834
27834
  required_arguments = ['compartmentId']
@@ -27960,7 +27960,7 @@ class DatabaseClient(object):
27960
27960
  :rtype: :class:`~oci.response.Response`
27961
27961
 
27962
27962
  :example:
27963
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
27963
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_backups.py.html>`__ to see an example of how to use list_backups API.
27964
27964
  """
27965
27965
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27966
27966
  required_arguments = []
@@ -28097,7 +28097,7 @@ class DatabaseClient(object):
28097
28097
  :rtype: :class:`~oci.response.Response`
28098
28098
 
28099
28099
  :example:
28100
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_cloud_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_cluster_acd_resource_usage API.
28100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_autonomous_vm_cluster_acd_resource_usage.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_cluster_acd_resource_usage API.
28101
28101
  """
28102
28102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28103
28103
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -28237,7 +28237,7 @@ class DatabaseClient(object):
28237
28237
  :rtype: :class:`~oci.response.Response`
28238
28238
 
28239
28239
  :example:
28240
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
28240
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_autonomous_vm_clusters.py.html>`__ to see an example of how to use list_cloud_autonomous_vm_clusters API.
28241
28241
  """
28242
28242
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28243
28243
  required_arguments = ['compartmentId']
@@ -28394,7 +28394,7 @@ class DatabaseClient(object):
28394
28394
  :rtype: :class:`~oci.response.Response`
28395
28395
 
28396
28396
  :example:
28397
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
28397
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_exadata_infrastructures.py.html>`__ to see an example of how to use list_cloud_exadata_infrastructures API.
28398
28398
  """
28399
28399
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28400
28400
  required_arguments = ['compartmentId']
@@ -28533,7 +28533,7 @@ class DatabaseClient(object):
28533
28533
  :rtype: :class:`~oci.response.Response`
28534
28534
 
28535
28535
  :example:
28536
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_cloud_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_cloud_vm_cluster_update_history_entries API.
28536
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_cloud_vm_cluster_update_history_entries API.
28537
28537
  """
28538
28538
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28539
28539
  required_arguments = ['cloudVmClusterId']
@@ -28661,7 +28661,7 @@ class DatabaseClient(object):
28661
28661
  :rtype: :class:`~oci.response.Response`
28662
28662
 
28663
28663
  :example:
28664
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
28664
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_vm_cluster_updates.py.html>`__ to see an example of how to use list_cloud_vm_cluster_updates API.
28665
28665
  """
28666
28666
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28667
28667
  required_arguments = ['cloudVmClusterId']
@@ -28810,7 +28810,7 @@ class DatabaseClient(object):
28810
28810
  :rtype: :class:`~oci.response.Response`
28811
28811
 
28812
28812
  :example:
28813
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
28813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_cloud_vm_clusters.py.html>`__ to see an example of how to use list_cloud_vm_clusters API.
28814
28814
  """
28815
28815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28816
28816
  required_arguments = ['compartmentId']
@@ -28944,7 +28944,7 @@ class DatabaseClient(object):
28944
28944
  :rtype: :class:`~oci.response.Response`
28945
28945
 
28946
28946
  :example:
28947
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
28947
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_console_connections.py.html>`__ to see an example of how to use list_console_connections API.
28948
28948
  """
28949
28949
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28950
28950
  required_arguments = ['dbNodeId']
@@ -29059,7 +29059,7 @@ class DatabaseClient(object):
29059
29059
  :rtype: :class:`~oci.response.Response`
29060
29060
 
29061
29061
  :example:
29062
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
29062
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
29063
29063
  """
29064
29064
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29065
29065
  required_arguments = ['dbNodeId']
@@ -29209,7 +29209,7 @@ class DatabaseClient(object):
29209
29209
  :rtype: :class:`~oci.response.Response`
29210
29210
 
29211
29211
  :example:
29212
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
29212
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_container_database_patches.py.html>`__ to see an example of how to use list_container_database_patches API.
29213
29213
  """
29214
29214
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29215
29215
  required_arguments = ['autonomousContainerDatabaseId', 'compartmentId']
@@ -29327,7 +29327,7 @@ class DatabaseClient(object):
29327
29327
  :rtype: :class:`~oci.response.Response`
29328
29328
 
29329
29329
  :example:
29330
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
29330
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_data_guard_associations.py.html>`__ to see an example of how to use list_data_guard_associations API.
29331
29331
  """
29332
29332
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29333
29333
  required_arguments = ['databaseId']
@@ -29475,7 +29475,7 @@ class DatabaseClient(object):
29475
29475
  :rtype: :class:`~oci.response.Response`
29476
29476
 
29477
29477
  :example:
29478
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
29478
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_database_software_images.py.html>`__ to see an example of how to use list_database_software_images API.
29479
29479
  """
29480
29480
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29481
29481
  required_arguments = ['compartmentId']
@@ -29648,7 +29648,7 @@ class DatabaseClient(object):
29648
29648
  :rtype: :class:`~oci.response.Response`
29649
29649
 
29650
29650
  :example:
29651
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
29651
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_database_upgrade_history_entries.py.html>`__ to see an example of how to use list_database_upgrade_history_entries API.
29652
29652
  """
29653
29653
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29654
29654
  required_arguments = ['databaseId']
@@ -29823,7 +29823,7 @@ class DatabaseClient(object):
29823
29823
  :rtype: :class:`~oci.response.Response`
29824
29824
 
29825
29825
  :example:
29826
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
29826
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_databases.py.html>`__ to see an example of how to use list_databases API.
29827
29827
  """
29828
29828
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29829
29829
  required_arguments = ['compartmentId']
@@ -29953,7 +29953,7 @@ class DatabaseClient(object):
29953
29953
  :rtype: :class:`~oci.response.Response`
29954
29954
 
29955
29955
  :example:
29956
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
29956
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_home_patch_history_entries.py.html>`__ to see an example of how to use list_db_home_patch_history_entries API.
29957
29957
  """
29958
29958
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29959
29959
  required_arguments = ['dbHomeId']
@@ -30061,7 +30061,7 @@ class DatabaseClient(object):
30061
30061
  :rtype: :class:`~oci.response.Response`
30062
30062
 
30063
30063
  :example:
30064
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
30064
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_home_patches.py.html>`__ to see an example of how to use list_db_home_patches API.
30065
30065
  """
30066
30066
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30067
30067
  required_arguments = ['dbHomeId']
@@ -30205,7 +30205,7 @@ class DatabaseClient(object):
30205
30205
  :rtype: :class:`~oci.response.Response`
30206
30206
 
30207
30207
  :example:
30208
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
30208
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_homes.py.html>`__ to see an example of how to use list_db_homes API.
30209
30209
  """
30210
30210
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30211
30211
  required_arguments = ['compartmentId']
@@ -30369,7 +30369,7 @@ class DatabaseClient(object):
30369
30369
  :rtype: :class:`~oci.response.Response`
30370
30370
 
30371
30371
  :example:
30372
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
30372
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_nodes.py.html>`__ to see an example of how to use list_db_nodes API.
30373
30373
  """
30374
30374
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30375
30375
  required_arguments = ['compartmentId']
@@ -30525,7 +30525,7 @@ class DatabaseClient(object):
30525
30525
  :rtype: :class:`~oci.response.Response`
30526
30526
 
30527
30527
  :example:
30528
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
30528
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_servers.py.html>`__ to see an example of how to use list_db_servers API.
30529
30529
  """
30530
30530
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30531
30531
  required_arguments = ['compartmentId', 'exadataInfrastructureId']
@@ -30650,7 +30650,7 @@ class DatabaseClient(object):
30650
30650
  :rtype: :class:`~oci.response.Response`
30651
30651
 
30652
30652
  :example:
30653
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
30653
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_compute_performances.py.html>`__ to see an example of how to use list_db_system_compute_performances API.
30654
30654
  """
30655
30655
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30656
30656
  required_arguments = []
@@ -30747,7 +30747,7 @@ class DatabaseClient(object):
30747
30747
  :rtype: :class:`~oci.response.Response`
30748
30748
 
30749
30749
  :example:
30750
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
30750
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_patch_history_entries.py.html>`__ to see an example of how to use list_db_system_patch_history_entries API.
30751
30751
  """
30752
30752
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30753
30753
  required_arguments = ['dbSystemId']
@@ -30855,7 +30855,7 @@ class DatabaseClient(object):
30855
30855
  :rtype: :class:`~oci.response.Response`
30856
30856
 
30857
30857
  :example:
30858
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
30858
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_patches.py.html>`__ to see an example of how to use list_db_system_patches API.
30859
30859
  """
30860
30860
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30861
30861
  required_arguments = ['dbSystemId']
@@ -30966,7 +30966,7 @@ class DatabaseClient(object):
30966
30966
  :rtype: :class:`~oci.response.Response`
30967
30967
 
30968
30968
  :example:
30969
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
30969
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_shapes.py.html>`__ to see an example of how to use list_db_system_shapes API.
30970
30970
  """
30971
30971
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
30972
30972
  required_arguments = ['compartmentId']
@@ -31067,7 +31067,7 @@ class DatabaseClient(object):
31067
31067
  :rtype: :class:`~oci.response.Response`
31068
31068
 
31069
31069
  :example:
31070
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
31070
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_storage_performances.py.html>`__ to see an example of how to use list_db_system_storage_performances API.
31071
31071
  """
31072
31072
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31073
31073
  required_arguments = ['storageManagement']
@@ -31194,7 +31194,7 @@ class DatabaseClient(object):
31194
31194
  :rtype: :class:`~oci.response.Response`
31195
31195
 
31196
31196
  :example:
31197
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
31197
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_system_upgrade_history_entries.py.html>`__ to see an example of how to use list_db_system_upgrade_history_entries API.
31198
31198
  """
31199
31199
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31200
31200
  required_arguments = ['dbSystemId']
@@ -31376,7 +31376,7 @@ class DatabaseClient(object):
31376
31376
  :rtype: :class:`~oci.response.Response`
31377
31377
 
31378
31378
  :example:
31379
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
31379
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_systems.py.html>`__ to see an example of how to use list_db_systems API.
31380
31380
  """
31381
31381
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31382
31382
  required_arguments = ['compartmentId']
@@ -31527,7 +31527,7 @@ class DatabaseClient(object):
31527
31527
  :rtype: :class:`~oci.response.Response`
31528
31528
 
31529
31529
  :example:
31530
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
31530
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_db_versions.py.html>`__ to see an example of how to use list_db_versions API.
31531
31531
  """
31532
31532
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31533
31533
  required_arguments = ['compartmentId']
@@ -31668,7 +31668,7 @@ class DatabaseClient(object):
31668
31668
  :rtype: :class:`~oci.response.Response`
31669
31669
 
31670
31670
  :example:
31671
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
31671
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exadata_infrastructures.py.html>`__ to see an example of how to use list_exadata_infrastructures API.
31672
31672
  """
31673
31673
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31674
31674
  required_arguments = ['compartmentId']
@@ -31815,7 +31815,7 @@ class DatabaseClient(object):
31815
31815
  :rtype: :class:`~oci.response.Response`
31816
31816
 
31817
31817
  :example:
31818
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_exadb_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_exadb_vm_cluster_update_history_entries API.
31818
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exadb_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_exadb_vm_cluster_update_history_entries API.
31819
31819
  """
31820
31820
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31821
31821
  required_arguments = ['exadbVmClusterId']
@@ -31946,7 +31946,7 @@ class DatabaseClient(object):
31946
31946
  :rtype: :class:`~oci.response.Response`
31947
31947
 
31948
31948
  :example:
31949
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
31949
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exadb_vm_cluster_updates.py.html>`__ to see an example of how to use list_exadb_vm_cluster_updates API.
31950
31950
  """
31951
31951
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
31952
31952
  required_arguments = ['exadbVmClusterId']
@@ -32095,7 +32095,7 @@ class DatabaseClient(object):
32095
32095
  :rtype: :class:`~oci.response.Response`
32096
32096
 
32097
32097
  :example:
32098
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
32098
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exadb_vm_clusters.py.html>`__ to see an example of how to use list_exadb_vm_clusters API.
32099
32099
  """
32100
32100
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32101
32101
  required_arguments = ['compartmentId']
@@ -32255,7 +32255,7 @@ class DatabaseClient(object):
32255
32255
  :rtype: :class:`~oci.response.Response`
32256
32256
 
32257
32257
  :example:
32258
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
32258
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_exascale_db_storage_vaults.py.html>`__ to see an example of how to use list_exascale_db_storage_vaults API.
32259
32259
  """
32260
32260
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32261
32261
  required_arguments = ['compartmentId']
@@ -32412,7 +32412,7 @@ class DatabaseClient(object):
32412
32412
  :rtype: :class:`~oci.response.Response`
32413
32413
 
32414
32414
  :example:
32415
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
32415
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_execution_actions.py.html>`__ to see an example of how to use list_execution_actions API.
32416
32416
  """
32417
32417
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32418
32418
  required_arguments = ['compartmentId']
@@ -32567,7 +32567,7 @@ class DatabaseClient(object):
32567
32567
  :rtype: :class:`~oci.response.Response`
32568
32568
 
32569
32569
  :example:
32570
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
32570
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_execution_windows.py.html>`__ to see an example of how to use list_execution_windows API.
32571
32571
  """
32572
32572
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32573
32573
  required_arguments = ['compartmentId']
@@ -32722,7 +32722,7 @@ class DatabaseClient(object):
32722
32722
  :rtype: :class:`~oci.response.Response`
32723
32723
 
32724
32724
  :example:
32725
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
32725
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_container_databases.py.html>`__ to see an example of how to use list_external_container_databases API.
32726
32726
  """
32727
32727
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32728
32728
  required_arguments = ['compartmentId']
@@ -32880,7 +32880,7 @@ class DatabaseClient(object):
32880
32880
  :rtype: :class:`~oci.response.Response`
32881
32881
 
32882
32882
  :example:
32883
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
32883
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_database_connectors.py.html>`__ to see an example of how to use list_external_database_connectors API.
32884
32884
  """
32885
32885
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
32886
32886
  required_arguments = ['compartmentId', 'externalDatabaseId']
@@ -33034,7 +33034,7 @@ class DatabaseClient(object):
33034
33034
  :rtype: :class:`~oci.response.Response`
33035
33035
 
33036
33036
  :example:
33037
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
33037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_non_container_databases.py.html>`__ to see an example of how to use list_external_non_container_databases API.
33038
33038
  """
33039
33039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33040
33040
  required_arguments = ['compartmentId']
@@ -33193,7 +33193,7 @@ class DatabaseClient(object):
33193
33193
  :rtype: :class:`~oci.response.Response`
33194
33194
 
33195
33195
  :example:
33196
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
33196
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_external_pluggable_databases.py.html>`__ to see an example of how to use list_external_pluggable_databases API.
33197
33197
  """
33198
33198
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33199
33199
  required_arguments = ['compartmentId']
@@ -33340,7 +33340,7 @@ class DatabaseClient(object):
33340
33340
  :rtype: :class:`~oci.response.Response`
33341
33341
 
33342
33342
  :example:
33343
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
33343
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_flex_components.py.html>`__ to see an example of how to use list_flex_components API.
33344
33344
  """
33345
33345
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33346
33346
  required_arguments = ['compartmentId']
@@ -33489,7 +33489,7 @@ class DatabaseClient(object):
33489
33489
  :rtype: :class:`~oci.response.Response`
33490
33490
 
33491
33491
  :example:
33492
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
33492
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_gi_version_minor_versions.py.html>`__ to see an example of how to use list_gi_version_minor_versions API.
33493
33493
  """
33494
33494
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33495
33495
  required_arguments = ['version']
@@ -33649,7 +33649,7 @@ class DatabaseClient(object):
33649
33649
  :rtype: :class:`~oci.response.Response`
33650
33650
 
33651
33651
  :example:
33652
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
33652
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_gi_versions.py.html>`__ to see an example of how to use list_gi_versions API.
33653
33653
  """
33654
33654
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33655
33655
  required_arguments = ['compartmentId']
@@ -33764,7 +33764,7 @@ class DatabaseClient(object):
33764
33764
  :rtype: :class:`~oci.response.Response`
33765
33765
 
33766
33766
  :example:
33767
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
33767
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_key_stores.py.html>`__ to see an example of how to use list_key_stores API.
33768
33768
  """
33769
33769
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33770
33770
  required_arguments = ['compartmentId']
@@ -33902,7 +33902,7 @@ class DatabaseClient(object):
33902
33902
  :rtype: :class:`~oci.response.Response`
33903
33903
 
33904
33904
  :example:
33905
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
33905
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_maintenance_run_history.py.html>`__ to see an example of how to use list_maintenance_run_history API.
33906
33906
  """
33907
33907
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
33908
33908
  required_arguments = ['compartmentId']
@@ -34098,7 +34098,7 @@ class DatabaseClient(object):
34098
34098
  :rtype: :class:`~oci.response.Response`
34099
34099
 
34100
34100
  :example:
34101
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
34101
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_maintenance_runs.py.html>`__ to see an example of how to use list_maintenance_runs API.
34102
34102
  """
34103
34103
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34104
34104
  required_arguments = ['compartmentId']
@@ -34276,7 +34276,7 @@ class DatabaseClient(object):
34276
34276
  :rtype: :class:`~oci.response.Response`
34277
34277
 
34278
34278
  :example:
34279
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
34279
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_oneoff_patches.py.html>`__ to see an example of how to use list_oneoff_patches API.
34280
34280
  """
34281
34281
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34282
34282
  required_arguments = ['compartmentId']
@@ -34408,7 +34408,7 @@ class DatabaseClient(object):
34408
34408
  :rtype: :class:`~oci.response.Response`
34409
34409
 
34410
34410
  :example:
34411
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
34411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_params_for_action_type.py.html>`__ to see an example of how to use list_params_for_action_type API.
34412
34412
  """
34413
34413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34414
34414
  required_arguments = ['type']
@@ -34537,7 +34537,7 @@ class DatabaseClient(object):
34537
34537
  :rtype: :class:`~oci.response.Response`
34538
34538
 
34539
34539
  :example:
34540
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
34540
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_pdb_conversion_history_entries.py.html>`__ to see an example of how to use list_pdb_conversion_history_entries API.
34541
34541
  """
34542
34542
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34543
34543
  required_arguments = ['databaseId']
@@ -34707,7 +34707,7 @@ class DatabaseClient(object):
34707
34707
  :rtype: :class:`~oci.response.Response`
34708
34708
 
34709
34709
  :example:
34710
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
34710
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_pluggable_databases.py.html>`__ to see an example of how to use list_pluggable_databases API.
34711
34711
  """
34712
34712
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34713
34713
  required_arguments = []
@@ -34849,7 +34849,7 @@ class DatabaseClient(object):
34849
34849
  :rtype: :class:`~oci.response.Response`
34850
34850
 
34851
34851
  :example:
34852
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
34852
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_recommended_scheduled_actions.py.html>`__ to see an example of how to use list_recommended_scheduled_actions API.
34853
34853
  """
34854
34854
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
34855
34855
  required_arguments = ['schedulingPolicyId', 'schedulingPolicyTargetResourceId', 'planIntent']
@@ -34998,7 +34998,7 @@ class DatabaseClient(object):
34998
34998
  :rtype: :class:`~oci.response.Response`
34999
34999
 
35000
35000
  :example:
35001
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
35001
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduled_actions.py.html>`__ to see an example of how to use list_scheduled_actions API.
35002
35002
  """
35003
35003
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35004
35004
  required_arguments = ['compartmentId']
@@ -35163,7 +35163,7 @@ class DatabaseClient(object):
35163
35163
  :rtype: :class:`~oci.response.Response`
35164
35164
 
35165
35165
  :example:
35166
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
35166
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduling_plans.py.html>`__ to see an example of how to use list_scheduling_plans API.
35167
35167
  """
35168
35168
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35169
35169
  required_arguments = ['compartmentId']
@@ -35319,7 +35319,7 @@ class DatabaseClient(object):
35319
35319
  :rtype: :class:`~oci.response.Response`
35320
35320
 
35321
35321
  :example:
35322
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
35322
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduling_policies.py.html>`__ to see an example of how to use list_scheduling_policies API.
35323
35323
  """
35324
35324
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35325
35325
  required_arguments = ['compartmentId']
@@ -35474,7 +35474,7 @@ class DatabaseClient(object):
35474
35474
  :rtype: :class:`~oci.response.Response`
35475
35475
 
35476
35476
  :example:
35477
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
35477
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_scheduling_windows.py.html>`__ to see an example of how to use list_scheduling_windows API.
35478
35478
  """
35479
35479
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35480
35480
  required_arguments = ['schedulingPolicyId']
@@ -35639,7 +35639,7 @@ class DatabaseClient(object):
35639
35639
  :rtype: :class:`~oci.response.Response`
35640
35640
 
35641
35641
  :example:
35642
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_system_version_minor_versions.py.html>`__ to see an example of how to use list_system_version_minor_versions API.
35642
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_system_version_minor_versions.py.html>`__ to see an example of how to use list_system_version_minor_versions API.
35643
35643
  """
35644
35644
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35645
35645
  required_arguments = ['majorVersion', 'compartmentId', 'giVersion']
@@ -35787,7 +35787,7 @@ class DatabaseClient(object):
35787
35787
  :rtype: :class:`~oci.response.Response`
35788
35788
 
35789
35789
  :example:
35790
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
35790
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_system_versions.py.html>`__ to see an example of how to use list_system_versions API.
35791
35791
  """
35792
35792
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35793
35793
  required_arguments = ['compartmentId', 'giVersion']
@@ -35929,7 +35929,7 @@ class DatabaseClient(object):
35929
35929
  :rtype: :class:`~oci.response.Response`
35930
35930
 
35931
35931
  :example:
35932
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
35932
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_networks.py.html>`__ to see an example of how to use list_vm_cluster_networks API.
35933
35933
  """
35934
35934
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
35935
35935
  required_arguments = ['exadataInfrastructureId', 'compartmentId']
@@ -36070,7 +36070,7 @@ class DatabaseClient(object):
36070
36070
  :rtype: :class:`~oci.response.Response`
36071
36071
 
36072
36072
  :example:
36073
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
36073
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_patch_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_patch_history_entries API.
36074
36074
  """
36075
36075
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36076
36076
  required_arguments = ['vmClusterId']
@@ -36178,7 +36178,7 @@ class DatabaseClient(object):
36178
36178
  :rtype: :class:`~oci.response.Response`
36179
36179
 
36180
36180
  :example:
36181
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
36181
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_patches.py.html>`__ to see an example of how to use list_vm_cluster_patches API.
36182
36182
  """
36183
36183
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36184
36184
  required_arguments = ['vmClusterId']
@@ -36299,7 +36299,7 @@ class DatabaseClient(object):
36299
36299
  :rtype: :class:`~oci.response.Response`
36300
36300
 
36301
36301
  :example:
36302
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
36302
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_update_history_entries.py.html>`__ to see an example of how to use list_vm_cluster_update_history_entries API.
36303
36303
  """
36304
36304
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36305
36305
  required_arguments = ['vmClusterId']
@@ -36441,7 +36441,7 @@ class DatabaseClient(object):
36441
36441
  :rtype: :class:`~oci.response.Response`
36442
36442
 
36443
36443
  :example:
36444
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
36444
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_cluster_updates.py.html>`__ to see an example of how to use list_vm_cluster_updates API.
36445
36445
  """
36446
36446
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36447
36447
  required_arguments = ['vmClusterId']
@@ -36600,7 +36600,7 @@ class DatabaseClient(object):
36600
36600
  :rtype: :class:`~oci.response.Response`
36601
36601
 
36602
36602
  :example:
36603
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
36603
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/list_vm_clusters.py.html>`__ to see an example of how to use list_vm_clusters API.
36604
36604
  """
36605
36605
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36606
36606
  required_arguments = ['compartmentId']
@@ -36753,7 +36753,7 @@ class DatabaseClient(object):
36753
36753
  :rtype: :class:`~oci.response.Response`
36754
36754
 
36755
36755
  :example:
36756
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
36756
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/local_clone_pluggable_database.py.html>`__ to see an example of how to use local_clone_pluggable_database API.
36757
36757
  """
36758
36758
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36759
36759
  required_arguments = ['pluggableDatabaseId']
@@ -36868,7 +36868,7 @@ class DatabaseClient(object):
36868
36868
  :rtype: :class:`~oci.response.Response`
36869
36869
 
36870
36870
  :example:
36871
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/migrate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use migrate_autonomous_container_database_dataguard_association API.
36871
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/migrate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use migrate_autonomous_container_database_dataguard_association API.
36872
36872
  """
36873
36873
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36874
36874
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -36988,7 +36988,7 @@ class DatabaseClient(object):
36988
36988
  :rtype: :class:`~oci.response.Response`
36989
36989
 
36990
36990
  :example:
36991
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/migrate_data_guard_association_to_multi_data_guards.py.html>`__ to see an example of how to use migrate_data_guard_association_to_multi_data_guards API.
36991
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/migrate_data_guard_association_to_multi_data_guards.py.html>`__ to see an example of how to use migrate_data_guard_association_to_multi_data_guards API.
36992
36992
  """
36993
36993
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
36994
36994
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -37107,7 +37107,7 @@ class DatabaseClient(object):
37107
37107
  :rtype: :class:`~oci.response.Response`
37108
37108
 
37109
37109
  :example:
37110
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
37110
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/migrate_exadata_db_system_resource_model.py.html>`__ to see an example of how to use migrate_exadata_db_system_resource_model API.
37111
37111
  """
37112
37112
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37113
37113
  required_arguments = ['dbSystemId']
@@ -37227,7 +37227,7 @@ class DatabaseClient(object):
37227
37227
  :rtype: :class:`~oci.response.Response`
37228
37228
 
37229
37229
  :example:
37230
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
37230
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/migrate_vault_key.py.html>`__ to see an example of how to use migrate_vault_key API.
37231
37231
  """
37232
37232
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37233
37233
  required_arguments = ['databaseId']
@@ -37347,7 +37347,7 @@ class DatabaseClient(object):
37347
37347
  :rtype: :class:`~oci.response.Response`
37348
37348
 
37349
37349
  :example:
37350
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
37350
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/modify_database_management.py.html>`__ to see an example of how to use modify_database_management API.
37351
37351
  """
37352
37352
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37353
37353
  required_arguments = ['databaseId']
@@ -37467,7 +37467,7 @@ class DatabaseClient(object):
37467
37467
  :rtype: :class:`~oci.response.Response`
37468
37468
 
37469
37469
  :example:
37470
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
37470
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/modify_pluggable_database_management.py.html>`__ to see an example of how to use modify_pluggable_database_management API.
37471
37471
  """
37472
37472
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37473
37473
  required_arguments = ['pluggableDatabaseId']
@@ -37587,7 +37587,7 @@ class DatabaseClient(object):
37587
37587
  :rtype: :class:`~oci.response.Response`
37588
37588
 
37589
37589
  :example:
37590
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
37590
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/move_execution_action_member.py.html>`__ to see an example of how to use move_execution_action_member API.
37591
37591
  """
37592
37592
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37593
37593
  required_arguments = ['executionActionId']
@@ -37704,7 +37704,7 @@ class DatabaseClient(object):
37704
37704
  :rtype: :class:`~oci.response.Response`
37705
37705
 
37706
37706
  :example:
37707
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
37707
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/refresh_pluggable_database.py.html>`__ to see an example of how to use refresh_pluggable_database API.
37708
37708
  """
37709
37709
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37710
37710
  required_arguments = ['pluggableDatabaseId']
@@ -37810,7 +37810,7 @@ class DatabaseClient(object):
37810
37810
  :rtype: :class:`~oci.response.Response`
37811
37811
 
37812
37812
  :example:
37813
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
37813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/register_autonomous_database_data_safe.py.html>`__ to see an example of how to use register_autonomous_database_data_safe API.
37814
37814
  """
37815
37815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37816
37816
  required_arguments = ['autonomousDatabaseId']
@@ -37914,7 +37914,7 @@ class DatabaseClient(object):
37914
37914
  :rtype: :class:`~oci.response.Response`
37915
37915
 
37916
37916
  :example:
37917
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/reinstate_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard API.
37917
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reinstate_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard API.
37918
37918
  """
37919
37919
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
37920
37920
  required_arguments = ['autonomousContainerDatabaseId']
@@ -38021,7 +38021,7 @@ class DatabaseClient(object):
38021
38021
  :rtype: :class:`~oci.response.Response`
38022
38022
 
38023
38023
  :example:
38024
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
38024
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reinstate_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use reinstate_autonomous_container_database_dataguard_association API.
38025
38025
  """
38026
38026
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38027
38027
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -38137,7 +38137,7 @@ class DatabaseClient(object):
38137
38137
  :rtype: :class:`~oci.response.Response`
38138
38138
 
38139
38139
  :example:
38140
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/reinstate_data_guard.py.html>`__ to see an example of how to use reinstate_data_guard API.
38140
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reinstate_data_guard.py.html>`__ to see an example of how to use reinstate_data_guard API.
38141
38141
  """
38142
38142
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38143
38143
  required_arguments = ['databaseId']
@@ -38252,7 +38252,7 @@ class DatabaseClient(object):
38252
38252
  :rtype: :class:`~oci.response.Response`
38253
38253
 
38254
38254
  :example:
38255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
38255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reinstate_data_guard_association.py.html>`__ to see an example of how to use reinstate_data_guard_association API.
38256
38256
  """
38257
38257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38258
38258
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -38370,7 +38370,7 @@ class DatabaseClient(object):
38370
38370
  :rtype: :class:`~oci.response.Response`
38371
38371
 
38372
38372
  :example:
38373
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
38373
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/remote_clone_pluggable_database.py.html>`__ to see an example of how to use remote_clone_pluggable_database API.
38374
38374
  """
38375
38375
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38376
38376
  required_arguments = ['pluggableDatabaseId']
@@ -38490,7 +38490,7 @@ class DatabaseClient(object):
38490
38490
  :rtype: :class:`~oci.response.Response`
38491
38491
 
38492
38492
  :example:
38493
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/remove_virtual_machine_from_cloud_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_cloud_vm_cluster API.
38493
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/remove_virtual_machine_from_cloud_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_cloud_vm_cluster API.
38494
38494
  """
38495
38495
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38496
38496
  required_arguments = ['cloudVmClusterId']
@@ -38610,7 +38610,7 @@ class DatabaseClient(object):
38610
38610
  :rtype: :class:`~oci.response.Response`
38611
38611
 
38612
38612
  :example:
38613
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/remove_virtual_machine_from_exadb_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_exadb_vm_cluster API.
38613
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/remove_virtual_machine_from_exadb_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_exadb_vm_cluster API.
38614
38614
  """
38615
38615
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38616
38616
  required_arguments = ['exadbVmClusterId']
@@ -38730,7 +38730,7 @@ class DatabaseClient(object):
38730
38730
  :rtype: :class:`~oci.response.Response`
38731
38731
 
38732
38732
  :example:
38733
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
38733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/remove_virtual_machine_from_vm_cluster.py.html>`__ to see an example of how to use remove_virtual_machine_from_vm_cluster API.
38734
38734
  """
38735
38735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38736
38736
  required_arguments = ['vmClusterId']
@@ -38850,7 +38850,7 @@ class DatabaseClient(object):
38850
38850
  :rtype: :class:`~oci.response.Response`
38851
38851
 
38852
38852
  :example:
38853
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
38853
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reorder_execution_actions.py.html>`__ to see an example of how to use reorder_execution_actions API.
38854
38854
  """
38855
38855
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38856
38856
  required_arguments = ['executionWindowId']
@@ -38970,7 +38970,7 @@ class DatabaseClient(object):
38970
38970
  :rtype: :class:`~oci.response.Response`
38971
38971
 
38972
38972
  :example:
38973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
38973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/reorder_scheduled_actions.py.html>`__ to see an example of how to use reorder_scheduled_actions API.
38974
38974
  """
38975
38975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
38976
38976
  required_arguments = ['schedulingPlanId']
@@ -39096,7 +39096,7 @@ class DatabaseClient(object):
39096
39096
  :rtype: :class:`~oci.response.Response`
39097
39097
 
39098
39098
  :example:
39099
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
39099
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/resize_vm_cluster_network.py.html>`__ to see an example of how to use resize_vm_cluster_network API.
39100
39100
  """
39101
39101
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39102
39102
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -39215,7 +39215,7 @@ class DatabaseClient(object):
39215
39215
  :rtype: :class:`~oci.response.Response`
39216
39216
 
39217
39217
  :example:
39218
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
39218
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/resource_pool_shapes.py.html>`__ to see an example of how to use resource_pool_shapes API.
39219
39219
  """
39220
39220
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39221
39221
  required_arguments = []
@@ -39321,7 +39321,7 @@ class DatabaseClient(object):
39321
39321
  :rtype: :class:`~oci.response.Response`
39322
39322
 
39323
39323
  :example:
39324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
39324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restart_autonomous_container_database.py.html>`__ to see an example of how to use restart_autonomous_container_database API.
39325
39325
  """
39326
39326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39327
39327
  required_arguments = ['autonomousContainerDatabaseId']
@@ -39423,7 +39423,7 @@ class DatabaseClient(object):
39423
39423
  :rtype: :class:`~oci.response.Response`
39424
39424
 
39425
39425
  :example:
39426
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
39426
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restart_autonomous_database.py.html>`__ to see an example of how to use restart_autonomous_database API.
39427
39427
  """
39428
39428
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39429
39429
  required_arguments = ['autonomousDatabaseId']
@@ -39526,7 +39526,7 @@ class DatabaseClient(object):
39526
39526
  :rtype: :class:`~oci.response.Response`
39527
39527
 
39528
39528
  :example:
39529
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
39529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restore_autonomous_database.py.html>`__ to see an example of how to use restore_autonomous_database API.
39530
39530
  """
39531
39531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39532
39532
  required_arguments = ['autonomousDatabaseId']
@@ -39631,7 +39631,7 @@ class DatabaseClient(object):
39631
39631
  :rtype: :class:`~oci.response.Response`
39632
39632
 
39633
39633
  :example:
39634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
39634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/restore_database.py.html>`__ to see an example of how to use restore_database API.
39635
39635
  """
39636
39636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39637
39637
  required_arguments = ['databaseId']
@@ -39748,7 +39748,7 @@ class DatabaseClient(object):
39748
39748
  :rtype: :class:`~oci.response.Response`
39749
39749
 
39750
39750
  :example:
39751
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
39751
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_autonomous_container_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_container_database_encryption_key API.
39752
39752
  """
39753
39753
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39754
39754
  required_arguments = ['autonomousContainerDatabaseId']
@@ -39871,7 +39871,7 @@ class DatabaseClient(object):
39871
39871
  :rtype: :class:`~oci.response.Response`
39872
39872
 
39873
39873
  :example:
39874
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
39874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_autonomous_database_encryption_key.py.html>`__ to see an example of how to use rotate_autonomous_database_encryption_key API.
39875
39875
  """
39876
39876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39877
39877
  required_arguments = ['autonomousDatabaseId']
@@ -39992,7 +39992,7 @@ class DatabaseClient(object):
39992
39992
  :rtype: :class:`~oci.response.Response`
39993
39993
 
39994
39994
  :example:
39995
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
39995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ords_certs API.
39996
39996
  """
39997
39997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
39998
39998
  required_arguments = ['autonomousVmClusterId']
@@ -40110,7 +40110,7 @@ class DatabaseClient(object):
40110
40110
  :rtype: :class:`~oci.response.Response`
40111
40111
 
40112
40112
  :example:
40113
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
40113
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_autonomous_vm_cluster_ssl_certs API.
40114
40114
  """
40115
40115
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40116
40116
  required_arguments = ['autonomousVmClusterId']
@@ -40228,7 +40228,7 @@ class DatabaseClient(object):
40228
40228
  :rtype: :class:`~oci.response.Response`
40229
40229
 
40230
40230
  :example:
40231
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_cloud_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ords_certs API.
40231
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_cloud_autonomous_vm_cluster_ords_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ords_certs API.
40232
40232
  """
40233
40233
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40234
40234
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -40347,7 +40347,7 @@ class DatabaseClient(object):
40347
40347
  :rtype: :class:`~oci.response.Response`
40348
40348
 
40349
40349
  :example:
40350
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_cloud_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ssl_certs API.
40350
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_cloud_autonomous_vm_cluster_ssl_certs.py.html>`__ to see an example of how to use rotate_cloud_autonomous_vm_cluster_ssl_certs API.
40351
40351
  """
40352
40352
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40353
40353
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -40463,7 +40463,7 @@ class DatabaseClient(object):
40463
40463
  :rtype: :class:`~oci.response.Response`
40464
40464
 
40465
40465
  :example:
40466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
40466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_ords_certs.py.html>`__ to see an example of how to use rotate_ords_certs API.
40467
40467
  """
40468
40468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40469
40469
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -40576,7 +40576,7 @@ class DatabaseClient(object):
40576
40576
  :rtype: :class:`~oci.response.Response`
40577
40577
 
40578
40578
  :example:
40579
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
40579
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_pluggable_database_encryption_key.py.html>`__ to see an example of how to use rotate_pluggable_database_encryption_key API.
40580
40580
  """
40581
40581
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40582
40582
  required_arguments = ['pluggableDatabaseId']
@@ -40689,7 +40689,7 @@ class DatabaseClient(object):
40689
40689
  :rtype: :class:`~oci.response.Response`
40690
40690
 
40691
40691
  :example:
40692
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
40692
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_ssl_certs.py.html>`__ to see an example of how to use rotate_ssl_certs API.
40693
40693
  """
40694
40694
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40695
40695
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -40804,7 +40804,7 @@ class DatabaseClient(object):
40804
40804
  :rtype: :class:`~oci.response.Response`
40805
40805
 
40806
40806
  :example:
40807
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
40807
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/rotate_vault_key.py.html>`__ to see an example of how to use rotate_vault_key API.
40808
40808
  """
40809
40809
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40810
40810
  required_arguments = ['databaseId']
@@ -40907,7 +40907,7 @@ class DatabaseClient(object):
40907
40907
  :rtype: :class:`~oci.response.Response`
40908
40908
 
40909
40909
  :example:
40910
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
40910
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/saas_admin_user_status.py.html>`__ to see an example of how to use saas_admin_user_status API.
40911
40911
  """
40912
40912
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
40913
40913
  required_arguments = ['autonomousDatabaseId']
@@ -41019,7 +41019,7 @@ class DatabaseClient(object):
41019
41019
  :rtype: :class:`~oci.response.Response`
41020
41020
 
41021
41021
  :example:
41022
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
41022
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/scan_external_container_database_pluggable_databases.py.html>`__ to see an example of how to use scan_external_container_database_pluggable_databases API.
41023
41023
  """
41024
41024
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41025
41025
  required_arguments = ['externalContainerDatabaseId', 'externalDatabaseConnectorId']
@@ -41142,7 +41142,7 @@ class DatabaseClient(object):
41142
41142
  :rtype: :class:`~oci.response.Response`
41143
41143
 
41144
41144
  :example:
41145
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
41145
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/set_db_key_version.py.html>`__ to see an example of how to use set_db_key_version API.
41146
41146
  """
41147
41147
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41148
41148
  required_arguments = ['databaseId']
@@ -41264,7 +41264,7 @@ class DatabaseClient(object):
41264
41264
  :rtype: :class:`~oci.response.Response`
41265
41265
 
41266
41266
  :example:
41267
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
41267
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/set_pdb_key_version.py.html>`__ to see an example of how to use set_pdb_key_version API.
41268
41268
  """
41269
41269
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41270
41270
  required_arguments = ['pluggableDatabaseId']
@@ -41371,7 +41371,7 @@ class DatabaseClient(object):
41371
41371
  :rtype: :class:`~oci.response.Response`
41372
41372
 
41373
41373
  :example:
41374
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
41374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/shrink_autonomous_database.py.html>`__ to see an example of how to use shrink_autonomous_database API.
41375
41375
  """
41376
41376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41377
41377
  required_arguments = ['autonomousDatabaseId']
@@ -41471,7 +41471,7 @@ class DatabaseClient(object):
41471
41471
  :rtype: :class:`~oci.response.Response`
41472
41472
 
41473
41473
  :example:
41474
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
41474
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/start_autonomous_database.py.html>`__ to see an example of how to use start_autonomous_database API.
41475
41475
  """
41476
41476
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41477
41477
  required_arguments = ['autonomousDatabaseId']
@@ -41581,7 +41581,7 @@ class DatabaseClient(object):
41581
41581
  :rtype: :class:`~oci.response.Response`
41582
41582
 
41583
41583
  :example:
41584
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
41584
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/start_pluggable_database.py.html>`__ to see an example of how to use start_pluggable_database API.
41585
41585
  """
41586
41586
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41587
41587
  required_arguments = ['pluggableDatabaseId']
@@ -41689,7 +41689,7 @@ class DatabaseClient(object):
41689
41689
  :rtype: :class:`~oci.response.Response`
41690
41690
 
41691
41691
  :example:
41692
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
41692
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/stop_autonomous_database.py.html>`__ to see an example of how to use stop_autonomous_database API.
41693
41693
  """
41694
41694
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41695
41695
  required_arguments = ['autonomousDatabaseId']
@@ -41801,7 +41801,7 @@ class DatabaseClient(object):
41801
41801
  :rtype: :class:`~oci.response.Response`
41802
41802
 
41803
41803
  :example:
41804
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
41804
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/stop_pluggable_database.py.html>`__ to see an example of how to use stop_pluggable_database API.
41805
41805
  """
41806
41806
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41807
41807
  required_arguments = ['pluggableDatabaseId']
@@ -41924,7 +41924,7 @@ class DatabaseClient(object):
41924
41924
  :rtype: :class:`~oci.response.Response`
41925
41925
 
41926
41926
  :example:
41927
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/switch_over_data_guard.py.html>`__ to see an example of how to use switch_over_data_guard API.
41927
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switch_over_data_guard.py.html>`__ to see an example of how to use switch_over_data_guard API.
41928
41928
  """
41929
41929
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
41930
41930
  required_arguments = ['databaseId']
@@ -42034,7 +42034,7 @@ class DatabaseClient(object):
42034
42034
  :rtype: :class:`~oci.response.Response`
42035
42035
 
42036
42036
  :example:
42037
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/switchover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard API.
42037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switchover_autonomous_container_database_dataguard.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard API.
42038
42038
  """
42039
42039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42040
42040
  required_arguments = ['autonomousContainerDatabaseId']
@@ -42143,7 +42143,7 @@ class DatabaseClient(object):
42143
42143
  :rtype: :class:`~oci.response.Response`
42144
42144
 
42145
42145
  :example:
42146
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
42146
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switchover_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use switchover_autonomous_container_database_dataguard_association API.
42147
42147
  """
42148
42148
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42149
42149
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -42262,7 +42262,7 @@ class DatabaseClient(object):
42262
42262
  :rtype: :class:`~oci.response.Response`
42263
42263
 
42264
42264
  :example:
42265
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
42265
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switchover_autonomous_database.py.html>`__ to see an example of how to use switchover_autonomous_database API.
42266
42266
  """
42267
42267
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42268
42268
  required_arguments = ['autonomousDatabaseId']
@@ -42386,7 +42386,7 @@ class DatabaseClient(object):
42386
42386
  :rtype: :class:`~oci.response.Response`
42387
42387
 
42388
42388
  :example:
42389
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
42389
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/switchover_data_guard_association.py.html>`__ to see an example of how to use switchover_data_guard_association API.
42390
42390
  """
42391
42391
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42392
42392
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -42489,7 +42489,7 @@ class DatabaseClient(object):
42489
42489
  :rtype: :class:`~oci.response.Response`
42490
42490
 
42491
42491
  :example:
42492
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
42492
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/terminate_autonomous_container_database.py.html>`__ to see an example of how to use terminate_autonomous_container_database API.
42493
42493
  """
42494
42494
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42495
42495
  required_arguments = ['autonomousContainerDatabaseId']
@@ -42587,7 +42587,7 @@ class DatabaseClient(object):
42587
42587
  :rtype: :class:`~oci.response.Response`
42588
42588
 
42589
42589
  :example:
42590
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
42590
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/terminate_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use terminate_autonomous_exadata_infrastructure API.
42591
42591
  """
42592
42592
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42593
42593
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -42692,7 +42692,7 @@ class DatabaseClient(object):
42692
42692
  :rtype: :class:`~oci.response.Response`
42693
42693
 
42694
42694
  :example:
42695
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
42695
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/terminate_db_system.py.html>`__ to see an example of how to use terminate_db_system API.
42696
42696
  """
42697
42697
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42698
42698
  required_arguments = ['dbSystemId']
@@ -42793,7 +42793,7 @@ class DatabaseClient(object):
42793
42793
  :rtype: :class:`~oci.response.Response`
42794
42794
 
42795
42795
  :example:
42796
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
42796
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_container_database.py.html>`__ to see an example of how to use update_autonomous_container_database API.
42797
42797
  """
42798
42798
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42799
42799
  required_arguments = ['autonomousContainerDatabaseId']
@@ -42906,7 +42906,7 @@ class DatabaseClient(object):
42906
42906
  :rtype: :class:`~oci.response.Response`
42907
42907
 
42908
42908
  :example:
42909
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
42909
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_container_database_dataguard_association.py.html>`__ to see an example of how to use update_autonomous_container_database_dataguard_association API.
42910
42910
  """
42911
42911
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
42912
42912
  required_arguments = ['autonomousContainerDatabaseId', 'autonomousContainerDatabaseDataguardAssociationId']
@@ -43017,7 +43017,7 @@ class DatabaseClient(object):
43017
43017
  :rtype: :class:`~oci.response.Response`
43018
43018
 
43019
43019
  :example:
43020
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
43020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database.py.html>`__ to see an example of how to use update_autonomous_database API.
43021
43021
  """
43022
43022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43023
43023
  required_arguments = ['autonomousDatabaseId']
@@ -43127,7 +43127,7 @@ class DatabaseClient(object):
43127
43127
  :rtype: :class:`~oci.response.Response`
43128
43128
 
43129
43129
  :example:
43130
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
43130
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_backup.py.html>`__ to see an example of how to use update_autonomous_database_backup API.
43131
43131
  """
43132
43132
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43133
43133
  required_arguments = ['autonomousDatabaseBackupId']
@@ -43227,7 +43227,7 @@ class DatabaseClient(object):
43227
43227
  :rtype: :class:`~oci.response.Response`
43228
43228
 
43229
43229
  :example:
43230
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
43230
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_regional_wallet.py.html>`__ to see an example of how to use update_autonomous_database_regional_wallet API.
43231
43231
  """
43232
43232
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43233
43233
  required_arguments = []
@@ -43321,7 +43321,7 @@ class DatabaseClient(object):
43321
43321
  :rtype: :class:`~oci.response.Response`
43322
43322
 
43323
43323
  :example:
43324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
43324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_software_image.py.html>`__ to see an example of how to use update_autonomous_database_software_image API.
43325
43325
  """
43326
43326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43327
43327
  required_arguments = ['autonomousDatabaseSoftwareImageId']
@@ -43426,7 +43426,7 @@ class DatabaseClient(object):
43426
43426
  :rtype: :class:`~oci.response.Response`
43427
43427
 
43428
43428
  :example:
43429
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
43429
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_database_wallet.py.html>`__ to see an example of how to use update_autonomous_database_wallet API.
43430
43430
  """
43431
43431
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43432
43432
  required_arguments = ['autonomousDatabaseId']
@@ -43529,7 +43529,7 @@ class DatabaseClient(object):
43529
43529
  :rtype: :class:`~oci.response.Response`
43530
43530
 
43531
43531
  :example:
43532
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
43532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_exadata_infrastructure.py.html>`__ to see an example of how to use update_autonomous_exadata_infrastructure API.
43533
43533
  """
43534
43534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43535
43535
  required_arguments = ['autonomousExadataInfrastructureId']
@@ -43637,7 +43637,7 @@ class DatabaseClient(object):
43637
43637
  :rtype: :class:`~oci.response.Response`
43638
43638
 
43639
43639
  :example:
43640
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
43640
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_autonomous_vm_cluster API.
43641
43641
  """
43642
43642
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43643
43643
  required_arguments = ['autonomousVmClusterId']
@@ -43747,7 +43747,7 @@ class DatabaseClient(object):
43747
43747
  :rtype: :class:`~oci.response.Response`
43748
43748
 
43749
43749
  :example:
43750
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_backup.py.html>`__ to see an example of how to use update_backup API.
43750
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_backup.py.html>`__ to see an example of how to use update_backup API.
43751
43751
  """
43752
43752
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43753
43753
  required_arguments = ['backupId']
@@ -43860,7 +43860,7 @@ class DatabaseClient(object):
43860
43860
  :rtype: :class:`~oci.response.Response`
43861
43861
 
43862
43862
  :example:
43863
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
43863
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_backup_destination.py.html>`__ to see an example of how to use update_backup_destination API.
43864
43864
  """
43865
43865
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43866
43866
  required_arguments = ['backupDestinationId']
@@ -43970,7 +43970,7 @@ class DatabaseClient(object):
43970
43970
  :rtype: :class:`~oci.response.Response`
43971
43971
 
43972
43972
  :example:
43973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
43973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_cloud_autonomous_vm_cluster.py.html>`__ to see an example of how to use update_cloud_autonomous_vm_cluster API.
43974
43974
  """
43975
43975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
43976
43976
  required_arguments = ['cloudAutonomousVmClusterId']
@@ -44080,7 +44080,7 @@ class DatabaseClient(object):
44080
44080
  :rtype: :class:`~oci.response.Response`
44081
44081
 
44082
44082
  :example:
44083
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
44083
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_cloud_exadata_infrastructure.py.html>`__ to see an example of how to use update_cloud_exadata_infrastructure API.
44084
44084
  """
44085
44085
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44086
44086
  required_arguments = ['cloudExadataInfrastructureId']
@@ -44190,7 +44190,7 @@ class DatabaseClient(object):
44190
44190
  :rtype: :class:`~oci.response.Response`
44191
44191
 
44192
44192
  :example:
44193
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
44193
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_cloud_vm_cluster.py.html>`__ to see an example of how to use update_cloud_vm_cluster API.
44194
44194
  """
44195
44195
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44196
44196
  required_arguments = ['cloudVmClusterId']
@@ -44300,7 +44300,7 @@ class DatabaseClient(object):
44300
44300
  :rtype: :class:`~oci.response.Response`
44301
44301
 
44302
44302
  :example:
44303
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
44303
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_cloud_vm_cluster_iorm_config.py.html>`__ to see an example of how to use update_cloud_vm_cluster_iorm_config API.
44304
44304
  """
44305
44305
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44306
44306
  required_arguments = ['cloudVmClusterId']
@@ -44413,7 +44413,7 @@ class DatabaseClient(object):
44413
44413
  :rtype: :class:`~oci.response.Response`
44414
44414
 
44415
44415
  :example:
44416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
44416
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_console_connection.py.html>`__ to see an example of how to use update_console_connection API.
44417
44417
  """
44418
44418
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44419
44419
  required_arguments = ['dbNodeId', 'consoleConnectionId']
@@ -44527,7 +44527,7 @@ class DatabaseClient(object):
44527
44527
  :rtype: :class:`~oci.response.Response`
44528
44528
 
44529
44529
  :example:
44530
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
44530
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
44531
44531
  """
44532
44532
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44533
44533
  required_arguments = ['dbNodeId', 'consoleHistoryId']
@@ -44648,7 +44648,7 @@ class DatabaseClient(object):
44648
44648
  :rtype: :class:`~oci.response.Response`
44649
44649
 
44650
44650
  :example:
44651
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_data_guard.py.html>`__ to see an example of how to use update_data_guard API.
44651
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_data_guard.py.html>`__ to see an example of how to use update_data_guard API.
44652
44652
  """
44653
44653
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44654
44654
  required_arguments = ['databaseId']
@@ -44766,7 +44766,7 @@ class DatabaseClient(object):
44766
44766
  :rtype: :class:`~oci.response.Response`
44767
44767
 
44768
44768
  :example:
44769
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
44769
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_data_guard_association.py.html>`__ to see an example of how to use update_data_guard_association API.
44770
44770
  """
44771
44771
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44772
44772
  required_arguments = ['databaseId', 'dataGuardAssociationId']
@@ -44874,7 +44874,7 @@ class DatabaseClient(object):
44874
44874
  :rtype: :class:`~oci.response.Response`
44875
44875
 
44876
44876
  :example:
44877
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
44877
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_database.py.html>`__ to see an example of how to use update_database API.
44878
44878
  """
44879
44879
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44880
44880
  required_arguments = ['databaseId']
@@ -44979,7 +44979,7 @@ class DatabaseClient(object):
44979
44979
  :rtype: :class:`~oci.response.Response`
44980
44980
 
44981
44981
  :example:
44982
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
44982
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_database_software_image.py.html>`__ to see an example of how to use update_database_software_image API.
44983
44983
  """
44984
44984
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
44985
44985
  required_arguments = ['databaseSoftwareImageId']
@@ -45084,7 +45084,7 @@ class DatabaseClient(object):
45084
45084
  :rtype: :class:`~oci.response.Response`
45085
45085
 
45086
45086
  :example:
45087
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
45087
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_db_home.py.html>`__ to see an example of how to use update_db_home API.
45088
45088
  """
45089
45089
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45090
45090
  required_arguments = ['dbHomeId']
@@ -45192,7 +45192,7 @@ class DatabaseClient(object):
45192
45192
  :rtype: :class:`~oci.response.Response`
45193
45193
 
45194
45194
  :example:
45195
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
45195
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_db_node.py.html>`__ to see an example of how to use update_db_node API.
45196
45196
  """
45197
45197
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45198
45198
  required_arguments = ['dbNodeId']
@@ -45306,7 +45306,7 @@ class DatabaseClient(object):
45306
45306
  :rtype: :class:`~oci.response.Response`
45307
45307
 
45308
45308
  :example:
45309
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
45309
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_db_system.py.html>`__ to see an example of how to use update_db_system API.
45310
45310
  """
45311
45311
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45312
45312
  required_arguments = ['dbSystemId']
@@ -45415,7 +45415,7 @@ class DatabaseClient(object):
45415
45415
  :rtype: :class:`~oci.response.Response`
45416
45416
 
45417
45417
  :example:
45418
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
45418
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exadata_infrastructure.py.html>`__ to see an example of how to use update_exadata_infrastructure API.
45419
45419
  """
45420
45420
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45421
45421
  required_arguments = ['exadataInfrastructureId']
@@ -45535,7 +45535,7 @@ class DatabaseClient(object):
45535
45535
  :rtype: :class:`~oci.response.Response`
45536
45536
 
45537
45537
  :example:
45538
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
45538
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exadata_iorm_config.py.html>`__ to see an example of how to use update_exadata_iorm_config API.
45539
45539
  """
45540
45540
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45541
45541
  required_arguments = ['dbSystemId']
@@ -45645,7 +45645,7 @@ class DatabaseClient(object):
45645
45645
  :rtype: :class:`~oci.response.Response`
45646
45646
 
45647
45647
  :example:
45648
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
45648
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exadb_vm_cluster.py.html>`__ to see an example of how to use update_exadb_vm_cluster API.
45649
45649
  """
45650
45650
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45651
45651
  required_arguments = ['exadbVmClusterId']
@@ -45755,7 +45755,7 @@ class DatabaseClient(object):
45755
45755
  :rtype: :class:`~oci.response.Response`
45756
45756
 
45757
45757
  :example:
45758
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
45758
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_exascale_db_storage_vault.py.html>`__ to see an example of how to use update_exascale_db_storage_vault API.
45759
45759
  """
45760
45760
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45761
45761
  required_arguments = ['exascaleDbStorageVaultId']
@@ -45865,7 +45865,7 @@ class DatabaseClient(object):
45865
45865
  :rtype: :class:`~oci.response.Response`
45866
45866
 
45867
45867
  :example:
45868
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
45868
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_execution_action.py.html>`__ to see an example of how to use update_execution_action API.
45869
45869
  """
45870
45870
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45871
45871
  required_arguments = ['executionActionId']
@@ -45975,7 +45975,7 @@ class DatabaseClient(object):
45975
45975
  :rtype: :class:`~oci.response.Response`
45976
45976
 
45977
45977
  :example:
45978
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
45978
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_execution_window.py.html>`__ to see an example of how to use update_execution_window API.
45979
45979
  """
45980
45980
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
45981
45981
  required_arguments = ['executionWindowId']
@@ -46088,7 +46088,7 @@ class DatabaseClient(object):
46088
46088
  :rtype: :class:`~oci.response.Response`
46089
46089
 
46090
46090
  :example:
46091
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
46091
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_container_database.py.html>`__ to see an example of how to use update_external_container_database API.
46092
46092
  """
46093
46093
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46094
46094
  required_arguments = ['externalContainerDatabaseId']
@@ -46199,7 +46199,7 @@ class DatabaseClient(object):
46199
46199
  :rtype: :class:`~oci.response.Response`
46200
46200
 
46201
46201
  :example:
46202
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
46202
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_database_connector.py.html>`__ to see an example of how to use update_external_database_connector API.
46203
46203
  """
46204
46204
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46205
46205
  required_arguments = ['externalDatabaseConnectorId']
@@ -46309,7 +46309,7 @@ class DatabaseClient(object):
46309
46309
  :rtype: :class:`~oci.response.Response`
46310
46310
 
46311
46311
  :example:
46312
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
46312
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_non_container_database.py.html>`__ to see an example of how to use update_external_non_container_database API.
46313
46313
  """
46314
46314
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46315
46315
  required_arguments = ['externalNonContainerDatabaseId']
@@ -46421,7 +46421,7 @@ class DatabaseClient(object):
46421
46421
  :rtype: :class:`~oci.response.Response`
46422
46422
 
46423
46423
  :example:
46424
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
46424
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_external_pluggable_database.py.html>`__ to see an example of how to use update_external_pluggable_database API.
46425
46425
  """
46426
46426
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46427
46427
  required_arguments = ['externalPluggableDatabaseId']
@@ -46531,7 +46531,7 @@ class DatabaseClient(object):
46531
46531
  :rtype: :class:`~oci.response.Response`
46532
46532
 
46533
46533
  :example:
46534
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
46534
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_key_store.py.html>`__ to see an example of how to use update_key_store API.
46535
46535
  """
46536
46536
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46537
46537
  required_arguments = ['keyStoreId']
@@ -46636,7 +46636,7 @@ class DatabaseClient(object):
46636
46636
  :rtype: :class:`~oci.response.Response`
46637
46637
 
46638
46638
  :example:
46639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
46639
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_maintenance_run.py.html>`__ to see an example of how to use update_maintenance_run API.
46640
46640
  """
46641
46641
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46642
46642
  required_arguments = ['maintenanceRunId']
@@ -46744,7 +46744,7 @@ class DatabaseClient(object):
46744
46744
  :rtype: :class:`~oci.response.Response`
46745
46745
 
46746
46746
  :example:
46747
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
46747
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_oneoff_patch.py.html>`__ to see an example of how to use update_oneoff_patch API.
46748
46748
  """
46749
46749
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46750
46750
  required_arguments = ['oneoffPatchId']
@@ -46851,7 +46851,7 @@ class DatabaseClient(object):
46851
46851
  :rtype: :class:`~oci.response.Response`
46852
46852
 
46853
46853
  :example:
46854
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
46854
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_pluggable_database.py.html>`__ to see an example of how to use update_pluggable_database API.
46855
46855
  """
46856
46856
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46857
46857
  required_arguments = ['pluggableDatabaseId']
@@ -46959,7 +46959,7 @@ class DatabaseClient(object):
46959
46959
  :rtype: :class:`~oci.response.Response`
46960
46960
 
46961
46961
  :example:
46962
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
46962
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_scheduled_action.py.html>`__ to see an example of how to use update_scheduled_action API.
46963
46963
  """
46964
46964
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
46965
46965
  required_arguments = ['scheduledActionId']
@@ -47069,7 +47069,7 @@ class DatabaseClient(object):
47069
47069
  :rtype: :class:`~oci.response.Response`
47070
47070
 
47071
47071
  :example:
47072
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
47072
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_scheduling_policy.py.html>`__ to see an example of how to use update_scheduling_policy API.
47073
47073
  """
47074
47074
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47075
47075
  required_arguments = ['schedulingPolicyId']
@@ -47184,7 +47184,7 @@ class DatabaseClient(object):
47184
47184
  :rtype: :class:`~oci.response.Response`
47185
47185
 
47186
47186
  :example:
47187
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
47187
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_scheduling_window.py.html>`__ to see an example of how to use update_scheduling_window API.
47188
47188
  """
47189
47189
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47190
47190
  required_arguments = ['schedulingPolicyId', 'schedulingWindowId']
@@ -47295,7 +47295,7 @@ class DatabaseClient(object):
47295
47295
  :rtype: :class:`~oci.response.Response`
47296
47296
 
47297
47297
  :example:
47298
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
47298
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_vm_cluster.py.html>`__ to see an example of how to use update_vm_cluster API.
47299
47299
  """
47300
47300
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47301
47301
  required_arguments = ['vmClusterId']
@@ -47411,7 +47411,7 @@ class DatabaseClient(object):
47411
47411
  :rtype: :class:`~oci.response.Response`
47412
47412
 
47413
47413
  :example:
47414
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
47414
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/update_vm_cluster_network.py.html>`__ to see an example of how to use update_vm_cluster_network API.
47415
47415
  """
47416
47416
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47417
47417
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']
@@ -47522,7 +47522,7 @@ class DatabaseClient(object):
47522
47522
  :rtype: :class:`~oci.response.Response`
47523
47523
 
47524
47524
  :example:
47525
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
47525
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/upgrade_database.py.html>`__ to see an example of how to use upgrade_database API.
47526
47526
  """
47527
47527
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47528
47528
  required_arguments = ['databaseId']
@@ -47639,7 +47639,7 @@ class DatabaseClient(object):
47639
47639
  :rtype: :class:`~oci.response.Response`
47640
47640
 
47641
47641
  :example:
47642
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
47642
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/upgrade_db_system.py.html>`__ to see an example of how to use upgrade_db_system API.
47643
47643
  """
47644
47644
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47645
47645
  required_arguments = ['dbSystemId']
@@ -47756,7 +47756,7 @@ class DatabaseClient(object):
47756
47756
  :rtype: :class:`~oci.response.Response`
47757
47757
 
47758
47758
  :example:
47759
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.151.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
47759
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.152.0/database/validate_vm_cluster_network.py.html>`__ to see an example of how to use validate_vm_cluster_network API.
47760
47760
  """
47761
47761
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
47762
47762
  required_arguments = ['exadataInfrastructureId', 'vmClusterNetworkId']