oci 2.110.2__py3-none-any.whl → 2.112.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 (475) hide show
  1. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  2. oci/adm/application_dependency_management_client.py +18 -18
  3. oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
  4. oci/ai_document/ai_service_document_client.py +22 -22
  5. oci/ai_language/ai_service_language_client.py +36 -36
  6. oci/ai_speech/ai_service_speech_client.py +9 -9
  7. oci/ai_vision/ai_service_vision_client.py +25 -25
  8. oci/analytics/analytics_client.py +23 -23
  9. oci/announcements_service/announcement_client.py +4 -4
  10. oci/announcements_service/announcement_subscription_client.py +9 -9
  11. oci/announcements_service/announcements_preferences_client.py +4 -4
  12. oci/apigateway/api_gateway_client.py +21 -21
  13. oci/apigateway/deployment_client.py +6 -6
  14. oci/apigateway/gateway_client.py +6 -6
  15. oci/apigateway/subscribers_client.py +6 -6
  16. oci/apigateway/usage_plans_client.py +6 -6
  17. oci/apigateway/work_requests_client.py +5 -5
  18. oci/apm_config/config_client.py +8 -8
  19. oci/apm_control_plane/apm_domain_client.py +14 -14
  20. oci/apm_synthetics/apm_synthetic_client.py +18 -18
  21. oci/apm_synthetics/models/__init__.py +2 -0
  22. oci/apm_synthetics/models/browser_monitor_configuration.py +3 -3
  23. oci/apm_synthetics/models/client_certificate.py +1 -1
  24. oci/apm_synthetics/models/create_monitor_details.py +9 -3
  25. oci/apm_synthetics/models/link.py +2 -2
  26. oci/apm_synthetics/models/monitor.py +9 -3
  27. oci/apm_synthetics/models/monitor_configuration.py +11 -3
  28. oci/apm_synthetics/models/monitor_summary.py +9 -3
  29. oci/apm_synthetics/models/network_monitor_configuration.py +92 -0
  30. oci/apm_synthetics/models/private_key.py +1 -1
  31. oci/apm_synthetics/models/rest_monitor_configuration.py +1 -1
  32. oci/apm_synthetics/models/scripted_browser_monitor_configuration.py +3 -3
  33. oci/apm_synthetics/models/scripted_rest_monitor_configuration.py +1 -1
  34. oci/apm_synthetics/models/update_monitor_details.py +2 -0
  35. oci/apm_traces/query_client.py +2 -2
  36. oci/apm_traces/trace_client.py +4 -4
  37. oci/application_migration/application_migration_client.py +19 -19
  38. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  39. oci/artifacts/artifacts_client.py +32 -32
  40. oci/audit/audit_client.py +3 -3
  41. oci/auth/auth_utils.py +16 -0
  42. oci/auth/rpt_path_providers.py +54 -4
  43. oci/auth/security_token_container.py +4 -0
  44. oci/auth/signers/__init__.py +3 -1
  45. oci/auth/signers/ephemeral_resource_principals_v21_signer.py +31 -1
  46. oci/auth/signers/nested_resource_principals_signer.py +200 -0
  47. oci/auth/signers/oke_workload_identity_resource_principal_signer.py +154 -0
  48. oci/auth/signers/resource_principals_federation_signer.py +1 -1
  49. oci/auth/signers/resource_principals_signer.py +149 -5
  50. oci/autoscaling/auto_scaling_client.py +11 -11
  51. oci/base_client.py +3 -1
  52. oci/bastion/bastion_client.py +15 -15
  53. oci/bds/bds_client.py +47 -47
  54. oci/blockchain/blockchain_platform_client.py +27 -27
  55. oci/budget/budget_client.py +10 -10
  56. oci/certificates/certificates_client.py +5 -5
  57. oci/certificates_management/certificates_management_client.py +32 -32
  58. oci/cims/__init__.py +1 -3
  59. oci/cims/incident_client.py +356 -93
  60. oci/cims/models/__init__.py +6 -0
  61. oci/cims/models/account_item.py +85 -0
  62. oci/cims/models/activity_item.py +112 -14
  63. oci/cims/models/category.py +5 -5
  64. oci/cims/models/contact.py +32 -1
  65. oci/cims/models/contextual_data.py +9 -9
  66. oci/cims/models/create_account_item_details.py +78 -0
  67. oci/cims/models/create_category_details.py +2 -4
  68. oci/cims/models/create_incident.py +13 -9
  69. oci/cims/models/create_issue_type_details.py +0 -2
  70. oci/cims/models/create_item_details.py +9 -7
  71. oci/cims/models/create_limit_item_details.py +3 -3
  72. oci/cims/models/create_resource_details.py +2 -289
  73. oci/cims/models/create_sub_category_details.py +3 -5
  74. oci/cims/models/create_tech_support_item_details.py +1 -3
  75. oci/cims/models/create_ticket_details.py +11 -13
  76. oci/cims/models/create_user_details.py +65 -36
  77. oci/cims/models/incident.py +10 -6
  78. oci/cims/models/incident_resource_type.py +66 -4
  79. oci/cims/models/incident_summary.py +9 -5
  80. oci/cims/models/incident_type.py +1 -1
  81. oci/cims/models/issue_type.py +33 -2
  82. oci/cims/models/item.py +8 -4
  83. oci/cims/models/limit_item.py +7 -7
  84. oci/cims/models/resource.py +2 -285
  85. oci/cims/models/service_categories.py +134 -0
  86. oci/cims/models/service_category.py +1 -1
  87. oci/cims/models/sub_category.py +5 -5
  88. oci/cims/models/tenancy_information.py +3 -3
  89. oci/cims/models/ticket.py +7 -3
  90. oci/cims/models/update_activity_item_details.py +8 -6
  91. oci/cims/models/update_incident.py +62 -2
  92. oci/cims/models/update_item_details.py +3 -5
  93. oci/cims/models/update_resource_details.py +0 -2
  94. oci/cims/models/update_ticket_details.py +0 -2
  95. oci/cims/models/user.py +79 -19
  96. oci/cims/user_client.py +1 -1
  97. oci/cloud_bridge/common_client.py +5 -5
  98. oci/cloud_bridge/discovery_client.py +14 -14
  99. oci/cloud_bridge/inventory_client.py +16 -16
  100. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  101. oci/cloud_guard/cloud_guard_client.py +133 -133
  102. oci/cloud_migrations/migration_client.py +43 -43
  103. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  104. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  105. oci/compute_instance_agent/plugin_client.py +2 -2
  106. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  107. oci/container_engine/container_engine_client.py +44 -44
  108. oci/container_instances/container_instance_client.py +129 -24
  109. oci/core/blockstorage_client.py +60 -60
  110. oci/core/compute_client.py +90 -90
  111. oci/core/compute_management_client.py +32 -32
  112. oci/core/models/__init__.py +20 -0
  113. oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
  114. oci/core/models/amd_milan_bm_gpu_platform_config.py +34 -3
  115. oci/core/models/amd_milan_bm_launch_instance_platform_config.py +34 -3
  116. oci/core/models/amd_milan_bm_platform_config.py +34 -3
  117. oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
  118. oci/core/models/amd_rome_bm_gpu_platform_config.py +34 -3
  119. oci/core/models/amd_rome_bm_launch_instance_platform_config.py +34 -3
  120. oci/core/models/amd_rome_bm_platform_config.py +34 -3
  121. oci/core/models/amd_vm_launch_instance_platform_config.py +1 -1
  122. oci/core/models/amd_vm_platform_config.py +1 -1
  123. oci/core/models/capture_filter.py +5 -2
  124. oci/core/models/change_capture_filter_compartment_details.py +1 -1
  125. oci/core/models/cluster_network_placement_configuration_details.py +32 -5
  126. oci/core/models/cpe.py +33 -2
  127. oci/core/models/create_capture_filter_details.py +1 -1
  128. oci/core/models/create_cpe_details.py +33 -2
  129. oci/core/models/create_instance_pool_placement_configuration_details.py +32 -5
  130. oci/core/models/create_ip_sec_connection_tunnel_details.py +105 -0
  131. oci/core/models/create_macsec_properties.py +33 -2
  132. oci/core/models/create_virtual_circuit_details.py +31 -0
  133. oci/core/models/create_vnic_details.py +76 -0
  134. oci/core/models/drg_attachment_network_create_details.py +1 -1
  135. oci/core/models/drg_attachment_network_details.py +5 -1
  136. oci/core/models/generic_bm_launch_instance_platform_config.py +349 -0
  137. oci/core/models/generic_bm_platform_config.py +349 -0
  138. oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
  139. oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py +34 -3
  140. oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
  141. oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py +34 -3
  142. oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py +1 -1
  143. oci/core/models/instance_configuration_create_vnic_details.py +76 -0
  144. oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py +349 -0
  145. oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py +34 -3
  146. oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py +199 -3
  147. oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py +1 -1
  148. oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py +103 -0
  149. oci/core/models/instance_configuration_launch_instance_platform_config.py +11 -3
  150. oci/core/models/instance_pool_placement_configuration.py +32 -3
  151. oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py +72 -0
  152. oci/core/models/instance_pool_placement_primary_subnet.py +152 -0
  153. oci/core/models/instance_pool_placement_secondary_vnic_subnet.py +76 -0
  154. oci/core/models/instance_pool_placement_subnet_details.py +152 -0
  155. oci/core/models/intel_icelake_bm_launch_instance_platform_config.py +34 -3
  156. oci/core/models/intel_icelake_bm_platform_config.py +34 -3
  157. oci/core/models/intel_skylake_bm_launch_instance_platform_config.py +199 -3
  158. oci/core/models/intel_skylake_bm_platform_config.py +199 -3
  159. oci/core/models/intel_vm_launch_instance_platform_config.py +1 -1
  160. oci/core/models/intel_vm_platform_config.py +1 -1
  161. oci/core/models/ip_sec_connection.py +49 -2
  162. oci/core/models/ip_sec_connection_tunnel.py +37 -2
  163. oci/core/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
  164. oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py +109 -0
  165. oci/core/models/launch_instance_platform_config.py +11 -3
  166. oci/core/models/loop_back_drg_attachment_network_details.py +93 -0
  167. oci/core/models/macsec_properties.py +33 -2
  168. oci/core/models/platform_config.py +11 -3
  169. oci/core/models/shape_platform_config_options.py +7 -3
  170. oci/core/models/update_capture_filter_details.py +1 -1
  171. oci/core/models/update_instance_pool_placement_configuration_details.py +34 -7
  172. oci/core/models/update_macsec_properties.py +33 -2
  173. oci/core/models/update_virtual_circuit_details.py +31 -0
  174. oci/core/models/virtual_circuit.py +31 -0
  175. oci/core/models/virtual_circuit_associated_tunnel_details.py +154 -0
  176. oci/core/models/virtual_circuit_drg_attachment_network_details.py +37 -2
  177. oci/core/models/vnic.py +37 -2
  178. oci/core/virtual_network_client.py +361 -241
  179. oci/dashboard_service/dashboard_client.py +6 -6
  180. oci/dashboard_service/dashboard_group_client.py +6 -6
  181. oci/data_catalog/data_catalog_client.py +424 -154
  182. oci/data_catalog/models/__init__.py +22 -0
  183. oci/data_catalog/models/asynchronous_export_glossary_details.py +68 -0
  184. oci/data_catalog/models/asynchronous_export_glossary_result.py +196 -0
  185. oci/data_catalog/models/asynchronous_export_request_details.py +68 -0
  186. oci/data_catalog/models/asynchronous_export_result.py +196 -0
  187. oci/data_catalog/models/attribute.py +33 -0
  188. oci/data_catalog/models/attribute_summary.py +33 -0
  189. oci/data_catalog/models/create_job_definition_details.py +42 -3
  190. oci/data_catalog/models/create_job_details.py +2 -0
  191. oci/data_catalog/models/create_job_execution_details.py +11 -3
  192. oci/data_catalog/models/data_asset.py +33 -0
  193. oci/data_catalog/models/data_asset_summary.py +35 -2
  194. oci/data_catalog/models/entity.py +33 -0
  195. oci/data_catalog/models/entity_lineage.py +222 -0
  196. oci/data_catalog/models/entity_summary.py +33 -0
  197. oci/data_catalog/models/faceted_search_date_filter_request.py +2 -2
  198. oci/data_catalog/models/faceted_search_string_filter_request.py +8 -2
  199. oci/data_catalog/models/fetch_entity_lineage_details.py +190 -0
  200. oci/data_catalog/models/folder.py +33 -0
  201. oci/data_catalog/models/folder_summary.py +35 -2
  202. oci/data_catalog/models/job.py +44 -3
  203. oci/data_catalog/models/job_definition.py +42 -3
  204. oci/data_catalog/models/job_definition_summary.py +44 -5
  205. oci/data_catalog/models/job_execution.py +11 -3
  206. oci/data_catalog/models/job_execution_summary.py +11 -3
  207. oci/data_catalog/models/job_summary.py +44 -3
  208. oci/data_catalog/models/lineage_object.py +400 -0
  209. oci/data_catalog/models/lineage_relationship.py +134 -0
  210. oci/data_catalog/models/object_lineage.py +223 -0
  211. oci/data_catalog/models/object_lineage_request_details.py +190 -0
  212. oci/data_catalog/models/object_storage_object_reference.py +134 -0
  213. oci/data_catalog/models/update_job_definition_details.py +31 -0
  214. oci/data_catalog/models/update_job_details.py +2 -0
  215. oci/data_flow/data_flow_client.py +42 -42
  216. oci/data_integration/data_integration_client.py +163 -163
  217. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  218. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  219. oci/data_safe/data_safe_client.py +214 -214
  220. oci/data_science/data_science_client.py +85 -85
  221. oci/database/database_client.py +626 -308
  222. oci/database/models/__init__.py +10 -0
  223. oci/database/models/acd_avm_resource_stats.py +241 -0
  224. oci/database/models/autonomous_container_database.py +107 -38
  225. oci/database/models/autonomous_container_database_resource_usage.py +437 -0
  226. oci/database/models/autonomous_container_database_summary.py +107 -38
  227. oci/database/models/autonomous_database.py +2 -6
  228. oci/database/models/autonomous_database_connection_strings.py +1 -1
  229. oci/database/models/autonomous_database_summary.py +2 -6
  230. oci/database/models/autonomous_vm_cluster.py +6 -18
  231. oci/database/models/autonomous_vm_cluster_summary.py +6 -18
  232. oci/database/models/autonomous_vm_resource_usage.py +299 -0
  233. oci/database/models/avm_acd_resource_stats.py +272 -0
  234. oci/database/models/cloud_autonomous_vm_cluster.py +287 -20
  235. oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py +673 -0
  236. oci/database/models/cloud_autonomous_vm_cluster_summary.py +287 -20
  237. oci/database/models/create_autonomous_vm_cluster_details.py +4 -12
  238. oci/database/models/create_cloud_autonomous_vm_cluster_details.py +4 -12
  239. oci/database/models/update_autonomous_database_details.py +2 -6
  240. oci/database_management/db_management_client.py +182 -182
  241. oci/database_management/diagnosability_client.py +4 -4
  242. oci/database_management/sql_tuning_client.py +10 -10
  243. oci/database_migration/database_migration_client.py +41 -41
  244. oci/database_migration/models/__init__.py +10 -0
  245. oci/database_migration/models/connection.py +27 -0
  246. oci/database_migration/models/create_connection_details.py +27 -0
  247. oci/database_migration/models/create_golden_gate_hub.py +4 -4
  248. oci/database_migration/models/create_golden_gate_service_details.py +149 -0
  249. oci/database_migration/models/create_migration_details.py +27 -0
  250. oci/database_migration/models/database_credentials.py +103 -0
  251. oci/database_migration/models/ggs_deployment.py +103 -0
  252. oci/database_migration/models/golden_gate_service_details.py +95 -0
  253. oci/database_migration/models/migration.py +38 -3
  254. oci/database_migration/models/migration_job_progress_resource.py +11 -3
  255. oci/database_migration/models/migration_job_progress_summary.py +11 -3
  256. oci/database_migration/models/migration_phase_summary.py +11 -3
  257. oci/database_migration/models/phase_status.py +11 -3
  258. oci/database_migration/models/resume_job_details.py +11 -3
  259. oci/database_migration/models/start_migration_details.py +11 -3
  260. oci/database_migration/models/update_connection_details.py +27 -0
  261. oci/database_migration/models/update_golden_gate_service_details.py +149 -0
  262. oci/database_migration/models/update_migration_details.py +27 -0
  263. oci/database_tools/database_tools_client.py +19 -19
  264. oci/devops/devops_client.py +89 -89
  265. oci/disaster_recovery/disaster_recovery_client.py +29 -29
  266. oci/dns/dns_client.py +52 -52
  267. oci/dts/appliance_export_job_client.py +6 -6
  268. oci/dts/shipping_vendors_client.py +1 -1
  269. oci/dts/transfer_appliance_client.py +8 -8
  270. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  271. oci/dts/transfer_device_client.py +5 -5
  272. oci/dts/transfer_job_client.py +6 -6
  273. oci/dts/transfer_package_client.py +7 -7
  274. oci/em_warehouse/em_data_lake_client.py +13 -13
  275. oci/em_warehouse/em_warehouse_client.py +13 -13
  276. oci/email/email_client.py +25 -25
  277. oci/events/events_client.py +6 -6
  278. oci/file_storage/file_storage_client.py +50 -50
  279. oci/fleet_software_update/fleet_software_update_client.py +44 -44
  280. oci/functions/functions_invoke_client.py +1 -1
  281. oci/functions/functions_management_client.py +16 -16
  282. oci/fusion_apps/data_masking_activity_client.py +3 -3
  283. oci/fusion_apps/fusion_applications_client.py +39 -39
  284. oci/fusion_apps/fusion_environment_client.py +15 -15
  285. oci/fusion_apps/fusion_environment_family_client.py +8 -8
  286. oci/fusion_apps/refresh_activity_client.py +4 -4
  287. oci/fusion_apps/scheduled_activity_client.py +2 -2
  288. oci/fusion_apps/service_attachment_client.py +2 -2
  289. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  290. oci/golden_gate/golden_gate_client.py +57 -57
  291. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  292. oci/governance_rules_control_plane/work_request_client.py +5 -5
  293. oci/healthchecks/health_checks_client.py +17 -17
  294. oci/identity/identity_client.py +145 -145
  295. oci/identity_data_plane/dataplane_client.py +2 -2
  296. oci/identity_domains/identity_domains_client.py +190 -190
  297. oci/integration/integration_instance_client.py +15 -15
  298. oci/jms/java_management_service_client.py +56 -56
  299. oci/key_management/kms_crypto_client.py +6 -6
  300. oci/key_management/kms_management_client.py +21 -21
  301. oci/key_management/kms_vault_client.py +14 -14
  302. oci/license_manager/license_manager_client.py +18 -18
  303. oci/limits/limits_client.py +4 -4
  304. oci/limits/quotas_client.py +7 -7
  305. oci/load_balancer/load_balancer_client.py +61 -61
  306. oci/lockbox/lockbox_client.py +22 -22
  307. oci/log_analytics/log_analytics_client.py +192 -192
  308. oci/logging/logging_management_client.py +30 -30
  309. oci/loggingingestion/logging_client.py +1 -1
  310. oci/loggingsearch/log_search_client.py +1 -1
  311. oci/management_agent/management_agent_client.py +23 -23
  312. oci/management_dashboard/dashx_apis_client.py +14 -14
  313. oci/marketplace/account_client.py +2 -2
  314. oci/marketplace/marketplace_client.py +25 -25
  315. oci/media_services/media_services_client.py +48 -48
  316. oci/media_services/media_stream_client.py +2 -2
  317. oci/monitoring/monitoring_client.py +13 -13
  318. oci/mysql/channels_client.py +7 -7
  319. oci/mysql/db_backups_client.py +6 -6
  320. oci/mysql/db_system_client.py +273 -1328
  321. oci/mysql/db_system_client_composite_operations.py +0 -294
  322. oci/mysql/models/__init__.py +0 -16
  323. oci/mysql/models/db_system.py +0 -60
  324. oci/mysql/models/db_system_summary.py +0 -60
  325. oci/mysql/models/shape_summary.py +3 -7
  326. oci/mysql/models/work_request.py +3 -31
  327. oci/mysql/models/work_request_summary.py +3 -31
  328. oci/mysql/mysqlaas_client.py +9 -9
  329. oci/mysql/replicas_client.py +5 -5
  330. oci/mysql/work_requests_client.py +4 -4
  331. oci/network_firewall/network_firewall_client.py +17 -17
  332. oci/network_load_balancer/network_load_balancer_client.py +34 -34
  333. oci/nosql/nosql_client.py +22 -22
  334. oci/object_storage/object_storage_client.py +50 -50
  335. oci/oce/oce_instance_client.py +10 -10
  336. oci/oci_control_center/occ_metrics_client.py +3 -3
  337. oci/ocvp/esxi_host_client.py +6 -6
  338. oci/ocvp/sddc_client.py +13 -13
  339. oci/ocvp/work_request_client.py +4 -4
  340. oci/oda/management_client.py +56 -56
  341. oci/oda/oda_client.py +17 -17
  342. oci/oda/odapackage_client.py +7 -7
  343. oci/onesubscription/billing_schedule_client.py +1 -1
  344. oci/onesubscription/commitment_client.py +2 -2
  345. oci/onesubscription/computed_usage_client.py +3 -3
  346. oci/onesubscription/invoice_summary_client.py +2 -2
  347. oci/onesubscription/organization_subscription_client.py +1 -1
  348. oci/onesubscription/ratecard_client.py +1 -1
  349. oci/onesubscription/subscribed_service_client.py +2 -2
  350. oci/onesubscription/subscription_client.py +1 -1
  351. oci/ons/notification_control_plane_client.py +6 -6
  352. oci/ons/notification_data_plane_client.py +10 -10
  353. oci/opa/opa_instance_client.py +11 -11
  354. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  355. oci/opensearch/opensearch_cluster_client.py +14 -14
  356. oci/operator_access_control/access_requests_client.py +9 -9
  357. oci/operator_access_control/operator_actions_client.py +2 -2
  358. oci/operator_access_control/operator_control_assignment_client.py +6 -6
  359. oci/operator_access_control/operator_control_client.py +6 -6
  360. oci/opsi/operations_insights_client.py +159 -159
  361. oci/optimizer/optimizer_client.py +26 -26
  362. oci/os_management/event_client.py +8 -8
  363. oci/os_management/os_management_client.py +69 -69
  364. oci/os_management_hub/lifecycle_environment_client.py +11 -11
  365. oci/os_management_hub/managed_instance_client.py +22 -22
  366. oci/os_management_hub/managed_instance_group_client.py +22 -22
  367. oci/os_management_hub/management_station_client.py +8 -8
  368. oci/os_management_hub/onboarding_client.py +5 -5
  369. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  370. oci/os_management_hub/scheduled_job_client.py +6 -6
  371. oci/os_management_hub/software_source_client.py +22 -22
  372. oci/os_management_hub/work_request_client.py +4 -4
  373. oci/osp_gateway/address_rule_service_client.py +1 -1
  374. oci/osp_gateway/address_service_client.py +2 -2
  375. oci/osp_gateway/invoice_service_client.py +5 -5
  376. oci/osp_gateway/subscription_service_client.py +5 -5
  377. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  378. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  379. oci/osub_subscription/commitment_client.py +2 -2
  380. oci/osub_subscription/ratecard_client.py +1 -1
  381. oci/osub_subscription/subscription_client.py +1 -1
  382. oci/osub_usage/computed_usage_client.py +3 -3
  383. oci/queue/models/__init__.py +4 -0
  384. oci/queue/models/channel_collection.py +72 -0
  385. oci/queue/models/create_queue_details.py +50 -11
  386. oci/queue/models/delete_messages_details_entry.py +2 -2
  387. oci/queue/models/get_message.py +55 -12
  388. oci/queue/models/message_metadata.py +103 -0
  389. oci/queue/models/purge_queue_details.py +43 -8
  390. oci/queue/models/put_message.py +44 -5
  391. oci/queue/models/put_messages.py +3 -3
  392. oci/queue/models/put_messages_details_entry.py +29 -2
  393. oci/queue/models/queue.py +76 -21
  394. oci/queue/models/queue_stats.py +34 -3
  395. oci/queue/models/queue_summary.py +37 -17
  396. oci/queue/models/stats.py +2 -2
  397. oci/queue/models/update_messages_details.py +1 -1
  398. oci/queue/models/update_messages_details_entry.py +2 -2
  399. oci/queue/models/update_messages_result.py +2 -2
  400. oci/queue/models/update_messages_result_entry.py +12 -4
  401. oci/queue/models/update_queue_details.py +47 -8
  402. oci/queue/models/updated_message.py +12 -4
  403. oci/queue/models/work_request.py +6 -2
  404. oci/queue/models/work_request_error.py +6 -2
  405. oci/queue/models/work_request_log_entry.py +6 -2
  406. oci/queue/models/work_request_summary.py +8 -4
  407. oci/queue/queue_admin_client.py +67 -46
  408. oci/queue/queue_admin_client_composite_operations.py +4 -4
  409. oci/queue/queue_client.py +209 -36
  410. oci/recovery/database_recovery_client.py +23 -23
  411. oci/resource_manager/resource_manager_client.py +52 -52
  412. oci/resource_search/resource_search_client.py +3 -3
  413. oci/rover/rover_bundle_client.py +8 -8
  414. oci/rover/rover_cluster_client.py +8 -8
  415. oci/rover/rover_entitlement_client.py +6 -6
  416. oci/rover/rover_node_client.py +15 -15
  417. oci/rover/shape_client.py +1 -1
  418. oci/rover/work_requests_client.py +5 -5
  419. oci/sch/service_connector_client.py +12 -12
  420. oci/secrets/secrets_client.py +3 -3
  421. oci/service_catalog/service_catalog_client.py +26 -26
  422. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  423. oci/service_mesh/service_mesh_client.py +48 -48
  424. oci/stack_monitoring/stack_monitoring_client.py +22 -22
  425. oci/streaming/stream_admin_client.py +18 -18
  426. oci/streaming/stream_client.py +8 -8
  427. oci/tenant_manager_control_plane/domain_client.py +5 -5
  428. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  429. oci/tenant_manager_control_plane/governance_client.py +2 -2
  430. oci/tenant_manager_control_plane/link_client.py +3 -3
  431. oci/tenant_manager_control_plane/orders_client.py +2 -2
  432. oci/tenant_manager_control_plane/organization_client.py +10 -10
  433. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  434. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  435. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  436. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  437. oci/threat_intelligence/threatintel_client.py +5 -5
  438. oci/usage/resources_client.py +2 -2
  439. oci/usage/rewards_client.py +6 -6
  440. oci/usage/usagelimits_client.py +1 -1
  441. oci/usage_api/usageapi_client.py +19 -19
  442. oci/vault/vaults_client.py +11 -11
  443. oci/vbs_inst/vbs_instance_client.py +10 -10
  444. oci/version.py +1 -1
  445. oci/visual_builder/vb_instance_client.py +13 -13
  446. oci/vn_monitoring/models/__init__.py +4 -0
  447. oci/vn_monitoring/models/cpe.py +33 -2
  448. oci/vn_monitoring/models/create_cpe_details.py +33 -2
  449. oci/vn_monitoring/models/create_ip_sec_connection_details.py +35 -2
  450. oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py +105 -0
  451. oci/vn_monitoring/models/create_virtual_circuit_details.py +31 -0
  452. oci/vn_monitoring/models/drg_attachment_network_create_details.py +1 -1
  453. oci/vn_monitoring/models/drg_attachment_network_details.py +5 -1
  454. oci/vn_monitoring/models/ip_sec_connection.py +50 -2
  455. oci/vn_monitoring/models/ip_sec_connection_tunnel.py +37 -2
  456. oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
  457. oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py +93 -0
  458. oci/vn_monitoring/models/update_virtual_circuit_details.py +31 -0
  459. oci/vn_monitoring/models/virtual_circuit.py +31 -0
  460. oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py +155 -0
  461. oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py +37 -2
  462. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  463. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  464. oci/waa/waa_client.py +13 -13
  465. oci/waa/work_request_client.py +4 -4
  466. oci/waas/redirect_client.py +6 -6
  467. oci/waas/waas_client.py +66 -66
  468. oci/waf/waf_client.py +24 -24
  469. oci/work_requests/work_request_client.py +4 -4
  470. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/METADATA +1 -1
  471. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/RECORD +475 -434
  472. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/LICENSE.txt +0 -0
  473. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  474. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/WHEEL +0 -0
  475. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/top_level.txt +0 -0
@@ -159,7 +159,7 @@ class ComputeClient(object):
159
159
  :rtype: :class:`~oci.response.Response`
160
160
 
161
161
  :example:
162
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/accept_shielded_integrity_policy.py.html>`__ to see an example of how to use accept_shielded_integrity_policy API.
162
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/accept_shielded_integrity_policy.py.html>`__ to see an example of how to use accept_shielded_integrity_policy API.
163
163
  """
164
164
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
165
165
  required_arguments = ['instanceId']
@@ -263,7 +263,7 @@ class ComputeClient(object):
263
263
  :rtype: :class:`~oci.response.Response`
264
264
 
265
265
  :example:
266
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_image_shape_compatibility_entry.py.html>`__ to see an example of how to use add_image_shape_compatibility_entry API.
266
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_image_shape_compatibility_entry.py.html>`__ to see an example of how to use add_image_shape_compatibility_entry API.
267
267
  """
268
268
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
269
269
  required_arguments = ['imageId', 'shapeName']
@@ -364,7 +364,7 @@ class ComputeClient(object):
364
364
  :rtype: :class:`~oci.response.Response`
365
365
 
366
366
  :example:
367
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/attach_boot_volume.py.html>`__ to see an example of how to use attach_boot_volume API.
367
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/attach_boot_volume.py.html>`__ to see an example of how to use attach_boot_volume API.
368
368
  """
369
369
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
370
370
  required_arguments = []
@@ -459,7 +459,7 @@ class ComputeClient(object):
459
459
  :rtype: :class:`~oci.response.Response`
460
460
 
461
461
  :example:
462
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/attach_vnic.py.html>`__ to see an example of how to use attach_vnic API.
462
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/attach_vnic.py.html>`__ to see an example of how to use attach_vnic API.
463
463
  """
464
464
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
465
465
  required_arguments = []
@@ -550,7 +550,7 @@ class ComputeClient(object):
550
550
  :rtype: :class:`~oci.response.Response`
551
551
 
552
552
  :example:
553
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/attach_volume.py.html>`__ to see an example of how to use attach_volume API.
553
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/attach_volume.py.html>`__ to see an example of how to use attach_volume API.
554
554
  """
555
555
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
556
556
  required_arguments = []
@@ -657,7 +657,7 @@ class ComputeClient(object):
657
657
  :rtype: :class:`~oci.response.Response`
658
658
 
659
659
  :example:
660
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/capture_console_history.py.html>`__ to see an example of how to use capture_console_history API.
660
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/capture_console_history.py.html>`__ to see an example of how to use capture_console_history API.
661
661
  """
662
662
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
663
663
  required_arguments = []
@@ -764,7 +764,7 @@ class ComputeClient(object):
764
764
  :rtype: :class:`~oci.response.Response`
765
765
 
766
766
  :example:
767
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_compute_capacity_reservation_compartment.py.html>`__ to see an example of how to use change_compute_capacity_reservation_compartment API.
767
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_compute_capacity_reservation_compartment.py.html>`__ to see an example of how to use change_compute_capacity_reservation_compartment API.
768
768
  """
769
769
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
770
770
  required_arguments = ['capacityReservationId']
@@ -893,7 +893,7 @@ class ComputeClient(object):
893
893
  :rtype: :class:`~oci.response.Response`
894
894
 
895
895
  :example:
896
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_compute_cluster_compartment.py.html>`__ to see an example of how to use change_compute_cluster_compartment API.
896
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_compute_cluster_compartment.py.html>`__ to see an example of how to use change_compute_cluster_compartment API.
897
897
  """
898
898
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
899
899
  required_arguments = ['computeClusterId']
@@ -1014,7 +1014,7 @@ class ComputeClient(object):
1014
1014
  :rtype: :class:`~oci.response.Response`
1015
1015
 
1016
1016
  :example:
1017
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_compute_image_capability_schema_compartment.py.html>`__ to see an example of how to use change_compute_image_capability_schema_compartment API.
1017
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_compute_image_capability_schema_compartment.py.html>`__ to see an example of how to use change_compute_image_capability_schema_compartment API.
1018
1018
  """
1019
1019
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1020
1020
  required_arguments = ['computeImageCapabilitySchemaId']
@@ -1133,7 +1133,7 @@ class ComputeClient(object):
1133
1133
  :rtype: :class:`~oci.response.Response`
1134
1134
 
1135
1135
  :example:
1136
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_dedicated_vm_host_compartment.py.html>`__ to see an example of how to use change_dedicated_vm_host_compartment API.
1136
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_dedicated_vm_host_compartment.py.html>`__ to see an example of how to use change_dedicated_vm_host_compartment API.
1137
1137
  """
1138
1138
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1139
1139
  required_arguments = ['dedicatedVmHostId']
@@ -1256,7 +1256,7 @@ class ComputeClient(object):
1256
1256
  :rtype: :class:`~oci.response.Response`
1257
1257
 
1258
1258
  :example:
1259
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_image_compartment.py.html>`__ to see an example of how to use change_image_compartment API.
1259
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_image_compartment.py.html>`__ to see an example of how to use change_image_compartment API.
1260
1260
  """
1261
1261
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1262
1262
  required_arguments = ['imageId']
@@ -1384,7 +1384,7 @@ class ComputeClient(object):
1384
1384
  :rtype: :class:`~oci.response.Response`
1385
1385
 
1386
1386
  :example:
1387
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_instance_compartment.py.html>`__ to see an example of how to use change_instance_compartment API.
1387
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_instance_compartment.py.html>`__ to see an example of how to use change_instance_compartment API.
1388
1388
  """
1389
1389
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1390
1390
  required_arguments = ['instanceId']
@@ -1489,7 +1489,7 @@ class ComputeClient(object):
1489
1489
  :rtype: :class:`~oci.response.Response`
1490
1490
 
1491
1491
  :example:
1492
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_app_catalog_subscription.py.html>`__ to see an example of how to use create_app_catalog_subscription API.
1492
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_app_catalog_subscription.py.html>`__ to see an example of how to use create_app_catalog_subscription API.
1493
1493
  """
1494
1494
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1495
1495
  required_arguments = []
@@ -1591,7 +1591,7 @@ class ComputeClient(object):
1591
1591
  :rtype: :class:`~oci.response.Response`
1592
1592
 
1593
1593
  :example:
1594
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_compute_capacity_report.py.html>`__ to see an example of how to use create_compute_capacity_report API.
1594
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_compute_capacity_report.py.html>`__ to see an example of how to use create_compute_capacity_report API.
1595
1595
  """
1596
1596
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1597
1597
  required_arguments = []
@@ -1698,7 +1698,7 @@ class ComputeClient(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.110.2/core/create_compute_capacity_reservation.py.html>`__ to see an example of how to use create_compute_capacity_reservation API.
1701
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_compute_capacity_reservation.py.html>`__ to see an example of how to use create_compute_capacity_reservation API.
1702
1702
  """
1703
1703
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1704
1704
  required_arguments = []
@@ -1822,7 +1822,7 @@ class ComputeClient(object):
1822
1822
  :rtype: :class:`~oci.response.Response`
1823
1823
 
1824
1824
  :example:
1825
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_compute_cluster.py.html>`__ to see an example of how to use create_compute_cluster API.
1825
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_compute_cluster.py.html>`__ to see an example of how to use create_compute_cluster API.
1826
1826
  """
1827
1827
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1828
1828
  required_arguments = []
@@ -1915,7 +1915,7 @@ class ComputeClient(object):
1915
1915
  :rtype: :class:`~oci.response.Response`
1916
1916
 
1917
1917
  :example:
1918
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_compute_image_capability_schema.py.html>`__ to see an example of how to use create_compute_image_capability_schema API.
1918
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_compute_image_capability_schema.py.html>`__ to see an example of how to use create_compute_image_capability_schema API.
1919
1919
  """
1920
1920
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1921
1921
  required_arguments = []
@@ -2017,7 +2017,7 @@ class ComputeClient(object):
2017
2017
  :rtype: :class:`~oci.response.Response`
2018
2018
 
2019
2019
  :example:
2020
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_dedicated_vm_host.py.html>`__ to see an example of how to use create_dedicated_vm_host API.
2020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_dedicated_vm_host.py.html>`__ to see an example of how to use create_dedicated_vm_host API.
2021
2021
  """
2022
2022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2023
2023
  required_arguments = []
@@ -2137,7 +2137,7 @@ class ComputeClient(object):
2137
2137
  :rtype: :class:`~oci.response.Response`
2138
2138
 
2139
2139
  :example:
2140
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_image.py.html>`__ to see an example of how to use create_image API.
2140
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_image.py.html>`__ to see an example of how to use create_image API.
2141
2141
  """
2142
2142
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2143
2143
  required_arguments = []
@@ -2236,7 +2236,7 @@ class ComputeClient(object):
2236
2236
  :rtype: :class:`~oci.response.Response`
2237
2237
 
2238
2238
  :example:
2239
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_instance_console_connection.py.html>`__ to see an example of how to use create_instance_console_connection API.
2239
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_instance_console_connection.py.html>`__ to see an example of how to use create_instance_console_connection API.
2240
2240
  """
2241
2241
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2242
2242
  required_arguments = []
@@ -2328,7 +2328,7 @@ class ComputeClient(object):
2328
2328
  :rtype: :class:`~oci.response.Response`
2329
2329
 
2330
2330
  :example:
2331
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_app_catalog_subscription.py.html>`__ to see an example of how to use delete_app_catalog_subscription API.
2331
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_app_catalog_subscription.py.html>`__ to see an example of how to use delete_app_catalog_subscription API.
2332
2332
  """
2333
2333
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2334
2334
  required_arguments = ['listingId', 'compartmentId', 'resourceVersion']
@@ -2418,7 +2418,7 @@ class ComputeClient(object):
2418
2418
  :rtype: :class:`~oci.response.Response`
2419
2419
 
2420
2420
  :example:
2421
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_compute_capacity_reservation.py.html>`__ to see an example of how to use delete_compute_capacity_reservation API.
2421
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_compute_capacity_reservation.py.html>`__ to see an example of how to use delete_compute_capacity_reservation API.
2422
2422
  """
2423
2423
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2424
2424
  required_arguments = ['capacityReservationId']
@@ -2531,7 +2531,7 @@ class ComputeClient(object):
2531
2531
  :rtype: :class:`~oci.response.Response`
2532
2532
 
2533
2533
  :example:
2534
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_compute_cluster.py.html>`__ to see an example of how to use delete_compute_cluster API.
2534
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_compute_cluster.py.html>`__ to see an example of how to use delete_compute_cluster API.
2535
2535
  """
2536
2536
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2537
2537
  required_arguments = ['computeClusterId']
@@ -2629,7 +2629,7 @@ class ComputeClient(object):
2629
2629
  :rtype: :class:`~oci.response.Response`
2630
2630
 
2631
2631
  :example:
2632
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_compute_image_capability_schema.py.html>`__ to see an example of how to use delete_compute_image_capability_schema API.
2632
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_compute_image_capability_schema.py.html>`__ to see an example of how to use delete_compute_image_capability_schema API.
2633
2633
  """
2634
2634
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2635
2635
  required_arguments = ['computeImageCapabilitySchemaId']
@@ -2725,7 +2725,7 @@ class ComputeClient(object):
2725
2725
  :rtype: :class:`~oci.response.Response`
2726
2726
 
2727
2727
  :example:
2728
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
2728
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_console_history.py.html>`__ to see an example of how to use delete_console_history API.
2729
2729
  """
2730
2730
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2731
2731
  required_arguments = ['instanceConsoleHistoryId']
@@ -2823,7 +2823,7 @@ class ComputeClient(object):
2823
2823
  :rtype: :class:`~oci.response.Response`
2824
2824
 
2825
2825
  :example:
2826
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_dedicated_vm_host.py.html>`__ to see an example of how to use delete_dedicated_vm_host API.
2826
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_dedicated_vm_host.py.html>`__ to see an example of how to use delete_dedicated_vm_host API.
2827
2827
  """
2828
2828
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2829
2829
  required_arguments = ['dedicatedVmHostId']
@@ -2921,7 +2921,7 @@ class ComputeClient(object):
2921
2921
  :rtype: :class:`~oci.response.Response`
2922
2922
 
2923
2923
  :example:
2924
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_image.py.html>`__ to see an example of how to use delete_image API.
2924
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_image.py.html>`__ to see an example of how to use delete_image API.
2925
2925
  """
2926
2926
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2927
2927
  required_arguments = ['imageId']
@@ -3017,7 +3017,7 @@ class ComputeClient(object):
3017
3017
  :rtype: :class:`~oci.response.Response`
3018
3018
 
3019
3019
  :example:
3020
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_instance_console_connection.py.html>`__ to see an example of how to use delete_instance_console_connection API.
3020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_instance_console_connection.py.html>`__ to see an example of how to use delete_instance_console_connection API.
3021
3021
  """
3022
3022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3023
3023
  required_arguments = ['instanceConsoleConnectionId']
@@ -3116,7 +3116,7 @@ class ComputeClient(object):
3116
3116
  :rtype: :class:`~oci.response.Response`
3117
3117
 
3118
3118
  :example:
3119
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/detach_boot_volume.py.html>`__ to see an example of how to use detach_boot_volume API.
3119
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/detach_boot_volume.py.html>`__ to see an example of how to use detach_boot_volume API.
3120
3120
  """
3121
3121
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3122
3122
  required_arguments = ['bootVolumeAttachmentId']
@@ -3223,7 +3223,7 @@ class ComputeClient(object):
3223
3223
  :rtype: :class:`~oci.response.Response`
3224
3224
 
3225
3225
  :example:
3226
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/detach_vnic.py.html>`__ to see an example of how to use detach_vnic API.
3226
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/detach_vnic.py.html>`__ to see an example of how to use detach_vnic API.
3227
3227
  """
3228
3228
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3229
3229
  required_arguments = ['vnicAttachmentId']
@@ -3322,7 +3322,7 @@ class ComputeClient(object):
3322
3322
  :rtype: :class:`~oci.response.Response`
3323
3323
 
3324
3324
  :example:
3325
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/detach_volume.py.html>`__ to see an example of how to use detach_volume API.
3325
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/detach_volume.py.html>`__ to see an example of how to use detach_volume API.
3326
3326
  """
3327
3327
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3328
3328
  required_arguments = ['volumeAttachmentId']
@@ -3444,7 +3444,7 @@ class ComputeClient(object):
3444
3444
  :rtype: :class:`~oci.response.Response`
3445
3445
 
3446
3446
  :example:
3447
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/export_image.py.html>`__ to see an example of how to use export_image API.
3447
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/export_image.py.html>`__ to see an example of how to use export_image API.
3448
3448
  """
3449
3449
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3450
3450
  required_arguments = ['imageId']
@@ -3544,7 +3544,7 @@ class ComputeClient(object):
3544
3544
  :rtype: :class:`~oci.response.Response`
3545
3545
 
3546
3546
  :example:
3547
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_app_catalog_listing.py.html>`__ to see an example of how to use get_app_catalog_listing API.
3547
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_app_catalog_listing.py.html>`__ to see an example of how to use get_app_catalog_listing API.
3548
3548
  """
3549
3549
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3550
3550
  required_arguments = ['listingId']
@@ -3635,7 +3635,7 @@ class ComputeClient(object):
3635
3635
  :rtype: :class:`~oci.response.Response`
3636
3636
 
3637
3637
  :example:
3638
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_app_catalog_listing_agreements.py.html>`__ to see an example of how to use get_app_catalog_listing_agreements API.
3638
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_app_catalog_listing_agreements.py.html>`__ to see an example of how to use get_app_catalog_listing_agreements API.
3639
3639
  """
3640
3640
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3641
3641
  required_arguments = ['listingId', 'resourceVersion']
@@ -3727,7 +3727,7 @@ class ComputeClient(object):
3727
3727
  :rtype: :class:`~oci.response.Response`
3728
3728
 
3729
3729
  :example:
3730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_app_catalog_listing_resource_version.py.html>`__ to see an example of how to use get_app_catalog_listing_resource_version API.
3730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_app_catalog_listing_resource_version.py.html>`__ to see an example of how to use get_app_catalog_listing_resource_version API.
3731
3731
  """
3732
3732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3733
3733
  required_arguments = ['listingId', 'resourceVersion']
@@ -3816,7 +3816,7 @@ class ComputeClient(object):
3816
3816
  :rtype: :class:`~oci.response.Response`
3817
3817
 
3818
3818
  :example:
3819
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_boot_volume_attachment.py.html>`__ to see an example of how to use get_boot_volume_attachment API.
3819
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_boot_volume_attachment.py.html>`__ to see an example of how to use get_boot_volume_attachment API.
3820
3820
  """
3821
3821
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3822
3822
  required_arguments = ['bootVolumeAttachmentId']
@@ -3906,7 +3906,7 @@ class ComputeClient(object):
3906
3906
  :rtype: :class:`~oci.response.Response`
3907
3907
 
3908
3908
  :example:
3909
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_compute_capacity_reservation.py.html>`__ to see an example of how to use get_compute_capacity_reservation API.
3909
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_compute_capacity_reservation.py.html>`__ to see an example of how to use get_compute_capacity_reservation API.
3910
3910
  """
3911
3911
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3912
3912
  required_arguments = ['capacityReservationId']
@@ -4011,7 +4011,7 @@ class ComputeClient(object):
4011
4011
  :rtype: :class:`~oci.response.Response`
4012
4012
 
4013
4013
  :example:
4014
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_compute_cluster.py.html>`__ to see an example of how to use get_compute_cluster API.
4014
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_compute_cluster.py.html>`__ to see an example of how to use get_compute_cluster API.
4015
4015
  """
4016
4016
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4017
4017
  required_arguments = ['computeClusterId']
@@ -4106,7 +4106,7 @@ class ComputeClient(object):
4106
4106
  :rtype: :class:`~oci.response.Response`
4107
4107
 
4108
4108
  :example:
4109
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_compute_global_image_capability_schema.py.html>`__ to see an example of how to use get_compute_global_image_capability_schema API.
4109
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_compute_global_image_capability_schema.py.html>`__ to see an example of how to use get_compute_global_image_capability_schema API.
4110
4110
  """
4111
4111
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4112
4112
  required_arguments = ['computeGlobalImageCapabilitySchemaId']
@@ -4199,7 +4199,7 @@ class ComputeClient(object):
4199
4199
  :rtype: :class:`~oci.response.Response`
4200
4200
 
4201
4201
  :example:
4202
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_compute_global_image_capability_schema_version.py.html>`__ to see an example of how to use get_compute_global_image_capability_schema_version API.
4202
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_compute_global_image_capability_schema_version.py.html>`__ to see an example of how to use get_compute_global_image_capability_schema_version API.
4203
4203
  """
4204
4204
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4205
4205
  required_arguments = ['computeGlobalImageCapabilitySchemaId', 'computeGlobalImageCapabilitySchemaVersionName']
@@ -4291,7 +4291,7 @@ class ComputeClient(object):
4291
4291
  :rtype: :class:`~oci.response.Response`
4292
4292
 
4293
4293
  :example:
4294
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_compute_image_capability_schema.py.html>`__ to see an example of how to use get_compute_image_capability_schema API.
4294
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_compute_image_capability_schema.py.html>`__ to see an example of how to use get_compute_image_capability_schema API.
4295
4295
  """
4296
4296
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4297
4297
  required_arguments = ['computeImageCapabilitySchemaId']
@@ -4393,7 +4393,7 @@ class ComputeClient(object):
4393
4393
  :rtype: :class:`~oci.response.Response`
4394
4394
 
4395
4395
  :example:
4396
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
4396
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_console_history.py.html>`__ to see an example of how to use get_console_history API.
4397
4397
  """
4398
4398
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4399
4399
  required_arguments = ['instanceConsoleHistoryId']
@@ -4487,7 +4487,7 @@ class ComputeClient(object):
4487
4487
  :rtype: :class:`~oci.response.Response`
4488
4488
 
4489
4489
  :example:
4490
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
4490
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_console_history_content.py.html>`__ to see an example of how to use get_console_history_content API.
4491
4491
  """
4492
4492
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4493
4493
  required_arguments = ['instanceConsoleHistoryId']
@@ -4591,7 +4591,7 @@ class ComputeClient(object):
4591
4591
  :rtype: :class:`~oci.response.Response`
4592
4592
 
4593
4593
  :example:
4594
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_dedicated_vm_host.py.html>`__ to see an example of how to use get_dedicated_vm_host API.
4594
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_dedicated_vm_host.py.html>`__ to see an example of how to use get_dedicated_vm_host API.
4595
4595
  """
4596
4596
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4597
4597
  required_arguments = ['dedicatedVmHostId']
@@ -4686,7 +4686,7 @@ class ComputeClient(object):
4686
4686
  :rtype: :class:`~oci.response.Response`
4687
4687
 
4688
4688
  :example:
4689
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_image.py.html>`__ to see an example of how to use get_image API.
4689
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_image.py.html>`__ to see an example of how to use get_image API.
4690
4690
  """
4691
4691
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4692
4692
  required_arguments = ['imageId']
@@ -4783,7 +4783,7 @@ class ComputeClient(object):
4783
4783
  :rtype: :class:`~oci.response.Response`
4784
4784
 
4785
4785
  :example:
4786
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_image_shape_compatibility_entry.py.html>`__ to see an example of how to use get_image_shape_compatibility_entry API.
4786
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_image_shape_compatibility_entry.py.html>`__ to see an example of how to use get_image_shape_compatibility_entry API.
4787
4787
  """
4788
4788
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4789
4789
  required_arguments = ['imageId', 'shapeName']
@@ -4884,7 +4884,7 @@ class ComputeClient(object):
4884
4884
  :rtype: :class:`~oci.response.Response`
4885
4885
 
4886
4886
  :example:
4887
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_instance.py.html>`__ to see an example of how to use get_instance API.
4887
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_instance.py.html>`__ to see an example of how to use get_instance API.
4888
4888
  """
4889
4889
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4890
4890
  required_arguments = ['instanceId']
@@ -4970,7 +4970,7 @@ class ComputeClient(object):
4970
4970
  :rtype: :class:`~oci.response.Response`
4971
4971
 
4972
4972
  :example:
4973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_instance_console_connection.py.html>`__ to see an example of how to use get_instance_console_connection API.
4973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_instance_console_connection.py.html>`__ to see an example of how to use get_instance_console_connection API.
4974
4974
  """
4975
4975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4976
4976
  required_arguments = ['instanceConsoleConnectionId']
@@ -5065,7 +5065,7 @@ class ComputeClient(object):
5065
5065
  :rtype: :class:`~oci.response.Response`
5066
5066
 
5067
5067
  :example:
5068
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_instance_maintenance_reboot.py.html>`__ to see an example of how to use get_instance_maintenance_reboot API.
5068
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_instance_maintenance_reboot.py.html>`__ to see an example of how to use get_instance_maintenance_reboot API.
5069
5069
  """
5070
5070
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5071
5071
  required_arguments = ['instanceId']
@@ -5164,7 +5164,7 @@ class ComputeClient(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.110.2/core/get_measured_boot_report.py.html>`__ to see an example of how to use get_measured_boot_report API.
5167
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_measured_boot_report.py.html>`__ to see an example of how to use get_measured_boot_report API.
5168
5168
  """
5169
5169
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5170
5170
  required_arguments = ['instanceId']
@@ -5257,7 +5257,7 @@ class ComputeClient(object):
5257
5257
  :rtype: :class:`~oci.response.Response`
5258
5258
 
5259
5259
  :example:
5260
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_vnic_attachment.py.html>`__ to see an example of how to use get_vnic_attachment API.
5260
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_vnic_attachment.py.html>`__ to see an example of how to use get_vnic_attachment API.
5261
5261
  """
5262
5262
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5263
5263
  required_arguments = ['vnicAttachmentId']
@@ -5343,7 +5343,7 @@ class ComputeClient(object):
5343
5343
  :rtype: :class:`~oci.response.Response`
5344
5344
 
5345
5345
  :example:
5346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_volume_attachment.py.html>`__ to see an example of how to use get_volume_attachment API.
5346
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_volume_attachment.py.html>`__ to see an example of how to use get_volume_attachment API.
5347
5347
  """
5348
5348
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5349
5349
  required_arguments = ['volumeAttachmentId']
@@ -5432,7 +5432,7 @@ class ComputeClient(object):
5432
5432
  :rtype: :class:`~oci.response.Response`
5433
5433
 
5434
5434
  :example:
5435
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_windows_instance_initial_credentials.py.html>`__ to see an example of how to use get_windows_instance_initial_credentials API.
5435
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_windows_instance_initial_credentials.py.html>`__ to see an example of how to use get_windows_instance_initial_credentials API.
5436
5436
  """
5437
5437
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5438
5438
  required_arguments = ['instanceId']
@@ -5586,7 +5586,7 @@ class ComputeClient(object):
5586
5586
  :rtype: :class:`~oci.response.Response`
5587
5587
 
5588
5588
  :example:
5589
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/instance_action.py.html>`__ to see an example of how to use instance_action API.
5589
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/instance_action.py.html>`__ to see an example of how to use instance_action API.
5590
5590
  """
5591
5591
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5592
5592
  required_arguments = ['instanceId', 'action']
@@ -5746,7 +5746,7 @@ class ComputeClient(object):
5746
5746
  :rtype: :class:`~oci.response.Response`
5747
5747
 
5748
5748
  :example:
5749
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/launch_instance.py.html>`__ to see an example of how to use launch_instance API.
5749
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/launch_instance.py.html>`__ to see an example of how to use launch_instance API.
5750
5750
  """
5751
5751
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5752
5752
  required_arguments = []
@@ -5852,7 +5852,7 @@ class ComputeClient(object):
5852
5852
  :rtype: :class:`~oci.response.Response`
5853
5853
 
5854
5854
  :example:
5855
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_app_catalog_listing_resource_versions.py.html>`__ to see an example of how to use list_app_catalog_listing_resource_versions API.
5855
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_app_catalog_listing_resource_versions.py.html>`__ to see an example of how to use list_app_catalog_listing_resource_versions API.
5856
5856
  """
5857
5857
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5858
5858
  required_arguments = ['listingId']
@@ -5991,7 +5991,7 @@ class ComputeClient(object):
5991
5991
  :rtype: :class:`~oci.response.Response`
5992
5992
 
5993
5993
  :example:
5994
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_app_catalog_listings.py.html>`__ to see an example of how to use list_app_catalog_listings API.
5994
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_app_catalog_listings.py.html>`__ to see an example of how to use list_app_catalog_listings API.
5995
5995
  """
5996
5996
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5997
5997
  required_arguments = []
@@ -6135,7 +6135,7 @@ class ComputeClient(object):
6135
6135
  :rtype: :class:`~oci.response.Response`
6136
6136
 
6137
6137
  :example:
6138
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_app_catalog_subscriptions.py.html>`__ to see an example of how to use list_app_catalog_subscriptions API.
6138
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_app_catalog_subscriptions.py.html>`__ to see an example of how to use list_app_catalog_subscriptions API.
6139
6139
  """
6140
6140
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6141
6141
  required_arguments = ['compartmentId']
@@ -6276,7 +6276,7 @@ class ComputeClient(object):
6276
6276
  :rtype: :class:`~oci.response.Response`
6277
6277
 
6278
6278
  :example:
6279
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_boot_volume_attachments.py.html>`__ to see an example of how to use list_boot_volume_attachments API.
6279
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_boot_volume_attachments.py.html>`__ to see an example of how to use list_boot_volume_attachments API.
6280
6280
  """
6281
6281
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6282
6282
  required_arguments = ['availabilityDomain', 'compartmentId']
@@ -6418,7 +6418,7 @@ class ComputeClient(object):
6418
6418
  :rtype: :class:`~oci.response.Response`
6419
6419
 
6420
6420
  :example:
6421
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_compute_capacity_reservation_instance_shapes.py.html>`__ to see an example of how to use list_compute_capacity_reservation_instance_shapes API.
6421
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_compute_capacity_reservation_instance_shapes.py.html>`__ to see an example of how to use list_compute_capacity_reservation_instance_shapes API.
6422
6422
  """
6423
6423
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6424
6424
  required_arguments = ['compartmentId']
@@ -6580,7 +6580,7 @@ class ComputeClient(object):
6580
6580
  :rtype: :class:`~oci.response.Response`
6581
6581
 
6582
6582
  :example:
6583
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_compute_capacity_reservation_instances.py.html>`__ to see an example of how to use list_compute_capacity_reservation_instances API.
6583
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_compute_capacity_reservation_instances.py.html>`__ to see an example of how to use list_compute_capacity_reservation_instances API.
6584
6584
  """
6585
6585
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6586
6586
  required_arguments = ['capacityReservationId']
@@ -6761,7 +6761,7 @@ class ComputeClient(object):
6761
6761
  :rtype: :class:`~oci.response.Response`
6762
6762
 
6763
6763
  :example:
6764
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_compute_capacity_reservations.py.html>`__ to see an example of how to use list_compute_capacity_reservations API.
6764
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_compute_capacity_reservations.py.html>`__ to see an example of how to use list_compute_capacity_reservations API.
6765
6765
  """
6766
6766
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6767
6767
  required_arguments = ['compartmentId']
@@ -6935,7 +6935,7 @@ class ComputeClient(object):
6935
6935
  :rtype: :class:`~oci.response.Response`
6936
6936
 
6937
6937
  :example:
6938
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_compute_clusters.py.html>`__ to see an example of how to use list_compute_clusters API.
6938
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_compute_clusters.py.html>`__ to see an example of how to use list_compute_clusters API.
6939
6939
  """
6940
6940
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6941
6941
  required_arguments = ['compartmentId']
@@ -7088,7 +7088,7 @@ class ComputeClient(object):
7088
7088
  :rtype: :class:`~oci.response.Response`
7089
7089
 
7090
7090
  :example:
7091
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_compute_global_image_capability_schema_versions.py.html>`__ to see an example of how to use list_compute_global_image_capability_schema_versions API.
7091
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_compute_global_image_capability_schema_versions.py.html>`__ to see an example of how to use list_compute_global_image_capability_schema_versions API.
7092
7092
  """
7093
7093
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7094
7094
  required_arguments = ['computeGlobalImageCapabilitySchemaId']
@@ -7247,7 +7247,7 @@ class ComputeClient(object):
7247
7247
  :rtype: :class:`~oci.response.Response`
7248
7248
 
7249
7249
  :example:
7250
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_compute_global_image_capability_schemas.py.html>`__ to see an example of how to use list_compute_global_image_capability_schemas API.
7250
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_compute_global_image_capability_schemas.py.html>`__ to see an example of how to use list_compute_global_image_capability_schemas API.
7251
7251
  """
7252
7252
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7253
7253
  required_arguments = []
@@ -7401,7 +7401,7 @@ class ComputeClient(object):
7401
7401
  :rtype: :class:`~oci.response.Response`
7402
7402
 
7403
7403
  :example:
7404
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_compute_image_capability_schemas.py.html>`__ to see an example of how to use list_compute_image_capability_schemas API.
7404
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_compute_image_capability_schemas.py.html>`__ to see an example of how to use list_compute_image_capability_schemas API.
7405
7405
  """
7406
7406
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7407
7407
  required_arguments = []
@@ -7565,7 +7565,7 @@ class ComputeClient(object):
7565
7565
  :rtype: :class:`~oci.response.Response`
7566
7566
 
7567
7567
  :example:
7568
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
7568
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_console_histories.py.html>`__ to see an example of how to use list_console_histories API.
7569
7569
  """
7570
7570
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7571
7571
  required_arguments = ['compartmentId']
@@ -7716,7 +7716,7 @@ class ComputeClient(object):
7716
7716
  :rtype: :class:`~oci.response.Response`
7717
7717
 
7718
7718
  :example:
7719
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_dedicated_vm_host_instance_shapes.py.html>`__ to see an example of how to use list_dedicated_vm_host_instance_shapes API.
7719
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_dedicated_vm_host_instance_shapes.py.html>`__ to see an example of how to use list_dedicated_vm_host_instance_shapes API.
7720
7720
  """
7721
7721
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7722
7722
  required_arguments = ['compartmentId']
@@ -7860,7 +7860,7 @@ class ComputeClient(object):
7860
7860
  :rtype: :class:`~oci.response.Response`
7861
7861
 
7862
7862
  :example:
7863
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_dedicated_vm_host_instances.py.html>`__ to see an example of how to use list_dedicated_vm_host_instances API.
7863
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_dedicated_vm_host_instances.py.html>`__ to see an example of how to use list_dedicated_vm_host_instances API.
7864
7864
  """
7865
7865
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7866
7866
  required_arguments = ['dedicatedVmHostId', 'compartmentId']
@@ -8014,7 +8014,7 @@ class ComputeClient(object):
8014
8014
  :rtype: :class:`~oci.response.Response`
8015
8015
 
8016
8016
  :example:
8017
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_dedicated_vm_host_shapes.py.html>`__ to see an example of how to use list_dedicated_vm_host_shapes API.
8017
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_dedicated_vm_host_shapes.py.html>`__ to see an example of how to use list_dedicated_vm_host_shapes API.
8018
8018
  """
8019
8019
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8020
8020
  required_arguments = ['compartmentId']
@@ -8175,7 +8175,7 @@ class ComputeClient(object):
8175
8175
  :rtype: :class:`~oci.response.Response`
8176
8176
 
8177
8177
  :example:
8178
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_dedicated_vm_hosts.py.html>`__ to see an example of how to use list_dedicated_vm_hosts API.
8178
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_dedicated_vm_hosts.py.html>`__ to see an example of how to use list_dedicated_vm_hosts API.
8179
8179
  """
8180
8180
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8181
8181
  required_arguments = ['compartmentId']
@@ -8326,7 +8326,7 @@ class ComputeClient(object):
8326
8326
  :rtype: :class:`~oci.response.Response`
8327
8327
 
8328
8328
  :example:
8329
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_image_shape_compatibility_entries.py.html>`__ to see an example of how to use list_image_shape_compatibility_entries API.
8329
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_image_shape_compatibility_entries.py.html>`__ to see an example of how to use list_image_shape_compatibility_entries API.
8330
8330
  """
8331
8331
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8332
8332
  required_arguments = ['imageId']
@@ -8502,7 +8502,7 @@ class ComputeClient(object):
8502
8502
  :rtype: :class:`~oci.response.Response`
8503
8503
 
8504
8504
  :example:
8505
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_images.py.html>`__ to see an example of how to use list_images API.
8505
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_images.py.html>`__ to see an example of how to use list_images API.
8506
8506
  """
8507
8507
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8508
8508
  required_arguments = ['compartmentId']
@@ -8653,7 +8653,7 @@ class ComputeClient(object):
8653
8653
  :rtype: :class:`~oci.response.Response`
8654
8654
 
8655
8655
  :example:
8656
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_instance_console_connections.py.html>`__ to see an example of how to use list_instance_console_connections API.
8656
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_instance_console_connections.py.html>`__ to see an example of how to use list_instance_console_connections API.
8657
8657
  """
8658
8658
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8659
8659
  required_arguments = ['compartmentId']
@@ -8790,7 +8790,7 @@ class ComputeClient(object):
8790
8790
  :rtype: :class:`~oci.response.Response`
8791
8791
 
8792
8792
  :example:
8793
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_instance_devices.py.html>`__ to see an example of how to use list_instance_devices API.
8793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_instance_devices.py.html>`__ to see an example of how to use list_instance_devices API.
8794
8794
  """
8795
8795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8796
8796
  required_arguments = ['instanceId']
@@ -8981,7 +8981,7 @@ class ComputeClient(object):
8981
8981
  :rtype: :class:`~oci.response.Response`
8982
8982
 
8983
8983
  :example:
8984
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_instances.py.html>`__ to see an example of how to use list_instances API.
8984
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_instances.py.html>`__ to see an example of how to use list_instances API.
8985
8985
  """
8986
8986
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8987
8987
  required_arguments = ['compartmentId']
@@ -9134,7 +9134,7 @@ class ComputeClient(object):
9134
9134
  :rtype: :class:`~oci.response.Response`
9135
9135
 
9136
9136
  :example:
9137
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_shapes.py.html>`__ to see an example of how to use list_shapes API.
9137
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_shapes.py.html>`__ to see an example of how to use list_shapes API.
9138
9138
  """
9139
9139
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9140
9140
  required_arguments = ['compartmentId']
@@ -9258,7 +9258,7 @@ class ComputeClient(object):
9258
9258
  :rtype: :class:`~oci.response.Response`
9259
9259
 
9260
9260
  :example:
9261
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_vnic_attachments.py.html>`__ to see an example of how to use list_vnic_attachments API.
9261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_vnic_attachments.py.html>`__ to see an example of how to use list_vnic_attachments API.
9262
9262
  """
9263
9263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9264
9264
  required_arguments = ['compartmentId']
@@ -9386,7 +9386,7 @@ class ComputeClient(object):
9386
9386
  :rtype: :class:`~oci.response.Response`
9387
9387
 
9388
9388
  :example:
9389
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_volume_attachments.py.html>`__ to see an example of how to use list_volume_attachments API.
9389
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_volume_attachments.py.html>`__ to see an example of how to use list_volume_attachments API.
9390
9390
  """
9391
9391
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9392
9392
  required_arguments = ['compartmentId']
@@ -9486,7 +9486,7 @@ class ComputeClient(object):
9486
9486
  :rtype: :class:`~oci.response.Response`
9487
9487
 
9488
9488
  :example:
9489
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_image_shape_compatibility_entry.py.html>`__ to see an example of how to use remove_image_shape_compatibility_entry API.
9489
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_image_shape_compatibility_entry.py.html>`__ to see an example of how to use remove_image_shape_compatibility_entry API.
9490
9490
  """
9491
9491
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9492
9492
  required_arguments = ['imageId', 'shapeName']
@@ -9590,7 +9590,7 @@ class ComputeClient(object):
9590
9590
  :rtype: :class:`~oci.response.Response`
9591
9591
 
9592
9592
  :example:
9593
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/terminate_instance.py.html>`__ to see an example of how to use terminate_instance API.
9593
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/terminate_instance.py.html>`__ to see an example of how to use terminate_instance API.
9594
9594
  """
9595
9595
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9596
9596
  required_arguments = ['instanceId']
@@ -9703,7 +9703,7 @@ class ComputeClient(object):
9703
9703
  :rtype: :class:`~oci.response.Response`
9704
9704
 
9705
9705
  :example:
9706
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_compute_capacity_reservation.py.html>`__ to see an example of how to use update_compute_capacity_reservation API.
9706
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_compute_capacity_reservation.py.html>`__ to see an example of how to use update_compute_capacity_reservation API.
9707
9707
  """
9708
9708
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9709
9709
  required_arguments = ['capacityReservationId']
@@ -9831,7 +9831,7 @@ class ComputeClient(object):
9831
9831
  :rtype: :class:`~oci.response.Response`
9832
9832
 
9833
9833
  :example:
9834
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_compute_cluster.py.html>`__ to see an example of how to use update_compute_cluster API.
9834
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_compute_cluster.py.html>`__ to see an example of how to use update_compute_cluster API.
9835
9835
  """
9836
9836
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9837
9837
  required_arguments = ['computeClusterId']
@@ -9939,7 +9939,7 @@ class ComputeClient(object):
9939
9939
  :rtype: :class:`~oci.response.Response`
9940
9940
 
9941
9941
  :example:
9942
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_compute_image_capability_schema.py.html>`__ to see an example of how to use update_compute_image_capability_schema API.
9942
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_compute_image_capability_schema.py.html>`__ to see an example of how to use update_compute_image_capability_schema API.
9943
9943
  """
9944
9944
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9945
9945
  required_arguments = ['computeImageCapabilitySchemaId']
@@ -10042,7 +10042,7 @@ class ComputeClient(object):
10042
10042
  :rtype: :class:`~oci.response.Response`
10043
10043
 
10044
10044
  :example:
10045
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
10045
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_console_history.py.html>`__ to see an example of how to use update_console_history API.
10046
10046
  """
10047
10047
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10048
10048
  required_arguments = ['instanceConsoleHistoryId']
@@ -10157,7 +10157,7 @@ class ComputeClient(object):
10157
10157
  :rtype: :class:`~oci.response.Response`
10158
10158
 
10159
10159
  :example:
10160
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_dedicated_vm_host.py.html>`__ to see an example of how to use update_dedicated_vm_host API.
10160
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_dedicated_vm_host.py.html>`__ to see an example of how to use update_dedicated_vm_host API.
10161
10161
  """
10162
10162
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10163
10163
  required_arguments = ['dedicatedVmHostId']
@@ -10274,7 +10274,7 @@ class ComputeClient(object):
10274
10274
  :rtype: :class:`~oci.response.Response`
10275
10275
 
10276
10276
  :example:
10277
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_image.py.html>`__ to see an example of how to use update_image API.
10277
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_image.py.html>`__ to see an example of how to use update_image API.
10278
10278
  """
10279
10279
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10280
10280
  required_arguments = ['imageId']
@@ -10395,7 +10395,7 @@ class ComputeClient(object):
10395
10395
  :rtype: :class:`~oci.response.Response`
10396
10396
 
10397
10397
  :example:
10398
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_instance.py.html>`__ to see an example of how to use update_instance API.
10398
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_instance.py.html>`__ to see an example of how to use update_instance API.
10399
10399
  """
10400
10400
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10401
10401
  required_arguments = ['instanceId']
@@ -10505,7 +10505,7 @@ class ComputeClient(object):
10505
10505
  :rtype: :class:`~oci.response.Response`
10506
10506
 
10507
10507
  :example:
10508
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_instance_console_connection.py.html>`__ to see an example of how to use update_instance_console_connection API.
10508
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_instance_console_connection.py.html>`__ to see an example of how to use update_instance_console_connection API.
10509
10509
  """
10510
10510
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10511
10511
  required_arguments = ['instanceConsoleConnectionId']
@@ -10614,7 +10614,7 @@ class ComputeClient(object):
10614
10614
  :rtype: :class:`~oci.response.Response`
10615
10615
 
10616
10616
  :example:
10617
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_volume_attachment.py.html>`__ to see an example of how to use update_volume_attachment API.
10617
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_volume_attachment.py.html>`__ to see an example of how to use update_volume_attachment API.
10618
10618
  """
10619
10619
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10620
10620
  required_arguments = ['volumeAttachmentId']