oci 2.154.2__py3-none-any.whl → 2.155.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (520) hide show
  1. oci/__init__.py +2 -2
  2. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  3. oci/addons/adk/agent.py +82 -32
  4. oci/addons/adk/mcp/__init__.py +11 -0
  5. oci/addons/adk/mcp/mcp_client.py +420 -0
  6. oci/addons/adk/tool/function_tool.py +7 -3
  7. oci/addons/adk/tool/tool.py +11 -1
  8. oci/addons/adk/tool/toolkit.py +11 -2
  9. oci/adm/application_dependency_management_client.py +36 -36
  10. oci/ai_anomaly_detection/anomaly_detection_client.py +72 -72
  11. oci/ai_document/ai_service_document_client.py +26 -26
  12. oci/ai_language/ai_service_language_client.py +44 -44
  13. oci/ai_speech/ai_service_speech_client.py +19 -19
  14. oci/ai_vision/ai_service_vision_client.py +28 -28
  15. oci/analytics/analytics_client.py +24 -24
  16. oci/announcements_service/announcement_client.py +5 -5
  17. oci/announcements_service/announcement_subscription_client.py +9 -9
  18. oci/announcements_service/announcements_preferences_client.py +4 -4
  19. oci/announcements_service/service_client.py +1 -1
  20. oci/apiaccesscontrol/api_metadata_client.py +6 -6
  21. oci/apiaccesscontrol/privileged_api_control_client.py +12 -12
  22. oci/apiaccesscontrol/privileged_api_requests_client.py +14 -14
  23. oci/apiaccesscontrol/privileged_api_work_request_client.py +10 -10
  24. oci/apigateway/api_gateway_client.py +21 -21
  25. oci/apigateway/deployment_client.py +6 -6
  26. oci/apigateway/gateway_client.py +6 -6
  27. oci/apigateway/subscribers_client.py +6 -6
  28. oci/apigateway/usage_plans_client.py +6 -6
  29. oci/apigateway/work_requests_client.py +5 -5
  30. oci/apm_config/config_client.py +12 -12
  31. oci/apm_control_plane/apm_domain_client.py +14 -14
  32. oci/apm_synthetics/apm_synthetic_client.py +28 -28
  33. oci/apm_traces/__init__.py +3 -1
  34. oci/apm_traces/attributes_client.py +12 -12
  35. oci/apm_traces/models/__init__.py +25 -1
  36. oci/apm_traces/models/attribute.py +101 -0
  37. oci/apm_traces/models/attribute_metadata.py +149 -0
  38. oci/apm_traces/models/attribute_response.py +2 -2
  39. oci/apm_traces/models/attribute_update_response.py +2 -2
  40. oci/apm_traces/models/auto_activate_status.py +16 -0
  41. oci/apm_traces/models/auto_activate_toggle_status.py +16 -0
  42. oci/apm_traces/models/bulk_activate_attribute_detail.py +47 -8
  43. oci/apm_traces/models/bulk_de_activate_attribute_detail.py +7 -3
  44. oci/apm_traces/models/bulk_pin_attribute_detail.py +7 -3
  45. oci/apm_traces/models/bulk_unpin_attribute_detail.py +7 -3
  46. oci/apm_traces/models/bulk_update_attribute_detail.py +9 -5
  47. oci/apm_traces/models/bulk_update_attribute_notes_detail.py +7 -3
  48. oci/apm_traces/models/create_scheduled_query_details.py +471 -0
  49. oci/apm_traces/models/custom_metric.py +295 -0
  50. oci/apm_traces/models/log.py +475 -0
  51. oci/apm_traces/models/object_storage.py +132 -0
  52. oci/apm_traces/models/scheduled_query.py +666 -0
  53. oci/apm_traces/models/scheduled_query_collection.py +70 -0
  54. oci/apm_traces/models/scheduled_query_processing_config.py +120 -0
  55. oci/apm_traces/models/scheduled_query_summary.py +573 -0
  56. oci/apm_traces/models/streaming.py +70 -0
  57. oci/apm_traces/models/tag_metadata.py +2 -2
  58. oci/apm_traces/models/update_scheduled_query_details.py +471 -0
  59. oci/apm_traces/query_client.py +8 -6
  60. oci/apm_traces/scheduled_query_client.py +755 -0
  61. oci/apm_traces/scheduled_query_client_composite_operations.py +181 -0
  62. oci/apm_traces/trace_client.py +131 -6
  63. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  64. oci/artifacts/artifacts_client.py +32 -32
  65. oci/audit/audit_client.py +3 -3
  66. oci/autoscaling/auto_scaling_client.py +11 -11
  67. oci/base_client.py +3 -0
  68. oci/bastion/bastion_client.py +15 -15
  69. oci/bds/bds_client.py +88 -88
  70. oci/blockchain/blockchain_platform_client.py +27 -27
  71. oci/budget/budget_client.py +10 -10
  72. oci/capacity_management/capacity_management_client.py +32 -32
  73. oci/capacity_management/demand_signal_client.py +13 -13
  74. oci/capacity_management/internal_demand_signal_client.py +12 -12
  75. oci/certificates/certificates_client.py +5 -5
  76. oci/certificates_management/certificates_management_client.py +32 -32
  77. oci/cims/incident_client.py +6 -6
  78. oci/cloud_bridge/common_client.py +5 -5
  79. oci/cloud_bridge/discovery_client.py +15 -15
  80. oci/cloud_bridge/inventory_client.py +16 -16
  81. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  82. oci/cloud_guard/cloud_guard_client.py +155 -155
  83. oci/cloud_migrations/migration_client.py +43 -43
  84. oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
  85. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  86. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  87. oci/compute_instance_agent/plugin_client.py +2 -2
  88. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  89. oci/container_engine/container_engine_client.py +46 -46
  90. oci/container_instances/container_instance_client.py +18 -18
  91. oci/core/blockstorage_client.py +60 -60
  92. oci/core/compute_client.py +125 -125
  93. oci/core/compute_management_client.py +32 -32
  94. oci/core/virtual_network_client.py +258 -258
  95. oci/dashboard_service/dashboard_client.py +6 -6
  96. oci/dashboard_service/dashboard_group_client.py +6 -6
  97. oci/data_catalog/data_catalog_client.py +149 -149
  98. oci/data_flow/data_flow_client.py +45 -45
  99. oci/data_integration/data_integration_client.py +163 -163
  100. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  101. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  102. oci/data_safe/data_safe_client.py +317 -317
  103. oci/data_science/data_science_client.py +145 -145
  104. oci/database/database_client.py +901 -421
  105. oci/database/database_client_composite_operations.py +123 -0
  106. oci/database/models/__init__.py +14 -0
  107. oci/database/models/autonomous_container_database.py +37 -0
  108. oci/database/models/autonomous_container_database_summary.py +37 -0
  109. oci/database/models/autonomous_database_software_image.py +37 -0
  110. oci/database/models/autonomous_database_software_image_summary.py +37 -0
  111. oci/database/models/autonomous_vm_cluster.py +37 -0
  112. oci/database/models/autonomous_vm_cluster_summary.py +37 -0
  113. oci/database/models/azure_encryption_key_details.py +80 -0
  114. oci/database/models/backup.py +7 -3
  115. oci/database/models/backup_destination.py +37 -0
  116. oci/database/models/backup_destination_configuration_summary.py +7 -3
  117. oci/database/models/backup_destination_details.py +7 -3
  118. oci/database/models/backup_destination_details_summary.py +7 -3
  119. oci/database/models/backup_destination_summary.py +37 -0
  120. oci/database/models/backup_summary.py +7 -3
  121. oci/database/models/change_cloud_autonomous_vm_cluster_subscription_details.py +105 -0
  122. oci/database/models/cloud_autonomous_vm_cluster.py +74 -2
  123. oci/database/models/cloud_autonomous_vm_cluster_summary.py +74 -2
  124. oci/database/models/cloud_vm_cluster.py +80 -2
  125. oci/database/models/cloud_vm_cluster_summary.py +80 -2
  126. oci/database/models/create_cloud_autonomous_vm_cluster_details.py +37 -2
  127. oci/database/models/create_cloud_vm_cluster_details.py +17 -17
  128. oci/database/models/create_database_base.py +1 -1
  129. oci/database/models/create_vm_cluster_details.py +2 -2
  130. oci/database/models/database.py +37 -0
  131. oci/database/models/database_software_image.py +37 -0
  132. oci/database/models/database_software_image_summary.py +37 -0
  133. oci/database/models/database_summary.py +37 -0
  134. oci/database/models/db_home.py +37 -0
  135. oci/database/models/db_home_from_agent_resource_id.py +37 -0
  136. oci/database/models/db_home_summary.py +37 -0
  137. oci/database/models/db_node.py +37 -0
  138. oci/database/models/db_node_summary.py +37 -0
  139. oci/database/models/db_server.py +37 -0
  140. oci/database/models/db_server_summary.py +37 -0
  141. oci/database/models/db_system.py +37 -0
  142. oci/database/models/db_system_summary.py +37 -0
  143. oci/database/models/encryption_key_location_details.py +15 -5
  144. oci/database/models/exadata_infrastructure.py +37 -0
  145. oci/database/models/exadata_infrastructure_summary.py +37 -0
  146. oci/database/models/execution_action.py +39 -2
  147. oci/database/models/execution_action_summary.py +39 -2
  148. oci/database/models/execution_window.py +39 -2
  149. oci/database/models/execution_window_summary.py +39 -2
  150. oci/database/models/external_container_database.py +37 -0
  151. oci/database/models/external_container_database_summary.py +37 -0
  152. oci/database/models/external_database_base.py +37 -0
  153. oci/database/models/external_database_connector.py +37 -0
  154. oci/database/models/external_database_connector_summary.py +37 -0
  155. oci/database/models/external_hsm_encryption_details.py +1 -1
  156. oci/database/models/external_macs_connector.py +7 -0
  157. oci/database/models/external_macs_connector_summary.py +7 -0
  158. oci/database/models/external_non_container_database.py +37 -0
  159. oci/database/models/external_non_container_database_summary.py +37 -0
  160. oci/database/models/external_pluggable_database.py +37 -0
  161. oci/database/models/external_pluggable_database_summary.py +37 -0
  162. oci/database/models/identity_connector_details.py +113 -0
  163. oci/database/models/key_store.py +39 -2
  164. oci/database/models/key_store_summary.py +39 -2
  165. oci/database/models/maintenance_run.py +37 -0
  166. oci/database/models/maintenance_run_history.py +39 -2
  167. oci/database/models/maintenance_run_history_summary.py +39 -2
  168. oci/database/models/maintenance_run_summary.py +37 -0
  169. oci/database/models/oneoff_patch.py +39 -2
  170. oci/database/models/oneoff_patch_summary.py +39 -2
  171. oci/database/models/pluggable_database.py +37 -0
  172. oci/database/models/pluggable_database_summary.py +37 -0
  173. oci/database/models/register_cloud_vm_cluster_pkcs_details.py +86 -0
  174. oci/database/models/resource_pool_member_collection.py +70 -0
  175. oci/database/models/resource_pool_member_summary.py +74 -0
  176. oci/database/models/scheduling_policy.py +39 -2
  177. oci/database/models/scheduling_policy_summary.py +39 -2
  178. oci/database/models/scheduling_window.py +39 -2
  179. oci/database/models/scheduling_window_summary.py +39 -2
  180. oci/database/models/unregister_cloud_vm_cluster_pkcs_details.py +86 -0
  181. oci/database/models/vm_cluster.py +37 -0
  182. oci/database/models/vm_cluster_network.py +39 -2
  183. oci/database/models/vm_cluster_network_summary.py +39 -2
  184. oci/database/models/vm_cluster_summary.py +37 -0
  185. oci/database_management/db_management_client.py +229 -229
  186. oci/database_management/diagnosability_client.py +4 -4
  187. oci/database_management/managed_my_sql_databases_client.py +15 -15
  188. oci/database_management/perfhub_client.py +1 -1
  189. oci/database_management/sql_tuning_client.py +17 -17
  190. oci/database_migration/database_migration_client.py +155 -42
  191. oci/database_migration/database_migration_client_composite_operations.py +42 -0
  192. oci/database_migration/models/__init__.py +4 -0
  193. oci/database_migration/models/collect_traces_data.py +183 -0
  194. oci/database_migration/models/collect_traces_details.py +132 -0
  195. oci/database_migration/models/job.py +27 -0
  196. oci/database_tools/database_tools_client.py +23 -23
  197. oci/dblm/db_life_cycle_management_client.py +14 -14
  198. oci/dbmulticloud/__init__.py +28 -0
  199. oci/dbmulticloud/models/__init__.py +112 -0
  200. oci/dbmulticloud/models/arc_agent_nodes.py +218 -0
  201. oci/dbmulticloud/models/change_multi_cloud_resource_discovery_compartment_details.py +191 -0
  202. oci/dbmulticloud/models/change_oracle_db_azure_blob_container_compartment_details.py +187 -0
  203. oci/dbmulticloud/models/change_oracle_db_azure_blob_mount_compartment_details.py +187 -0
  204. oci/dbmulticloud/models/change_oracle_db_azure_connector_compartment_details.py +187 -0
  205. oci/dbmulticloud/models/change_oracle_db_azure_vault_association_compartment_details.py +191 -0
  206. oci/dbmulticloud/models/change_oracle_db_azure_vault_compartment_details.py +191 -0
  207. oci/dbmulticloud/models/create_multi_cloud_resource_discovery_details.py +253 -0
  208. oci/dbmulticloud/models/create_oracle_db_azure_blob_container_details.py +307 -0
  209. oci/dbmulticloud/models/create_oracle_db_azure_blob_mount_details.py +245 -0
  210. oci/dbmulticloud/models/create_oracle_db_azure_connector_details.py +431 -0
  211. oci/dbmulticloud/models/create_oracle_db_azure_vault_association_details.py +257 -0
  212. oci/dbmulticloud/models/create_oracle_db_azure_vault_details.py +377 -0
  213. oci/dbmulticloud/models/multi_cloud_resource_discovery.py +577 -0
  214. oci/dbmulticloud/models/multi_cloud_resource_discovery_summary.py +517 -0
  215. oci/dbmulticloud/models/multi_cloud_resource_discovery_summary_collection.py +70 -0
  216. oci/dbmulticloud/models/oracle_db_azure_blob_container.py +568 -0
  217. oci/dbmulticloud/models/oracle_db_azure_blob_container_summary.py +536 -0
  218. oci/dbmulticloud/models/oracle_db_azure_blob_container_summary_collection.py +70 -0
  219. oci/dbmulticloud/models/oracle_db_azure_blob_mount.py +537 -0
  220. oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary.py +505 -0
  221. oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary_collection.py +70 -0
  222. oci/dbmulticloud/models/oracle_db_azure_connector.py +739 -0
  223. oci/dbmulticloud/models/oracle_db_azure_connector_summary.py +660 -0
  224. oci/dbmulticloud/models/oracle_db_azure_connector_summary_collection.py +70 -0
  225. oci/dbmulticloud/models/oracle_db_azure_key.py +518 -0
  226. oci/dbmulticloud/models/oracle_db_azure_key_summary.py +486 -0
  227. oci/dbmulticloud/models/oracle_db_azure_key_summary_collection.py +70 -0
  228. oci/dbmulticloud/models/oracle_db_azure_vault.py +642 -0
  229. oci/dbmulticloud/models/oracle_db_azure_vault_association.py +553 -0
  230. oci/dbmulticloud/models/oracle_db_azure_vault_association_summary.py +521 -0
  231. oci/dbmulticloud/models/oracle_db_azure_vault_association_summary_collection.py +70 -0
  232. oci/dbmulticloud/models/oracle_db_azure_vault_summary.py +610 -0
  233. oci/dbmulticloud/models/oracle_db_azure_vault_summary_collection.py +70 -0
  234. oci/dbmulticloud/models/patch_oracle_db_azure_connector_details.py +187 -0
  235. oci/dbmulticloud/models/resources.py +229 -0
  236. oci/dbmulticloud/models/update_multi_cloud_resource_discovery_details.py +253 -0
  237. oci/dbmulticloud/models/update_oracle_db_azure_blob_container_details.py +307 -0
  238. oci/dbmulticloud/models/update_oracle_db_azure_blob_mount_details.py +245 -0
  239. oci/dbmulticloud/models/update_oracle_db_azure_connector_details.py +431 -0
  240. oci/dbmulticloud/models/update_oracle_db_azure_vault_association_details.py +257 -0
  241. oci/dbmulticloud/models/update_oracle_db_azure_vault_details.py +377 -0
  242. oci/dbmulticloud/models/work_request.py +496 -0
  243. oci/dbmulticloud/models/work_request_error.py +134 -0
  244. oci/dbmulticloud/models/work_request_error_collection.py +70 -0
  245. oci/dbmulticloud/models/work_request_log_entry.py +101 -0
  246. oci/dbmulticloud/models/work_request_log_entry_collection.py +70 -0
  247. oci/dbmulticloud/models/work_request_resource.py +232 -0
  248. oci/dbmulticloud/models/work_request_summary.py +496 -0
  249. oci/dbmulticloud/models/work_request_summary_collection.py +70 -0
  250. oci/dbmulticloud/multi_cloud_resource_discovery_client.py +883 -0
  251. oci/dbmulticloud/multi_cloud_resource_discovery_client_composite_operations.py +202 -0
  252. oci/dbmulticloud/oracle_db_azure_blob_container_client.py +864 -0
  253. oci/dbmulticloud/oracle_db_azure_blob_container_client_composite_operations.py +196 -0
  254. oci/dbmulticloud/oracle_db_azure_blob_mount_client.py +865 -0
  255. oci/dbmulticloud/oracle_db_azure_blob_mount_client_composite_operations.py +196 -0
  256. oci/dbmulticloud/oracle_db_azure_connector_client.py +963 -0
  257. oci/dbmulticloud/oracle_db_azure_connector_client_composite_operations.py +239 -0
  258. oci/dbmulticloud/oracle_db_azure_key_client.py +419 -0
  259. oci/dbmulticloud/oracle_db_azure_key_client_composite_operations.py +26 -0
  260. oci/dbmulticloud/oracle_db_azure_vault_association_client.py +979 -0
  261. oci/dbmulticloud/oracle_db_azure_vault_association_client_composite_operations.py +235 -0
  262. oci/dbmulticloud/oracle_db_azure_vault_client.py +979 -0
  263. oci/dbmulticloud/oracle_db_azure_vault_client_composite_operations.py +235 -0
  264. oci/dbmulticloud/work_request_client.py +770 -0
  265. oci/dbmulticloud/work_request_client_composite_operations.py +26 -0
  266. oci/delegate_access_control/delegate_access_control_client.py +26 -26
  267. oci/delegate_access_control/work_request_client.py +4 -4
  268. oci/demand_signal/occ_demand_signal_client.py +7 -7
  269. oci/desktops/desktop_service_client.py +21 -21
  270. oci/devops/devops_client.py +141 -141
  271. oci/disaster_recovery/disaster_recovery_client.py +31 -31
  272. oci/distributed_database/distributed_autonomous_db_service_client.py +18 -18
  273. oci/distributed_database/distributed_db_private_endpoint_service_client.py +7 -7
  274. oci/distributed_database/distributed_db_service_client.py +19 -19
  275. oci/distributed_database/distributed_db_work_request_service_client.py +4 -4
  276. oci/dns/dns_client.py +54 -54
  277. oci/dts/appliance_export_job_client.py +6 -6
  278. oci/dts/shipping_vendors_client.py +1 -1
  279. oci/dts/transfer_appliance_client.py +8 -8
  280. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  281. oci/dts/transfer_device_client.py +5 -5
  282. oci/dts/transfer_job_client.py +6 -6
  283. oci/dts/transfer_package_client.py +7 -7
  284. oci/em_warehouse/em_warehouse_client.py +13 -13
  285. oci/email/email_client.py +31 -31
  286. oci/email_data_plane/email_dp_client.py +1 -1
  287. oci/events/events_client.py +6 -6
  288. oci/file_storage/file_storage_client.py +74 -74
  289. oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
  290. oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
  291. oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
  292. oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
  293. oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
  294. oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
  295. oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
  296. oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
  297. oci/fleet_software_update/fleet_software_update_client.py +46 -46
  298. oci/fleet_software_update/models/__init__.py +12 -0
  299. oci/fleet_software_update/models/create_fsu_cycle_details.py +11 -3
  300. oci/fleet_software_update/models/create_patch_fsu_cycle.py +1 -1
  301. oci/fleet_software_update/models/create_upgrade_fsu_cycle.py +147 -0
  302. oci/fleet_software_update/models/fsu_cycle.py +11 -3
  303. oci/fleet_software_update/models/fsu_cycle_summary.py +7 -3
  304. oci/fleet_software_update/models/patch_fsu_cycle.py +1 -1
  305. oci/fleet_software_update/models/update_fsu_cycle_details.py +11 -3
  306. oci/fleet_software_update/models/update_patch_fsu_cycle.py +1 -1
  307. oci/fleet_software_update/models/update_upgrade_fsu_cycle.py +118 -0
  308. oci/fleet_software_update/models/upgrade_db_collection_details.py +142 -0
  309. oci/fleet_software_update/models/upgrade_details.py +107 -0
  310. oci/fleet_software_update/models/upgrade_fsu_cycle.py +241 -0
  311. oci/fleet_software_update/models/upgrade_gi_collection_details.py +111 -0
  312. oci/functions/functions_invoke_client.py +1 -1
  313. oci/functions/functions_management_client.py +16 -16
  314. oci/fusion_apps/fusion_applications_client.py +41 -41
  315. oci/generative_ai/generative_ai_client.py +22 -22
  316. oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
  317. oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
  318. oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
  319. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  320. oci/globally_distributed_database/sharded_database_service_client.py +30 -30
  321. oci/golden_gate/golden_gate_client.py +89 -89
  322. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  323. oci/governance_rules_control_plane/work_request_client.py +5 -5
  324. oci/healthchecks/health_checks_client.py +17 -17
  325. oci/identity/identity_client.py +145 -145
  326. oci/identity_data_plane/dataplane_client.py +2 -2
  327. oci/identity_domains/identity_domains_client.py +311 -311
  328. oci/integration/integration_instance_client.py +19 -19
  329. oci/jms/java_management_service_client.py +79 -79
  330. oci/jms_java_downloads/java_download_client.py +25 -25
  331. oci/key_management/ekm_client.py +5 -5
  332. oci/key_management/kms_crypto_client.py +6 -6
  333. oci/key_management/kms_hsm_cluster_client.py +12 -12
  334. oci/key_management/kms_management_client.py +21 -21
  335. oci/key_management/kms_vault_client.py +14 -14
  336. oci/license_manager/license_manager_client.py +18 -18
  337. oci/limits/limits_client.py +4 -4
  338. oci/limits/quotas_client.py +7 -7
  339. oci/load_balancer/load_balancer_client.py +61 -61
  340. oci/load_balancer/models/backend.py +4 -4
  341. oci/load_balancer/models/backend_details.py +10 -4
  342. oci/load_balancer/models/backend_set.py +6 -4
  343. oci/load_balancer/models/backend_set_details.py +12 -4
  344. oci/load_balancer/models/create_backend_details.py +10 -4
  345. oci/load_balancer/models/create_backend_set_details.py +12 -4
  346. oci/load_balancer/models/create_listener_details.py +6 -4
  347. oci/load_balancer/models/create_load_balancer_details.py +39 -0
  348. oci/load_balancer/models/listener.py +6 -4
  349. oci/load_balancer/models/listener_details.py +6 -4
  350. oci/load_balancer/models/load_balancer.py +61 -2
  351. oci/load_balancer/models/reserved_ip.py +4 -0
  352. oci/load_balancer/models/update_backend_details.py +10 -4
  353. oci/load_balancer/models/update_backend_set_details.py +12 -4
  354. oci/load_balancer/models/update_listener_details.py +6 -4
  355. oci/load_balancer/models/update_load_balancer_details.py +59 -0
  356. oci/lockbox/lockbox_client.py +24 -24
  357. oci/log_analytics/log_analytics_client.py +200 -200
  358. oci/logging/logging_management_client.py +30 -30
  359. oci/loggingingestion/logging_client.py +1 -1
  360. oci/loggingsearch/log_search_client.py +1 -1
  361. oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
  362. oci/management_agent/management_agent_client.py +28 -28
  363. oci/management_dashboard/dashx_apis_client.py +18 -18
  364. oci/marketplace/account_client.py +2 -2
  365. oci/marketplace/marketplace_client.py +30 -30
  366. oci/marketplace_private_offer/attachment_client.py +5 -5
  367. oci/marketplace_private_offer/offer_client.py +6 -6
  368. oci/marketplace_publisher/attachment_client.py +5 -5
  369. oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
  370. oci/marketplace_publisher/offer_client.py +6 -6
  371. oci/media_services/media_services_client.py +60 -60
  372. oci/media_services/media_stream_client.py +2 -2
  373. oci/mngdmac/mac_device_client.py +3 -3
  374. oci/mngdmac/mac_order_client.py +11 -11
  375. oci/model_deployment/model_deployment_client.py +2 -2
  376. oci/monitoring/monitoring_client.py +18 -18
  377. oci/mysql/channels_client.py +7 -7
  378. oci/mysql/db_backups_client.py +8 -8
  379. oci/mysql/db_system_client.py +17 -17
  380. oci/mysql/models/__init__.py +2 -0
  381. oci/mysql/models/backup.py +29 -2
  382. oci/mysql/models/backup_summary.py +29 -2
  383. oci/mysql/models/copy_backup_details.py +29 -2
  384. oci/mysql/models/create_db_system_details.py +27 -0
  385. oci/mysql/models/db_system.py +27 -0
  386. oci/mysql/models/db_system_snapshot.py +27 -0
  387. oci/mysql/models/encrypt_data_details.py +117 -0
  388. oci/mysql/models/replica.py +27 -0
  389. oci/mysql/models/update_db_system_details.py +27 -0
  390. oci/mysql/mysqlaas_client.py +7 -7
  391. oci/mysql/replicas_client.py +5 -5
  392. oci/mysql/work_requests_client.py +4 -4
  393. oci/network_firewall/network_firewall_client.py +92 -92
  394. oci/network_load_balancer/network_load_balancer_client.py +35 -35
  395. oci/nosql/models/__init__.py +14 -0
  396. oci/nosql/models/configuration.py +109 -0
  397. oci/nosql/models/hosted_configuration.py +78 -0
  398. oci/nosql/models/kms_key.py +244 -0
  399. oci/nosql/models/multi_tenancy_configuration.py +49 -0
  400. oci/nosql/models/update_configuration_details.py +109 -0
  401. oci/nosql/models/update_hosted_configuration_details.py +78 -0
  402. oci/nosql/models/update_multi_tenancy_configuration_details.py +52 -0
  403. oci/nosql/models/work_request.py +7 -3
  404. oci/nosql/models/work_request_summary.py +7 -3
  405. oci/nosql/nosql_client.py +340 -25
  406. oci/nosql/nosql_client_composite_operations.py +81 -0
  407. oci/object_storage/object_storage_client.py +55 -55
  408. oci/oce/oce_instance_client.py +10 -10
  409. oci/oci_control_center/occ_metrics_client.py +3 -3
  410. oci/ocvp/cluster_client.py +5 -5
  411. oci/ocvp/esxi_host_client.py +8 -8
  412. oci/ocvp/sddc_client.py +14 -14
  413. oci/ocvp/work_request_client.py +4 -4
  414. oci/oda/management_client.py +59 -59
  415. oci/oda/oda_client.py +17 -17
  416. oci/oda/odapackage_client.py +7 -7
  417. oci/onesubscription/billing_schedule_client.py +1 -1
  418. oci/onesubscription/commitment_client.py +2 -2
  419. oci/onesubscription/computed_usage_client.py +3 -3
  420. oci/onesubscription/invoice_summary_client.py +2 -2
  421. oci/onesubscription/organization_subscription_client.py +1 -1
  422. oci/onesubscription/ratecard_client.py +1 -1
  423. oci/onesubscription/subscribed_service_client.py +2 -2
  424. oci/onesubscription/subscription_client.py +1 -1
  425. oci/ons/notification_control_plane_client.py +6 -6
  426. oci/ons/notification_data_plane_client.py +10 -10
  427. oci/opa/opa_instance_client.py +13 -13
  428. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  429. oci/opensearch/opensearch_cluster_client.py +17 -17
  430. oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
  431. oci/operator_access_control/access_requests_client.py +10 -10
  432. oci/operator_access_control/operator_actions_client.py +2 -2
  433. oci/operator_access_control/operator_control_assignment_client.py +8 -8
  434. oci/operator_access_control/operator_control_client.py +6 -6
  435. oci/opsi/operations_insights_client.py +181 -181
  436. oci/optimizer/optimizer_client.py +26 -26
  437. oci/os_management/event_client.py +8 -8
  438. oci/os_management/os_management_client.py +69 -69
  439. oci/os_management_hub/event_client.py +8 -8
  440. oci/os_management_hub/lifecycle_environment_client.py +13 -13
  441. oci/os_management_hub/managed_instance_client.py +33 -33
  442. oci/os_management_hub/managed_instance_group_client.py +26 -26
  443. oci/os_management_hub/management_station_client.py +10 -10
  444. oci/os_management_hub/onboarding_client.py +13 -13
  445. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  446. oci/os_management_hub/scheduled_job_client.py +7 -7
  447. oci/os_management_hub/software_source_client.py +33 -33
  448. oci/os_management_hub/work_request_client.py +5 -5
  449. oci/osp_gateway/address_rule_service_client.py +1 -1
  450. oci/osp_gateway/address_service_client.py +2 -2
  451. oci/osp_gateway/invoice_service_client.py +5 -5
  452. oci/osp_gateway/subscription_service_client.py +5 -5
  453. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  454. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  455. oci/osub_subscription/commitment_client.py +2 -2
  456. oci/osub_subscription/ratecard_client.py +1 -1
  457. oci/osub_subscription/subscription_client.py +1 -1
  458. oci/osub_usage/computed_usage_client.py +3 -3
  459. oci/psql/postgresql_client.py +34 -34
  460. oci/queue/queue_admin_client.py +11 -11
  461. oci/queue/queue_client.py +8 -8
  462. oci/recovery/database_recovery_client.py +26 -26
  463. oci/redis/oci_cache_user_client.py +7 -7
  464. oci/redis/redis_cluster_client.py +15 -15
  465. oci/redis/redis_identity_client.py +1 -1
  466. oci/resource_manager/resource_manager_client.py +52 -52
  467. oci/resource_scheduler/schedule_client.py +14 -14
  468. oci/resource_search/resource_search_client.py +3 -3
  469. oci/rover/rover_bundle_client.py +8 -8
  470. oci/rover/rover_cluster_client.py +8 -8
  471. oci/rover/rover_entitlement_client.py +6 -6
  472. oci/rover/rover_node_client.py +15 -15
  473. oci/rover/shape_client.py +1 -1
  474. oci/rover/work_requests_client.py +5 -5
  475. oci/sch/connector_plugins_client.py +2 -2
  476. oci/sch/service_connector_client.py +12 -12
  477. oci/secrets/secrets_client.py +3 -3
  478. oci/security_attribute/security_attribute_client.py +18 -18
  479. oci/service_catalog/service_catalog_client.py +26 -26
  480. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  481. oci/service_mesh/service_mesh_client.py +96 -96
  482. oci/stack_monitoring/stack_monitoring_client.py +87 -87
  483. oci/streaming/stream_admin_client.py +18 -18
  484. oci/streaming/stream_client.py +8 -8
  485. oci/tenant_manager_control_plane/domain_client.py +5 -5
  486. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  487. oci/tenant_manager_control_plane/governance_client.py +2 -2
  488. oci/tenant_manager_control_plane/link_client.py +3 -3
  489. oci/tenant_manager_control_plane/orders_client.py +2 -2
  490. oci/tenant_manager_control_plane/organization_client.py +10 -10
  491. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  492. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  493. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  494. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  495. oci/threat_intelligence/threatintel_client.py +5 -5
  496. oci/usage/resources_client.py +2 -2
  497. oci/usage/rewards_client.py +6 -6
  498. oci/usage/usagelimits_client.py +1 -1
  499. oci/usage_api/usageapi_client.py +33 -33
  500. oci/vault/vaults_client.py +13 -13
  501. oci/vbs_inst/vbs_instance_client.py +10 -10
  502. oci/version.py +1 -1
  503. oci/visual_builder/vb_instance_client.py +14 -14
  504. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  505. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  506. oci/waa/waa_client.py +13 -13
  507. oci/waa/work_request_client.py +4 -4
  508. oci/waas/redirect_client.py +6 -6
  509. oci/waas/waas_client.py +66 -66
  510. oci/waf/waf_client.py +24 -24
  511. oci/wlms/weblogic_management_service_client.py +41 -41
  512. oci/wlms/weblogic_management_service_configuration_client.py +2 -2
  513. oci/work_requests/work_request_client.py +4 -4
  514. oci/zpr/zpr_client.py +15 -15
  515. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/METADATA +1 -1
  516. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/RECORD +520 -413
  517. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/LICENSE.txt +0 -0
  518. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  519. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/WHEEL +0 -0
  520. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/top_level.txt +0 -0
@@ -153,7 +153,7 @@ class DataScienceClient(object):
153
153
  :rtype: :class:`~oci.response.Response`
154
154
 
155
155
  :example:
156
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/activate_model.py.html>`__ to see an example of how to use activate_model API.
156
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/activate_model.py.html>`__ to see an example of how to use activate_model API.
157
157
  """
158
158
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
159
159
  required_arguments = ['modelId']
@@ -262,7 +262,7 @@ class DataScienceClient(object):
262
262
  :rtype: :class:`~oci.response.Response`
263
263
 
264
264
  :example:
265
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/activate_model_deployment.py.html>`__ to see an example of how to use activate_model_deployment API.
265
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/activate_model_deployment.py.html>`__ to see an example of how to use activate_model_deployment API.
266
266
  """
267
267
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
268
268
  required_arguments = ['modelDeploymentId']
@@ -367,7 +367,7 @@ class DataScienceClient(object):
367
367
  :rtype: :class:`~oci.response.Response`
368
368
 
369
369
  :example:
370
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/activate_notebook_session.py.html>`__ to see an example of how to use activate_notebook_session API.
370
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/activate_notebook_session.py.html>`__ to see an example of how to use activate_notebook_session API.
371
371
  """
372
372
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
373
373
  required_arguments = ['notebookSessionId']
@@ -473,7 +473,7 @@ class DataScienceClient(object):
473
473
  :rtype: :class:`~oci.response.Response`
474
474
 
475
475
  :example:
476
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/activate_schedule.py.html>`__ to see an example of how to use activate_schedule API.
476
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/activate_schedule.py.html>`__ to see an example of how to use activate_schedule API.
477
477
  """
478
478
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
479
479
  required_arguments = ['scheduleId']
@@ -583,7 +583,7 @@ class DataScienceClient(object):
583
583
  :rtype: :class:`~oci.response.Response`
584
584
 
585
585
  :example:
586
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/cancel_job_run.py.html>`__ to see an example of how to use cancel_job_run API.
586
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/cancel_job_run.py.html>`__ to see an example of how to use cancel_job_run API.
587
587
  """
588
588
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
589
589
  required_arguments = ['jobRunId']
@@ -696,7 +696,7 @@ class DataScienceClient(object):
696
696
  :rtype: :class:`~oci.response.Response`
697
697
 
698
698
  :example:
699
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/cancel_pipeline_run.py.html>`__ to see an example of how to use cancel_pipeline_run API.
699
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/cancel_pipeline_run.py.html>`__ to see an example of how to use cancel_pipeline_run API.
700
700
  """
701
701
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
702
702
  required_arguments = ['pipelineRunId']
@@ -814,7 +814,7 @@ class DataScienceClient(object):
814
814
  :rtype: :class:`~oci.response.Response`
815
815
 
816
816
  :example:
817
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/cancel_work_request.py.html>`__ to see an example of how to use cancel_work_request API.
817
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/cancel_work_request.py.html>`__ to see an example of how to use cancel_work_request API.
818
818
  """
819
819
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
820
820
  required_arguments = ['workRequestId']
@@ -923,7 +923,7 @@ class DataScienceClient(object):
923
923
  :rtype: :class:`~oci.response.Response`
924
924
 
925
925
  :example:
926
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_data_science_private_endpoint_compartment.py.html>`__ to see an example of how to use change_data_science_private_endpoint_compartment API.
926
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_data_science_private_endpoint_compartment.py.html>`__ to see an example of how to use change_data_science_private_endpoint_compartment API.
927
927
  """
928
928
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
929
929
  required_arguments = ['dataSciencePrivateEndpointId']
@@ -1038,7 +1038,7 @@ class DataScienceClient(object):
1038
1038
  :rtype: :class:`~oci.response.Response`
1039
1039
 
1040
1040
  :example:
1041
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
1041
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_job_compartment.py.html>`__ to see an example of how to use change_job_compartment API.
1042
1042
  """
1043
1043
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1044
1044
  required_arguments = ['jobId']
@@ -1148,7 +1148,7 @@ class DataScienceClient(object):
1148
1148
  :rtype: :class:`~oci.response.Response`
1149
1149
 
1150
1150
  :example:
1151
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_job_run_compartment.py.html>`__ to see an example of how to use change_job_run_compartment API.
1151
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_job_run_compartment.py.html>`__ to see an example of how to use change_job_run_compartment API.
1152
1152
  """
1153
1153
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1154
1154
  required_arguments = ['jobRunId']
@@ -1259,7 +1259,7 @@ class DataScienceClient(object):
1259
1259
  :rtype: :class:`~oci.response.Response`
1260
1260
 
1261
1261
  :example:
1262
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_ml_application_compartment.py.html>`__ to see an example of how to use change_ml_application_compartment API.
1262
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_ml_application_compartment.py.html>`__ to see an example of how to use change_ml_application_compartment API.
1263
1263
  """
1264
1264
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1265
1265
  required_arguments = ['mlApplicationId']
@@ -1375,7 +1375,7 @@ class DataScienceClient(object):
1375
1375
  :rtype: :class:`~oci.response.Response`
1376
1376
 
1377
1377
  :example:
1378
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_ml_application_implementation_compartment.py.html>`__ to see an example of how to use change_ml_application_implementation_compartment API.
1378
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_ml_application_implementation_compartment.py.html>`__ to see an example of how to use change_ml_application_implementation_compartment API.
1379
1379
  """
1380
1380
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1381
1381
  required_arguments = ['mlApplicationImplementationId']
@@ -1491,7 +1491,7 @@ class DataScienceClient(object):
1491
1491
  :rtype: :class:`~oci.response.Response`
1492
1492
 
1493
1493
  :example:
1494
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_ml_application_instance_compartment.py.html>`__ to see an example of how to use change_ml_application_instance_compartment API.
1494
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_ml_application_instance_compartment.py.html>`__ to see an example of how to use change_ml_application_instance_compartment API.
1495
1495
  """
1496
1496
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1497
1497
  required_arguments = ['mlApplicationInstanceId']
@@ -1607,7 +1607,7 @@ class DataScienceClient(object):
1607
1607
  :rtype: :class:`~oci.response.Response`
1608
1608
 
1609
1609
  :example:
1610
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_ml_application_instance_view_compartment.py.html>`__ to see an example of how to use change_ml_application_instance_view_compartment API.
1610
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_ml_application_instance_view_compartment.py.html>`__ to see an example of how to use change_ml_application_instance_view_compartment API.
1611
1611
  """
1612
1612
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1613
1613
  required_arguments = ['mlApplicationInstanceViewId']
@@ -1725,7 +1725,7 @@ class DataScienceClient(object):
1725
1725
  :rtype: :class:`~oci.response.Response`
1726
1726
 
1727
1727
  :example:
1728
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_model_compartment.py.html>`__ to see an example of how to use change_model_compartment API.
1728
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_model_compartment.py.html>`__ to see an example of how to use change_model_compartment API.
1729
1729
  """
1730
1730
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1731
1731
  required_arguments = ['modelId']
@@ -1841,7 +1841,7 @@ class DataScienceClient(object):
1841
1841
  :rtype: :class:`~oci.response.Response`
1842
1842
 
1843
1843
  :example:
1844
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_model_deployment_compartment.py.html>`__ to see an example of how to use change_model_deployment_compartment API.
1844
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_model_deployment_compartment.py.html>`__ to see an example of how to use change_model_deployment_compartment API.
1845
1845
  """
1846
1846
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1847
1847
  required_arguments = ['modelDeploymentId']
@@ -1957,7 +1957,7 @@ class DataScienceClient(object):
1957
1957
  :rtype: :class:`~oci.response.Response`
1958
1958
 
1959
1959
  :example:
1960
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_model_version_set_compartment.py.html>`__ to see an example of how to use change_model_version_set_compartment API.
1960
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_model_version_set_compartment.py.html>`__ to see an example of how to use change_model_version_set_compartment API.
1961
1961
  """
1962
1962
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1963
1963
  required_arguments = ['modelVersionSetId']
@@ -2073,7 +2073,7 @@ class DataScienceClient(object):
2073
2073
  :rtype: :class:`~oci.response.Response`
2074
2074
 
2075
2075
  :example:
2076
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_notebook_session_compartment.py.html>`__ to see an example of how to use change_notebook_session_compartment API.
2076
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_notebook_session_compartment.py.html>`__ to see an example of how to use change_notebook_session_compartment API.
2077
2077
  """
2078
2078
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2079
2079
  required_arguments = ['notebookSessionId']
@@ -2186,7 +2186,7 @@ class DataScienceClient(object):
2186
2186
  :rtype: :class:`~oci.response.Response`
2187
2187
 
2188
2188
  :example:
2189
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_pipeline_compartment.py.html>`__ to see an example of how to use change_pipeline_compartment API.
2189
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_pipeline_compartment.py.html>`__ to see an example of how to use change_pipeline_compartment API.
2190
2190
  """
2191
2191
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2192
2192
  required_arguments = ['pipelineId']
@@ -2296,7 +2296,7 @@ class DataScienceClient(object):
2296
2296
  :rtype: :class:`~oci.response.Response`
2297
2297
 
2298
2298
  :example:
2299
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_pipeline_run_compartment.py.html>`__ to see an example of how to use change_pipeline_run_compartment API.
2299
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_pipeline_run_compartment.py.html>`__ to see an example of how to use change_pipeline_run_compartment API.
2300
2300
  """
2301
2301
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2302
2302
  required_arguments = ['pipelineRunId']
@@ -2409,7 +2409,7 @@ class DataScienceClient(object):
2409
2409
  :rtype: :class:`~oci.response.Response`
2410
2410
 
2411
2411
  :example:
2412
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_project_compartment.py.html>`__ to see an example of how to use change_project_compartment API.
2412
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_project_compartment.py.html>`__ to see an example of how to use change_project_compartment API.
2413
2413
  """
2414
2414
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2415
2415
  required_arguments = ['projectId']
@@ -2523,7 +2523,7 @@ class DataScienceClient(object):
2523
2523
  :rtype: :class:`~oci.response.Response`
2524
2524
 
2525
2525
  :example:
2526
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/change_schedule_compartment.py.html>`__ to see an example of how to use change_schedule_compartment API.
2526
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/change_schedule_compartment.py.html>`__ to see an example of how to use change_schedule_compartment API.
2527
2527
  """
2528
2528
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2529
2529
  required_arguments = ['scheduleId']
@@ -2629,7 +2629,7 @@ class DataScienceClient(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.154.2/datascience/create_data_science_private_endpoint.py.html>`__ to see an example of how to use create_data_science_private_endpoint API.
2632
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_data_science_private_endpoint.py.html>`__ to see an example of how to use create_data_science_private_endpoint API.
2633
2633
  """
2634
2634
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2635
2635
  required_arguments = []
@@ -2723,7 +2723,7 @@ class DataScienceClient(object):
2723
2723
  :rtype: :class:`~oci.response.Response`
2724
2724
 
2725
2725
  :example:
2726
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_job.py.html>`__ to see an example of how to use create_job API.
2726
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_job.py.html>`__ to see an example of how to use create_job API.
2727
2727
  """
2728
2728
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2729
2729
  required_arguments = []
@@ -2836,7 +2836,7 @@ class DataScienceClient(object):
2836
2836
  :rtype: :class:`~oci.response.Response`
2837
2837
 
2838
2838
  :example:
2839
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_job_artifact.py.html>`__ to see an example of how to use create_job_artifact API.
2839
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_job_artifact.py.html>`__ to see an example of how to use create_job_artifact API.
2840
2840
  """
2841
2841
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2842
2842
  required_arguments = ['jobId']
@@ -2968,7 +2968,7 @@ class DataScienceClient(object):
2968
2968
  :rtype: :class:`~oci.response.Response`
2969
2969
 
2970
2970
  :example:
2971
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_job_run.py.html>`__ to see an example of how to use create_job_run API.
2971
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_job_run.py.html>`__ to see an example of how to use create_job_run API.
2972
2972
  """
2973
2973
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2974
2974
  required_arguments = []
@@ -3064,7 +3064,7 @@ class DataScienceClient(object):
3064
3064
  :rtype: :class:`~oci.response.Response`
3065
3065
 
3066
3066
  :example:
3067
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_ml_application.py.html>`__ to see an example of how to use create_ml_application API.
3067
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_ml_application.py.html>`__ to see an example of how to use create_ml_application API.
3068
3068
  """
3069
3069
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3070
3070
  required_arguments = []
@@ -3158,7 +3158,7 @@ class DataScienceClient(object):
3158
3158
  :rtype: :class:`~oci.response.Response`
3159
3159
 
3160
3160
  :example:
3161
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_ml_application_implementation.py.html>`__ to see an example of how to use create_ml_application_implementation API.
3161
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_ml_application_implementation.py.html>`__ to see an example of how to use create_ml_application_implementation API.
3162
3162
  """
3163
3163
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3164
3164
  required_arguments = []
@@ -3252,7 +3252,7 @@ class DataScienceClient(object):
3252
3252
  :rtype: :class:`~oci.response.Response`
3253
3253
 
3254
3254
  :example:
3255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_ml_application_instance.py.html>`__ to see an example of how to use create_ml_application_instance API.
3255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_ml_application_instance.py.html>`__ to see an example of how to use create_ml_application_instance API.
3256
3256
  """
3257
3257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3258
3258
  required_arguments = []
@@ -3346,7 +3346,7 @@ class DataScienceClient(object):
3346
3346
  :rtype: :class:`~oci.response.Response`
3347
3347
 
3348
3348
  :example:
3349
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_model.py.html>`__ to see an example of how to use create_model API.
3349
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_model.py.html>`__ to see an example of how to use create_model API.
3350
3350
  """
3351
3351
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3352
3352
  required_arguments = []
@@ -3471,7 +3471,7 @@ class DataScienceClient(object):
3471
3471
  :rtype: :class:`~oci.response.Response`
3472
3472
 
3473
3473
  :example:
3474
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_model_artifact.py.html>`__ to see an example of how to use create_model_artifact API.
3474
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_model_artifact.py.html>`__ to see an example of how to use create_model_artifact API.
3475
3475
  """
3476
3476
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3477
3477
  required_arguments = ['modelId']
@@ -3635,7 +3635,7 @@ class DataScienceClient(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.154.2/datascience/create_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use create_model_custom_metadatum_artifact API.
3638
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use create_model_custom_metadatum_artifact API.
3639
3639
  """
3640
3640
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3641
3641
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -3795,7 +3795,7 @@ class DataScienceClient(object):
3795
3795
  :rtype: :class:`~oci.response.Response`
3796
3796
 
3797
3797
  :example:
3798
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use create_model_defined_metadatum_artifact API.
3798
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use create_model_defined_metadatum_artifact API.
3799
3799
  """
3800
3800
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3801
3801
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -3927,7 +3927,7 @@ class DataScienceClient(object):
3927
3927
  :rtype: :class:`~oci.response.Response`
3928
3928
 
3929
3929
  :example:
3930
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_model_deployment.py.html>`__ to see an example of how to use create_model_deployment API.
3930
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_model_deployment.py.html>`__ to see an example of how to use create_model_deployment API.
3931
3931
  """
3932
3932
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3933
3933
  required_arguments = []
@@ -4028,7 +4028,7 @@ class DataScienceClient(object):
4028
4028
  :rtype: :class:`~oci.response.Response`
4029
4029
 
4030
4030
  :example:
4031
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_model_provenance.py.html>`__ to see an example of how to use create_model_provenance API.
4031
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_model_provenance.py.html>`__ to see an example of how to use create_model_provenance API.
4032
4032
  """
4033
4033
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4034
4034
  required_arguments = ['modelId']
@@ -4134,7 +4134,7 @@ class DataScienceClient(object):
4134
4134
  :rtype: :class:`~oci.response.Response`
4135
4135
 
4136
4136
  :example:
4137
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_model_version_set.py.html>`__ to see an example of how to use create_model_version_set API.
4137
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_model_version_set.py.html>`__ to see an example of how to use create_model_version_set API.
4138
4138
  """
4139
4139
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4140
4140
  required_arguments = []
@@ -4228,7 +4228,7 @@ class DataScienceClient(object):
4228
4228
  :rtype: :class:`~oci.response.Response`
4229
4229
 
4230
4230
  :example:
4231
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_notebook_session.py.html>`__ to see an example of how to use create_notebook_session API.
4231
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_notebook_session.py.html>`__ to see an example of how to use create_notebook_session API.
4232
4232
  """
4233
4233
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4234
4234
  required_arguments = []
@@ -4322,7 +4322,7 @@ class DataScienceClient(object):
4322
4322
  :rtype: :class:`~oci.response.Response`
4323
4323
 
4324
4324
  :example:
4325
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_pipeline.py.html>`__ to see an example of how to use create_pipeline API.
4325
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_pipeline.py.html>`__ to see an example of how to use create_pipeline API.
4326
4326
  """
4327
4327
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4328
4328
  required_arguments = []
@@ -4419,7 +4419,7 @@ class DataScienceClient(object):
4419
4419
  :rtype: :class:`~oci.response.Response`
4420
4420
 
4421
4421
  :example:
4422
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_pipeline_run.py.html>`__ to see an example of how to use create_pipeline_run API.
4422
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_pipeline_run.py.html>`__ to see an example of how to use create_pipeline_run API.
4423
4423
  """
4424
4424
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4425
4425
  required_arguments = []
@@ -4515,7 +4515,7 @@ class DataScienceClient(object):
4515
4515
  :rtype: :class:`~oci.response.Response`
4516
4516
 
4517
4517
  :example:
4518
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_project.py.html>`__ to see an example of how to use create_project API.
4518
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_project.py.html>`__ to see an example of how to use create_project API.
4519
4519
  """
4520
4520
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4521
4521
  required_arguments = []
@@ -4609,7 +4609,7 @@ class DataScienceClient(object):
4609
4609
  :rtype: :class:`~oci.response.Response`
4610
4610
 
4611
4611
  :example:
4612
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_schedule.py.html>`__ to see an example of how to use create_schedule API.
4612
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_schedule.py.html>`__ to see an example of how to use create_schedule API.
4613
4613
  """
4614
4614
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4615
4615
  required_arguments = []
@@ -4730,7 +4730,7 @@ class DataScienceClient(object):
4730
4730
  :rtype: :class:`~oci.response.Response`
4731
4731
 
4732
4732
  :example:
4733
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/create_step_artifact.py.html>`__ to see an example of how to use create_step_artifact API.
4733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/create_step_artifact.py.html>`__ to see an example of how to use create_step_artifact API.
4734
4734
  """
4735
4735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4736
4736
  required_arguments = ['pipelineId', 'stepName']
@@ -4866,7 +4866,7 @@ class DataScienceClient(object):
4866
4866
  :rtype: :class:`~oci.response.Response`
4867
4867
 
4868
4868
  :example:
4869
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/deactivate_model.py.html>`__ to see an example of how to use deactivate_model API.
4869
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/deactivate_model.py.html>`__ to see an example of how to use deactivate_model API.
4870
4870
  """
4871
4871
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4872
4872
  required_arguments = ['modelId']
@@ -4975,7 +4975,7 @@ class DataScienceClient(object):
4975
4975
  :rtype: :class:`~oci.response.Response`
4976
4976
 
4977
4977
  :example:
4978
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/deactivate_model_deployment.py.html>`__ to see an example of how to use deactivate_model_deployment API.
4978
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/deactivate_model_deployment.py.html>`__ to see an example of how to use deactivate_model_deployment API.
4979
4979
  """
4980
4980
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4981
4981
  required_arguments = ['modelDeploymentId']
@@ -5080,7 +5080,7 @@ class DataScienceClient(object):
5080
5080
  :rtype: :class:`~oci.response.Response`
5081
5081
 
5082
5082
  :example:
5083
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/deactivate_notebook_session.py.html>`__ to see an example of how to use deactivate_notebook_session API.
5083
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/deactivate_notebook_session.py.html>`__ to see an example of how to use deactivate_notebook_session API.
5084
5084
  """
5085
5085
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5086
5086
  required_arguments = ['notebookSessionId']
@@ -5186,7 +5186,7 @@ class DataScienceClient(object):
5186
5186
  :rtype: :class:`~oci.response.Response`
5187
5187
 
5188
5188
  :example:
5189
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/deactivate_schedule.py.html>`__ to see an example of how to use deactivate_schedule API.
5189
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/deactivate_schedule.py.html>`__ to see an example of how to use deactivate_schedule API.
5190
5190
  """
5191
5191
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5192
5192
  required_arguments = ['scheduleId']
@@ -5294,7 +5294,7 @@ class DataScienceClient(object):
5294
5294
  :rtype: :class:`~oci.response.Response`
5295
5295
 
5296
5296
  :example:
5297
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_data_science_private_endpoint.py.html>`__ to see an example of how to use delete_data_science_private_endpoint API.
5297
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_data_science_private_endpoint.py.html>`__ to see an example of how to use delete_data_science_private_endpoint API.
5298
5298
  """
5299
5299
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5300
5300
  required_arguments = ['dataSciencePrivateEndpointId']
@@ -5402,7 +5402,7 @@ class DataScienceClient(object):
5402
5402
  :rtype: :class:`~oci.response.Response`
5403
5403
 
5404
5404
  :example:
5405
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_job.py.html>`__ to see an example of how to use delete_job API.
5405
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_job.py.html>`__ to see an example of how to use delete_job API.
5406
5406
  """
5407
5407
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5408
5408
  required_arguments = ['jobId']
@@ -5517,7 +5517,7 @@ class DataScienceClient(object):
5517
5517
  :rtype: :class:`~oci.response.Response`
5518
5518
 
5519
5519
  :example:
5520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_job_run.py.html>`__ to see an example of how to use delete_job_run API.
5520
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_job_run.py.html>`__ to see an example of how to use delete_job_run API.
5521
5521
  """
5522
5522
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5523
5523
  required_arguments = ['jobRunId']
@@ -5622,7 +5622,7 @@ class DataScienceClient(object):
5622
5622
  :rtype: :class:`~oci.response.Response`
5623
5623
 
5624
5624
  :example:
5625
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_ml_application.py.html>`__ to see an example of how to use delete_ml_application API.
5625
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_ml_application.py.html>`__ to see an example of how to use delete_ml_application API.
5626
5626
  """
5627
5627
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5628
5628
  required_arguments = ['mlApplicationId']
@@ -5727,7 +5727,7 @@ class DataScienceClient(object):
5727
5727
  :rtype: :class:`~oci.response.Response`
5728
5728
 
5729
5729
  :example:
5730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_ml_application_implementation.py.html>`__ to see an example of how to use delete_ml_application_implementation API.
5730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_ml_application_implementation.py.html>`__ to see an example of how to use delete_ml_application_implementation API.
5731
5731
  """
5732
5732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5733
5733
  required_arguments = ['mlApplicationImplementationId']
@@ -5832,7 +5832,7 @@ class DataScienceClient(object):
5832
5832
  :rtype: :class:`~oci.response.Response`
5833
5833
 
5834
5834
  :example:
5835
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_ml_application_instance.py.html>`__ to see an example of how to use delete_ml_application_instance API.
5835
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_ml_application_instance.py.html>`__ to see an example of how to use delete_ml_application_instance API.
5836
5836
  """
5837
5837
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5838
5838
  required_arguments = ['mlApplicationInstanceId']
@@ -5939,7 +5939,7 @@ class DataScienceClient(object):
5939
5939
  :rtype: :class:`~oci.response.Response`
5940
5940
 
5941
5941
  :example:
5942
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_model.py.html>`__ to see an example of how to use delete_model API.
5942
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_model.py.html>`__ to see an example of how to use delete_model API.
5943
5943
  """
5944
5944
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5945
5945
  required_arguments = ['modelId']
@@ -6049,7 +6049,7 @@ class DataScienceClient(object):
6049
6049
  :rtype: :class:`~oci.response.Response`
6050
6050
 
6051
6051
  :example:
6052
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use delete_model_custom_metadatum_artifact API.
6052
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use delete_model_custom_metadatum_artifact API.
6053
6053
  """
6054
6054
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6055
6055
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -6160,7 +6160,7 @@ class DataScienceClient(object):
6160
6160
  :rtype: :class:`~oci.response.Response`
6161
6161
 
6162
6162
  :example:
6163
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use delete_model_defined_metadatum_artifact API.
6163
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use delete_model_defined_metadatum_artifact API.
6164
6164
  """
6165
6165
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6166
6166
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -6268,7 +6268,7 @@ class DataScienceClient(object):
6268
6268
  :rtype: :class:`~oci.response.Response`
6269
6269
 
6270
6270
  :example:
6271
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_model_deployment.py.html>`__ to see an example of how to use delete_model_deployment API.
6271
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_model_deployment.py.html>`__ to see an example of how to use delete_model_deployment API.
6272
6272
  """
6273
6273
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6274
6274
  required_arguments = ['modelDeploymentId']
@@ -6379,7 +6379,7 @@ class DataScienceClient(object):
6379
6379
  :rtype: :class:`~oci.response.Response`
6380
6380
 
6381
6381
  :example:
6382
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_model_version_set.py.html>`__ to see an example of how to use delete_model_version_set API.
6382
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_model_version_set.py.html>`__ to see an example of how to use delete_model_version_set API.
6383
6383
  """
6384
6384
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6385
6385
  required_arguments = ['modelVersionSetId']
@@ -6494,7 +6494,7 @@ class DataScienceClient(object):
6494
6494
  :rtype: :class:`~oci.response.Response`
6495
6495
 
6496
6496
  :example:
6497
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_notebook_session.py.html>`__ to see an example of how to use delete_notebook_session API.
6497
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_notebook_session.py.html>`__ to see an example of how to use delete_notebook_session API.
6498
6498
  """
6499
6499
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6500
6500
  required_arguments = ['notebookSessionId']
@@ -6607,7 +6607,7 @@ class DataScienceClient(object):
6607
6607
  :rtype: :class:`~oci.response.Response`
6608
6608
 
6609
6609
  :example:
6610
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_pipeline.py.html>`__ to see an example of how to use delete_pipeline API.
6610
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_pipeline.py.html>`__ to see an example of how to use delete_pipeline API.
6611
6611
  """
6612
6612
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6613
6613
  required_arguments = ['pipelineId']
@@ -6725,7 +6725,7 @@ class DataScienceClient(object):
6725
6725
  :rtype: :class:`~oci.response.Response`
6726
6726
 
6727
6727
  :example:
6728
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_pipeline_run.py.html>`__ to see an example of how to use delete_pipeline_run API.
6728
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_pipeline_run.py.html>`__ to see an example of how to use delete_pipeline_run API.
6729
6729
  """
6730
6730
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6731
6731
  required_arguments = ['pipelineRunId']
@@ -6838,7 +6838,7 @@ class DataScienceClient(object):
6838
6838
  :rtype: :class:`~oci.response.Response`
6839
6839
 
6840
6840
  :example:
6841
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_project.py.html>`__ to see an example of how to use delete_project API.
6841
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_project.py.html>`__ to see an example of how to use delete_project API.
6842
6842
  """
6843
6843
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6844
6844
  required_arguments = ['projectId']
@@ -6943,7 +6943,7 @@ class DataScienceClient(object):
6943
6943
  :rtype: :class:`~oci.response.Response`
6944
6944
 
6945
6945
  :example:
6946
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/delete_schedule.py.html>`__ to see an example of how to use delete_schedule API.
6946
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/delete_schedule.py.html>`__ to see an example of how to use delete_schedule API.
6947
6947
  """
6948
6948
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6949
6949
  required_arguments = ['scheduleId']
@@ -7052,7 +7052,7 @@ class DataScienceClient(object):
7052
7052
  :rtype: :class:`~oci.response.Response`
7053
7053
 
7054
7054
  :example:
7055
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/disable_ml_application_instance_view_trigger.py.html>`__ to see an example of how to use disable_ml_application_instance_view_trigger API.
7055
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/disable_ml_application_instance_view_trigger.py.html>`__ to see an example of how to use disable_ml_application_instance_view_trigger API.
7056
7056
  """
7057
7057
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7058
7058
  required_arguments = ['mlApplicationInstanceViewId']
@@ -7170,7 +7170,7 @@ class DataScienceClient(object):
7170
7170
  :rtype: :class:`~oci.response.Response`
7171
7171
 
7172
7172
  :example:
7173
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/enable_ml_application_instance_view_trigger.py.html>`__ to see an example of how to use enable_ml_application_instance_view_trigger API.
7173
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/enable_ml_application_instance_view_trigger.py.html>`__ to see an example of how to use enable_ml_application_instance_view_trigger API.
7174
7174
  """
7175
7175
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7176
7176
  required_arguments = ['mlApplicationInstanceViewId']
@@ -7290,7 +7290,7 @@ class DataScienceClient(object):
7290
7290
  :rtype: :class:`~oci.response.Response`
7291
7291
 
7292
7292
  :example:
7293
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/export_model_artifact.py.html>`__ to see an example of how to use export_model_artifact API.
7293
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/export_model_artifact.py.html>`__ to see an example of how to use export_model_artifact API.
7294
7294
  """
7295
7295
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7296
7296
  required_arguments = ['modelId']
@@ -7393,7 +7393,7 @@ class DataScienceClient(object):
7393
7393
  :rtype: :class:`~oci.response.Response`
7394
7394
 
7395
7395
  :example:
7396
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_data_science_private_endpoint.py.html>`__ to see an example of how to use get_data_science_private_endpoint API.
7396
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_data_science_private_endpoint.py.html>`__ to see an example of how to use get_data_science_private_endpoint API.
7397
7397
  """
7398
7398
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7399
7399
  required_arguments = ['dataSciencePrivateEndpointId']
@@ -7493,7 +7493,7 @@ class DataScienceClient(object):
7493
7493
  :rtype: :class:`~oci.response.Response`
7494
7494
 
7495
7495
  :example:
7496
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_job.py.html>`__ to see an example of how to use get_job API.
7496
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_job.py.html>`__ to see an example of how to use get_job API.
7497
7497
  """
7498
7498
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7499
7499
  required_arguments = ['jobId']
@@ -7599,7 +7599,7 @@ class DataScienceClient(object):
7599
7599
  :rtype: :class:`~oci.response.Response`
7600
7600
 
7601
7601
  :example:
7602
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_job_artifact_content.py.html>`__ to see an example of how to use get_job_artifact_content API.
7602
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_job_artifact_content.py.html>`__ to see an example of how to use get_job_artifact_content API.
7603
7603
  """
7604
7604
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7605
7605
  required_arguments = ['jobId']
@@ -7701,7 +7701,7 @@ class DataScienceClient(object):
7701
7701
  :rtype: :class:`~oci.response.Response`
7702
7702
 
7703
7703
  :example:
7704
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
7704
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_job_run.py.html>`__ to see an example of how to use get_job_run API.
7705
7705
  """
7706
7706
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7707
7707
  required_arguments = ['jobRunId']
@@ -7799,7 +7799,7 @@ class DataScienceClient(object):
7799
7799
  :rtype: :class:`~oci.response.Response`
7800
7800
 
7801
7801
  :example:
7802
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_ml_application.py.html>`__ to see an example of how to use get_ml_application API.
7802
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_ml_application.py.html>`__ to see an example of how to use get_ml_application API.
7803
7803
  """
7804
7804
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7805
7805
  required_arguments = ['mlApplicationId']
@@ -7897,7 +7897,7 @@ class DataScienceClient(object):
7897
7897
  :rtype: :class:`~oci.response.Response`
7898
7898
 
7899
7899
  :example:
7900
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_ml_application_historical_package_content.py.html>`__ to see an example of how to use get_ml_application_historical_package_content API.
7900
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_ml_application_historical_package_content.py.html>`__ to see an example of how to use get_ml_application_historical_package_content API.
7901
7901
  """
7902
7902
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7903
7903
  required_arguments = ['mlApplicationImplementationVersionId']
@@ -7995,7 +7995,7 @@ class DataScienceClient(object):
7995
7995
  :rtype: :class:`~oci.response.Response`
7996
7996
 
7997
7997
  :example:
7998
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_ml_application_implementation.py.html>`__ to see an example of how to use get_ml_application_implementation API.
7998
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_ml_application_implementation.py.html>`__ to see an example of how to use get_ml_application_implementation API.
7999
7999
  """
8000
8000
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8001
8001
  required_arguments = ['mlApplicationImplementationId']
@@ -8093,7 +8093,7 @@ class DataScienceClient(object):
8093
8093
  :rtype: :class:`~oci.response.Response`
8094
8094
 
8095
8095
  :example:
8096
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_ml_application_implementation_version.py.html>`__ to see an example of how to use get_ml_application_implementation_version API.
8096
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_ml_application_implementation_version.py.html>`__ to see an example of how to use get_ml_application_implementation_version API.
8097
8097
  """
8098
8098
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8099
8099
  required_arguments = ['mlApplicationImplementationVersionId']
@@ -8191,7 +8191,7 @@ class DataScienceClient(object):
8191
8191
  :rtype: :class:`~oci.response.Response`
8192
8192
 
8193
8193
  :example:
8194
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_ml_application_instance.py.html>`__ to see an example of how to use get_ml_application_instance API.
8194
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_ml_application_instance.py.html>`__ to see an example of how to use get_ml_application_instance API.
8195
8195
  """
8196
8196
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8197
8197
  required_arguments = ['mlApplicationInstanceId']
@@ -8289,7 +8289,7 @@ class DataScienceClient(object):
8289
8289
  :rtype: :class:`~oci.response.Response`
8290
8290
 
8291
8291
  :example:
8292
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_ml_application_instance_view.py.html>`__ to see an example of how to use get_ml_application_instance_view API.
8292
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_ml_application_instance_view.py.html>`__ to see an example of how to use get_ml_application_instance_view API.
8293
8293
  """
8294
8294
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8295
8295
  required_arguments = ['mlApplicationInstanceViewId']
@@ -8387,7 +8387,7 @@ class DataScienceClient(object):
8387
8387
  :rtype: :class:`~oci.response.Response`
8388
8388
 
8389
8389
  :example:
8390
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_ml_application_package_content.py.html>`__ to see an example of how to use get_ml_application_package_content API.
8390
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_ml_application_package_content.py.html>`__ to see an example of how to use get_ml_application_package_content API.
8391
8391
  """
8392
8392
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8393
8393
  required_arguments = ['mlApplicationImplementationId']
@@ -8487,7 +8487,7 @@ class DataScienceClient(object):
8487
8487
  :rtype: :class:`~oci.response.Response`
8488
8488
 
8489
8489
  :example:
8490
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_model.py.html>`__ to see an example of how to use get_model API.
8490
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_model.py.html>`__ to see an example of how to use get_model API.
8491
8491
  """
8492
8492
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8493
8493
  required_arguments = ['modelId']
@@ -8593,7 +8593,7 @@ class DataScienceClient(object):
8593
8593
  :rtype: :class:`~oci.response.Response`
8594
8594
 
8595
8595
  :example:
8596
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_model_artifact_content.py.html>`__ to see an example of how to use get_model_artifact_content API.
8596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_model_artifact_content.py.html>`__ to see an example of how to use get_model_artifact_content API.
8597
8597
  """
8598
8598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8599
8599
  required_arguments = ['modelId']
@@ -8704,7 +8704,7 @@ class DataScienceClient(object):
8704
8704
  :rtype: :class:`~oci.response.Response`
8705
8705
 
8706
8706
  :example:
8707
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_model_custom_metadatum_artifact_content.py.html>`__ to see an example of how to use get_model_custom_metadatum_artifact_content API.
8707
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_model_custom_metadatum_artifact_content.py.html>`__ to see an example of how to use get_model_custom_metadatum_artifact_content API.
8708
8708
  """
8709
8709
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8710
8710
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -8816,7 +8816,7 @@ class DataScienceClient(object):
8816
8816
  :rtype: :class:`~oci.response.Response`
8817
8817
 
8818
8818
  :example:
8819
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_model_defined_metadatum_artifact_content.py.html>`__ to see an example of how to use get_model_defined_metadatum_artifact_content API.
8819
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_model_defined_metadatum_artifact_content.py.html>`__ to see an example of how to use get_model_defined_metadatum_artifact_content API.
8820
8820
  """
8821
8821
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8822
8822
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -8919,7 +8919,7 @@ class DataScienceClient(object):
8919
8919
  :rtype: :class:`~oci.response.Response`
8920
8920
 
8921
8921
  :example:
8922
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_model_deployment.py.html>`__ to see an example of how to use get_model_deployment API.
8922
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_model_deployment.py.html>`__ to see an example of how to use get_model_deployment API.
8923
8923
  """
8924
8924
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8925
8925
  required_arguments = ['modelDeploymentId']
@@ -9019,7 +9019,7 @@ class DataScienceClient(object):
9019
9019
  :rtype: :class:`~oci.response.Response`
9020
9020
 
9021
9021
  :example:
9022
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_model_provenance.py.html>`__ to see an example of how to use get_model_provenance API.
9022
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_model_provenance.py.html>`__ to see an example of how to use get_model_provenance API.
9023
9023
  """
9024
9024
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9025
9025
  required_arguments = ['modelId']
@@ -9119,7 +9119,7 @@ class DataScienceClient(object):
9119
9119
  :rtype: :class:`~oci.response.Response`
9120
9120
 
9121
9121
  :example:
9122
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_model_version_set.py.html>`__ to see an example of how to use get_model_version_set API.
9122
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_model_version_set.py.html>`__ to see an example of how to use get_model_version_set API.
9123
9123
  """
9124
9124
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9125
9125
  required_arguments = ['modelVersionSetId']
@@ -9219,7 +9219,7 @@ class DataScienceClient(object):
9219
9219
  :rtype: :class:`~oci.response.Response`
9220
9220
 
9221
9221
  :example:
9222
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_notebook_session.py.html>`__ to see an example of how to use get_notebook_session API.
9222
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_notebook_session.py.html>`__ to see an example of how to use get_notebook_session API.
9223
9223
  """
9224
9224
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9225
9225
  required_arguments = ['notebookSessionId']
@@ -9319,7 +9319,7 @@ class DataScienceClient(object):
9319
9319
  :rtype: :class:`~oci.response.Response`
9320
9320
 
9321
9321
  :example:
9322
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_pipeline.py.html>`__ to see an example of how to use get_pipeline API.
9322
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_pipeline.py.html>`__ to see an example of how to use get_pipeline API.
9323
9323
  """
9324
9324
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9325
9325
  required_arguments = ['pipelineId']
@@ -9419,7 +9419,7 @@ class DataScienceClient(object):
9419
9419
  :rtype: :class:`~oci.response.Response`
9420
9420
 
9421
9421
  :example:
9422
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_pipeline_run.py.html>`__ to see an example of how to use get_pipeline_run API.
9422
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_pipeline_run.py.html>`__ to see an example of how to use get_pipeline_run API.
9423
9423
  """
9424
9424
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9425
9425
  required_arguments = ['pipelineRunId']
@@ -9519,7 +9519,7 @@ class DataScienceClient(object):
9519
9519
  :rtype: :class:`~oci.response.Response`
9520
9520
 
9521
9521
  :example:
9522
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_project.py.html>`__ to see an example of how to use get_project API.
9522
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_project.py.html>`__ to see an example of how to use get_project API.
9523
9523
  """
9524
9524
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9525
9525
  required_arguments = ['projectId']
@@ -9617,7 +9617,7 @@ class DataScienceClient(object):
9617
9617
  :rtype: :class:`~oci.response.Response`
9618
9618
 
9619
9619
  :example:
9620
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_schedule.py.html>`__ to see an example of how to use get_schedule API.
9620
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_schedule.py.html>`__ to see an example of how to use get_schedule API.
9621
9621
  """
9622
9622
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9623
9623
  required_arguments = ['scheduleId']
@@ -9726,7 +9726,7 @@ class DataScienceClient(object):
9726
9726
  :rtype: :class:`~oci.response.Response`
9727
9727
 
9728
9728
  :example:
9729
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/get_step_artifact_content.py.html>`__ to see an example of how to use get_step_artifact_content API.
9729
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_step_artifact_content.py.html>`__ to see an example of how to use get_step_artifact_content API.
9730
9730
  """
9731
9731
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9732
9732
  required_arguments = ['pipelineId', 'stepName']
@@ -9831,7 +9831,7 @@ class DataScienceClient(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.154.2/datascience/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
9834
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
9835
9835
  """
9836
9836
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9837
9837
  required_arguments = ['workRequestId']
@@ -9931,7 +9931,7 @@ class DataScienceClient(object):
9931
9931
  :rtype: :class:`~oci.response.Response`
9932
9932
 
9933
9933
  :example:
9934
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/head_job_artifact.py.html>`__ to see an example of how to use head_job_artifact API.
9934
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/head_job_artifact.py.html>`__ to see an example of how to use head_job_artifact API.
9935
9935
  """
9936
9936
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9937
9937
  required_arguments = ['jobId']
@@ -10029,7 +10029,7 @@ class DataScienceClient(object):
10029
10029
  :rtype: :class:`~oci.response.Response`
10030
10030
 
10031
10031
  :example:
10032
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/head_model_artifact.py.html>`__ to see an example of how to use head_model_artifact API.
10032
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/head_model_artifact.py.html>`__ to see an example of how to use head_model_artifact API.
10033
10033
  """
10034
10034
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10035
10035
  required_arguments = ['modelId']
@@ -10130,7 +10130,7 @@ class DataScienceClient(object):
10130
10130
  :rtype: :class:`~oci.response.Response`
10131
10131
 
10132
10132
  :example:
10133
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/head_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use head_model_custom_metadatum_artifact API.
10133
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/head_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use head_model_custom_metadatum_artifact API.
10134
10134
  """
10135
10135
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10136
10136
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -10232,7 +10232,7 @@ class DataScienceClient(object):
10232
10232
  :rtype: :class:`~oci.response.Response`
10233
10233
 
10234
10234
  :example:
10235
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/head_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use head_model_defined_metadatum_artifact API.
10235
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/head_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use head_model_defined_metadatum_artifact API.
10236
10236
  """
10237
10237
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10238
10238
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -10334,7 +10334,7 @@ class DataScienceClient(object):
10334
10334
  :rtype: :class:`~oci.response.Response`
10335
10335
 
10336
10336
  :example:
10337
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/head_step_artifact.py.html>`__ to see an example of how to use head_step_artifact API.
10337
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/head_step_artifact.py.html>`__ to see an example of how to use head_step_artifact API.
10338
10338
  """
10339
10339
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10340
10340
  required_arguments = ['pipelineId', 'stepName']
@@ -10443,7 +10443,7 @@ class DataScienceClient(object):
10443
10443
  :rtype: :class:`~oci.response.Response`
10444
10444
 
10445
10445
  :example:
10446
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/import_model_artifact.py.html>`__ to see an example of how to use import_model_artifact API.
10446
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/import_model_artifact.py.html>`__ to see an example of how to use import_model_artifact API.
10447
10447
  """
10448
10448
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10449
10449
  required_arguments = ['modelId']
@@ -10584,7 +10584,7 @@ class DataScienceClient(object):
10584
10584
  :rtype: :class:`~oci.response.Response`
10585
10585
 
10586
10586
  :example:
10587
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_containers.py.html>`__ to see an example of how to use list_containers API.
10587
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_containers.py.html>`__ to see an example of how to use list_containers API.
10588
10588
  """
10589
10589
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10590
10590
  required_arguments = []
@@ -10763,7 +10763,7 @@ class DataScienceClient(object):
10763
10763
  :rtype: :class:`~oci.response.Response`
10764
10764
 
10765
10765
  :example:
10766
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_data_science_private_endpoints.py.html>`__ to see an example of how to use list_data_science_private_endpoints API.
10766
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_data_science_private_endpoints.py.html>`__ to see an example of how to use list_data_science_private_endpoints API.
10767
10767
  """
10768
10768
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10769
10769
  required_arguments = ['compartmentId']
@@ -10920,7 +10920,7 @@ class DataScienceClient(object):
10920
10920
  :rtype: :class:`~oci.response.Response`
10921
10921
 
10922
10922
  :example:
10923
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_fast_launch_job_configs.py.html>`__ to see an example of how to use list_fast_launch_job_configs API.
10923
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_fast_launch_job_configs.py.html>`__ to see an example of how to use list_fast_launch_job_configs API.
10924
10924
  """
10925
10925
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10926
10926
  required_arguments = ['compartmentId']
@@ -11074,7 +11074,7 @@ class DataScienceClient(object):
11074
11074
  :rtype: :class:`~oci.response.Response`
11075
11075
 
11076
11076
  :example:
11077
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
11077
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_job_runs.py.html>`__ to see an example of how to use list_job_runs API.
11078
11078
  """
11079
11079
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11080
11080
  required_arguments = ['compartmentId']
@@ -11226,7 +11226,7 @@ class DataScienceClient(object):
11226
11226
  :rtype: :class:`~oci.response.Response`
11227
11227
 
11228
11228
  :example:
11229
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_job_shapes.py.html>`__ to see an example of how to use list_job_shapes API.
11229
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_job_shapes.py.html>`__ to see an example of how to use list_job_shapes API.
11230
11230
  """
11231
11231
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11232
11232
  required_arguments = ['compartmentId']
@@ -11380,7 +11380,7 @@ class DataScienceClient(object):
11380
11380
  :rtype: :class:`~oci.response.Response`
11381
11381
 
11382
11382
  :example:
11383
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
11383
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
11384
11384
  """
11385
11385
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11386
11386
  required_arguments = ['compartmentId']
@@ -11545,7 +11545,7 @@ class DataScienceClient(object):
11545
11545
  :rtype: :class:`~oci.response.Response`
11546
11546
 
11547
11547
  :example:
11548
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_ml_application_implementation_versions.py.html>`__ to see an example of how to use list_ml_application_implementation_versions API.
11548
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_ml_application_implementation_versions.py.html>`__ to see an example of how to use list_ml_application_implementation_versions API.
11549
11549
  """
11550
11550
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11551
11551
  required_arguments = ['mlApplicationImplementationId']
@@ -11716,7 +11716,7 @@ class DataScienceClient(object):
11716
11716
  :rtype: :class:`~oci.response.Response`
11717
11717
 
11718
11718
  :example:
11719
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_ml_application_implementations.py.html>`__ to see an example of how to use list_ml_application_implementations API.
11719
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_ml_application_implementations.py.html>`__ to see an example of how to use list_ml_application_implementations API.
11720
11720
  """
11721
11721
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11722
11722
  required_arguments = ['compartmentId']
@@ -11892,7 +11892,7 @@ class DataScienceClient(object):
11892
11892
  :rtype: :class:`~oci.response.Response`
11893
11893
 
11894
11894
  :example:
11895
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_ml_application_instance_views.py.html>`__ to see an example of how to use list_ml_application_instance_views API.
11895
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_ml_application_instance_views.py.html>`__ to see an example of how to use list_ml_application_instance_views API.
11896
11896
  """
11897
11897
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11898
11898
  required_arguments = ['compartmentId']
@@ -12063,7 +12063,7 @@ class DataScienceClient(object):
12063
12063
  :rtype: :class:`~oci.response.Response`
12064
12064
 
12065
12065
  :example:
12066
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_ml_application_instances.py.html>`__ to see an example of how to use list_ml_application_instances API.
12066
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_ml_application_instances.py.html>`__ to see an example of how to use list_ml_application_instances API.
12067
12067
  """
12068
12068
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12069
12069
  required_arguments = ['compartmentId']
@@ -12235,7 +12235,7 @@ class DataScienceClient(object):
12235
12235
  :rtype: :class:`~oci.response.Response`
12236
12236
 
12237
12237
  :example:
12238
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_ml_applications.py.html>`__ to see an example of how to use list_ml_applications API.
12238
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_ml_applications.py.html>`__ to see an example of how to use list_ml_applications API.
12239
12239
  """
12240
12240
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12241
12241
  required_arguments = ['compartmentId']
@@ -12385,7 +12385,7 @@ class DataScienceClient(object):
12385
12385
  :rtype: :class:`~oci.response.Response`
12386
12386
 
12387
12387
  :example:
12388
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_model_deployment_shapes.py.html>`__ to see an example of how to use list_model_deployment_shapes API.
12388
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_model_deployment_shapes.py.html>`__ to see an example of how to use list_model_deployment_shapes API.
12389
12389
  """
12390
12390
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12391
12391
  required_arguments = ['compartmentId']
@@ -12539,7 +12539,7 @@ class DataScienceClient(object):
12539
12539
  :rtype: :class:`~oci.response.Response`
12540
12540
 
12541
12541
  :example:
12542
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_model_deployments.py.html>`__ to see an example of how to use list_model_deployments API.
12542
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_model_deployments.py.html>`__ to see an example of how to use list_model_deployments API.
12543
12543
  """
12544
12544
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12545
12545
  required_arguments = ['compartmentId']
@@ -12731,7 +12731,7 @@ class DataScienceClient(object):
12731
12731
  :rtype: :class:`~oci.response.Response`
12732
12732
 
12733
12733
  :example:
12734
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_model_version_sets.py.html>`__ to see an example of how to use list_model_version_sets API.
12734
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_model_version_sets.py.html>`__ to see an example of how to use list_model_version_sets API.
12735
12735
  """
12736
12736
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12737
12737
  required_arguments = ['compartmentId']
@@ -12939,7 +12939,7 @@ class DataScienceClient(object):
12939
12939
  :rtype: :class:`~oci.response.Response`
12940
12940
 
12941
12941
  :example:
12942
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_models.py.html>`__ to see an example of how to use list_models API.
12942
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_models.py.html>`__ to see an example of how to use list_models API.
12943
12943
  """
12944
12944
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12945
12945
  required_arguments = ['compartmentId']
@@ -13104,7 +13104,7 @@ class DataScienceClient(object):
13104
13104
  :rtype: :class:`~oci.response.Response`
13105
13105
 
13106
13106
  :example:
13107
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_notebook_session_shapes.py.html>`__ to see an example of how to use list_notebook_session_shapes API.
13107
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_notebook_session_shapes.py.html>`__ to see an example of how to use list_notebook_session_shapes API.
13108
13108
  """
13109
13109
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13110
13110
  required_arguments = ['compartmentId']
@@ -13258,7 +13258,7 @@ class DataScienceClient(object):
13258
13258
  :rtype: :class:`~oci.response.Response`
13259
13259
 
13260
13260
  :example:
13261
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_notebook_sessions.py.html>`__ to see an example of how to use list_notebook_sessions API.
13261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_notebook_sessions.py.html>`__ to see an example of how to use list_notebook_sessions API.
13262
13262
  """
13263
13263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13264
13264
  required_arguments = ['compartmentId']
@@ -13446,7 +13446,7 @@ class DataScienceClient(object):
13446
13446
  :rtype: :class:`~oci.response.Response`
13447
13447
 
13448
13448
  :example:
13449
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_pipeline_runs.py.html>`__ to see an example of how to use list_pipeline_runs API.
13449
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_pipeline_runs.py.html>`__ to see an example of how to use list_pipeline_runs API.
13450
13450
  """
13451
13451
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13452
13452
  required_arguments = ['compartmentId']
@@ -13634,7 +13634,7 @@ class DataScienceClient(object):
13634
13634
  :rtype: :class:`~oci.response.Response`
13635
13635
 
13636
13636
  :example:
13637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_pipelines.py.html>`__ to see an example of how to use list_pipelines API.
13637
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_pipelines.py.html>`__ to see an example of how to use list_pipelines API.
13638
13638
  """
13639
13639
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13640
13640
  required_arguments = ['compartmentId']
@@ -13818,7 +13818,7 @@ class DataScienceClient(object):
13818
13818
  :rtype: :class:`~oci.response.Response`
13819
13819
 
13820
13820
  :example:
13821
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_projects.py.html>`__ to see an example of how to use list_projects API.
13821
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_projects.py.html>`__ to see an example of how to use list_projects API.
13822
13822
  """
13823
13823
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13824
13824
  required_arguments = ['compartmentId']
@@ -13994,7 +13994,7 @@ class DataScienceClient(object):
13994
13994
  :rtype: :class:`~oci.response.Response`
13995
13995
 
13996
13996
  :example:
13997
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_schedules.py.html>`__ to see an example of how to use list_schedules API.
13997
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_schedules.py.html>`__ to see an example of how to use list_schedules API.
13998
13998
  """
13999
13999
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14000
14000
  required_arguments = ['compartmentId']
@@ -14144,7 +14144,7 @@ class DataScienceClient(object):
14144
14144
  :rtype: :class:`~oci.response.Response`
14145
14145
 
14146
14146
  :example:
14147
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
14147
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
14148
14148
  """
14149
14149
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14150
14150
  required_arguments = ['workRequestId']
@@ -14272,7 +14272,7 @@ class DataScienceClient(object):
14272
14272
  :rtype: :class:`~oci.response.Response`
14273
14273
 
14274
14274
  :example:
14275
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
14275
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
14276
14276
  """
14277
14277
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14278
14278
  required_arguments = ['workRequestId']
@@ -14425,7 +14425,7 @@ class DataScienceClient(object):
14425
14425
  :rtype: :class:`~oci.response.Response`
14426
14426
 
14427
14427
  :example:
14428
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
14428
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
14429
14429
  """
14430
14430
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14431
14431
  required_arguments = ['compartmentId']
@@ -14588,7 +14588,7 @@ class DataScienceClient(object):
14588
14588
  :rtype: :class:`~oci.response.Response`
14589
14589
 
14590
14590
  :example:
14591
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/put_ml_application_package.py.html>`__ to see an example of how to use put_ml_application_package API.
14591
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/put_ml_application_package.py.html>`__ to see an example of how to use put_ml_application_package API.
14592
14592
  """
14593
14593
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14594
14594
  required_arguments = ['mlApplicationImplementationId']
@@ -14727,7 +14727,7 @@ class DataScienceClient(object):
14727
14727
  :rtype: :class:`~oci.response.Response`
14728
14728
 
14729
14729
  :example:
14730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/recover_ml_application_instance_view.py.html>`__ to see an example of how to use recover_ml_application_instance_view API.
14730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/recover_ml_application_instance_view.py.html>`__ to see an example of how to use recover_ml_application_instance_view API.
14731
14731
  """
14732
14732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14733
14733
  required_arguments = ['mlApplicationInstanceViewId']
@@ -14843,7 +14843,7 @@ class DataScienceClient(object):
14843
14843
  :rtype: :class:`~oci.response.Response`
14844
14844
 
14845
14845
  :example:
14846
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/register_model_artifact_reference.py.html>`__ to see an example of how to use register_model_artifact_reference API.
14846
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/register_model_artifact_reference.py.html>`__ to see an example of how to use register_model_artifact_reference API.
14847
14847
  """
14848
14848
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14849
14849
  required_arguments = ['modelId']
@@ -14961,7 +14961,7 @@ class DataScienceClient(object):
14961
14961
  :rtype: :class:`~oci.response.Response`
14962
14962
 
14963
14963
  :example:
14964
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/restore_archived_model_artifact.py.html>`__ to see an example of how to use restore_archived_model_artifact API.
14964
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/restore_archived_model_artifact.py.html>`__ to see an example of how to use restore_archived_model_artifact API.
14965
14965
  """
14966
14966
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14967
14967
  required_arguments = ['modelId']
@@ -15076,7 +15076,7 @@ class DataScienceClient(object):
15076
15076
  :rtype: :class:`~oci.response.Response`
15077
15077
 
15078
15078
  :example:
15079
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/trigger_ml_application_instance_flow.py.html>`__ to see an example of how to use trigger_ml_application_instance_flow API.
15079
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/trigger_ml_application_instance_flow.py.html>`__ to see an example of how to use trigger_ml_application_instance_flow API.
15080
15080
  """
15081
15081
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15082
15082
  required_arguments = ['mlApplicationInstanceId']
@@ -15183,7 +15183,7 @@ class DataScienceClient(object):
15183
15183
  :rtype: :class:`~oci.response.Response`
15184
15184
 
15185
15185
  :example:
15186
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/trigger_ml_application_instance_view_flow.py.html>`__ to see an example of how to use trigger_ml_application_instance_view_flow API.
15186
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/trigger_ml_application_instance_view_flow.py.html>`__ to see an example of how to use trigger_ml_application_instance_view_flow API.
15187
15187
  """
15188
15188
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15189
15189
  required_arguments = ['mlApplicationInstanceViewId']
@@ -15296,7 +15296,7 @@ class DataScienceClient(object):
15296
15296
  :rtype: :class:`~oci.response.Response`
15297
15297
 
15298
15298
  :example:
15299
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_data_science_private_endpoint.py.html>`__ to see an example of how to use update_data_science_private_endpoint API.
15299
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_data_science_private_endpoint.py.html>`__ to see an example of how to use update_data_science_private_endpoint API.
15300
15300
  """
15301
15301
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15302
15302
  required_arguments = ['dataSciencePrivateEndpointId']
@@ -15408,7 +15408,7 @@ class DataScienceClient(object):
15408
15408
  :rtype: :class:`~oci.response.Response`
15409
15409
 
15410
15410
  :example:
15411
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_job.py.html>`__ to see an example of how to use update_job API.
15411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_job.py.html>`__ to see an example of how to use update_job API.
15412
15412
  """
15413
15413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15414
15414
  required_arguments = ['jobId']
@@ -15522,7 +15522,7 @@ class DataScienceClient(object):
15522
15522
  :rtype: :class:`~oci.response.Response`
15523
15523
 
15524
15524
  :example:
15525
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_job_run.py.html>`__ to see an example of how to use update_job_run API.
15525
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_job_run.py.html>`__ to see an example of how to use update_job_run API.
15526
15526
  """
15527
15527
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15528
15528
  required_arguments = ['jobRunId']
@@ -15634,7 +15634,7 @@ class DataScienceClient(object):
15634
15634
  :rtype: :class:`~oci.response.Response`
15635
15635
 
15636
15636
  :example:
15637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_ml_application.py.html>`__ to see an example of how to use update_ml_application API.
15637
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_ml_application.py.html>`__ to see an example of how to use update_ml_application API.
15638
15638
  """
15639
15639
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15640
15640
  required_arguments = ['mlApplicationId']
@@ -15746,7 +15746,7 @@ class DataScienceClient(object):
15746
15746
  :rtype: :class:`~oci.response.Response`
15747
15747
 
15748
15748
  :example:
15749
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_ml_application_implementation.py.html>`__ to see an example of how to use update_ml_application_implementation API.
15749
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_ml_application_implementation.py.html>`__ to see an example of how to use update_ml_application_implementation API.
15750
15750
  """
15751
15751
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15752
15752
  required_arguments = ['mlApplicationImplementationId']
@@ -15856,7 +15856,7 @@ class DataScienceClient(object):
15856
15856
  :rtype: :class:`~oci.response.Response`
15857
15857
 
15858
15858
  :example:
15859
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_ml_application_implementation_version.py.html>`__ to see an example of how to use update_ml_application_implementation_version API.
15859
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_ml_application_implementation_version.py.html>`__ to see an example of how to use update_ml_application_implementation_version API.
15860
15860
  """
15861
15861
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15862
15862
  required_arguments = ['mlApplicationImplementationVersionId']
@@ -15968,7 +15968,7 @@ class DataScienceClient(object):
15968
15968
  :rtype: :class:`~oci.response.Response`
15969
15969
 
15970
15970
  :example:
15971
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_ml_application_instance.py.html>`__ to see an example of how to use update_ml_application_instance API.
15971
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_ml_application_instance.py.html>`__ to see an example of how to use update_ml_application_instance API.
15972
15972
  """
15973
15973
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15974
15974
  required_arguments = ['mlApplicationInstanceId']
@@ -16078,7 +16078,7 @@ class DataScienceClient(object):
16078
16078
  :rtype: :class:`~oci.response.Response`
16079
16079
 
16080
16080
  :example:
16081
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_ml_application_instance_view.py.html>`__ to see an example of how to use update_ml_application_instance_view API.
16081
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_ml_application_instance_view.py.html>`__ to see an example of how to use update_ml_application_instance_view API.
16082
16082
  """
16083
16083
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16084
16084
  required_arguments = ['mlApplicationInstanceViewId']
@@ -16190,7 +16190,7 @@ class DataScienceClient(object):
16190
16190
  :rtype: :class:`~oci.response.Response`
16191
16191
 
16192
16192
  :example:
16193
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_model.py.html>`__ to see an example of how to use update_model API.
16193
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_model.py.html>`__ to see an example of how to use update_model API.
16194
16194
  """
16195
16195
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16196
16196
  required_arguments = ['modelId']
@@ -16326,7 +16326,7 @@ class DataScienceClient(object):
16326
16326
  :rtype: :class:`~oci.response.Response`
16327
16327
 
16328
16328
  :example:
16329
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use update_model_custom_metadatum_artifact API.
16329
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_model_custom_metadatum_artifact.py.html>`__ to see an example of how to use update_model_custom_metadatum_artifact API.
16330
16330
  """
16331
16331
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16332
16332
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -16488,7 +16488,7 @@ class DataScienceClient(object):
16488
16488
  :rtype: :class:`~oci.response.Response`
16489
16489
 
16490
16490
  :example:
16491
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use update_model_defined_metadatum_artifact API.
16491
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_model_defined_metadatum_artifact.py.html>`__ to see an example of how to use update_model_defined_metadatum_artifact API.
16492
16492
  """
16493
16493
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16494
16494
  required_arguments = ['modelId', 'metadatumKeyName']
@@ -16634,7 +16634,7 @@ class DataScienceClient(object):
16634
16634
  :rtype: :class:`~oci.response.Response`
16635
16635
 
16636
16636
  :example:
16637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_model_deployment.py.html>`__ to see an example of how to use update_model_deployment API.
16637
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_model_deployment.py.html>`__ to see an example of how to use update_model_deployment API.
16638
16638
  """
16639
16639
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16640
16640
  required_arguments = ['modelDeploymentId']
@@ -16746,7 +16746,7 @@ class DataScienceClient(object):
16746
16746
  :rtype: :class:`~oci.response.Response`
16747
16747
 
16748
16748
  :example:
16749
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_model_provenance.py.html>`__ to see an example of how to use update_model_provenance API.
16749
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_model_provenance.py.html>`__ to see an example of how to use update_model_provenance API.
16750
16750
  """
16751
16751
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16752
16752
  required_arguments = ['modelId']
@@ -16860,7 +16860,7 @@ class DataScienceClient(object):
16860
16860
  :rtype: :class:`~oci.response.Response`
16861
16861
 
16862
16862
  :example:
16863
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_model_version_set.py.html>`__ to see an example of how to use update_model_version_set API.
16863
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_model_version_set.py.html>`__ to see an example of how to use update_model_version_set API.
16864
16864
  """
16865
16865
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16866
16866
  required_arguments = ['modelVersionSetId']
@@ -16977,7 +16977,7 @@ class DataScienceClient(object):
16977
16977
  :rtype: :class:`~oci.response.Response`
16978
16978
 
16979
16979
  :example:
16980
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_notebook_session.py.html>`__ to see an example of how to use update_notebook_session API.
16980
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_notebook_session.py.html>`__ to see an example of how to use update_notebook_session API.
16981
16981
  """
16982
16982
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16983
16983
  required_arguments = ['notebookSessionId']
@@ -17091,7 +17091,7 @@ class DataScienceClient(object):
17091
17091
  :rtype: :class:`~oci.response.Response`
17092
17092
 
17093
17093
  :example:
17094
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_pipeline.py.html>`__ to see an example of how to use update_pipeline API.
17094
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_pipeline.py.html>`__ to see an example of how to use update_pipeline API.
17095
17095
  """
17096
17096
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17097
17097
  required_arguments = ['pipelineId']
@@ -17203,7 +17203,7 @@ class DataScienceClient(object):
17203
17203
  :rtype: :class:`~oci.response.Response`
17204
17204
 
17205
17205
  :example:
17206
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_pipeline_run.py.html>`__ to see an example of how to use update_pipeline_run API.
17206
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_pipeline_run.py.html>`__ to see an example of how to use update_pipeline_run API.
17207
17207
  """
17208
17208
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17209
17209
  required_arguments = ['pipelineRunId']
@@ -17315,7 +17315,7 @@ class DataScienceClient(object):
17315
17315
  :rtype: :class:`~oci.response.Response`
17316
17316
 
17317
17317
  :example:
17318
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_project.py.html>`__ to see an example of how to use update_project API.
17318
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_project.py.html>`__ to see an example of how to use update_project API.
17319
17319
  """
17320
17320
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17321
17321
  required_arguments = ['projectId']
@@ -17427,7 +17427,7 @@ class DataScienceClient(object):
17427
17427
  :rtype: :class:`~oci.response.Response`
17428
17428
 
17429
17429
  :example:
17430
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/datascience/update_schedule.py.html>`__ to see an example of how to use update_schedule API.
17430
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/datascience/update_schedule.py.html>`__ to see an example of how to use update_schedule API.
17431
17431
  """
17432
17432
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17433
17433
  required_arguments = ['scheduleId']