oci 2.110.2__py3-none-any.whl → 2.112.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (475) hide show
  1. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  2. oci/adm/application_dependency_management_client.py +18 -18
  3. oci/ai_anomaly_detection/anomaly_detection_client.py +36 -36
  4. oci/ai_document/ai_service_document_client.py +22 -22
  5. oci/ai_language/ai_service_language_client.py +36 -36
  6. oci/ai_speech/ai_service_speech_client.py +9 -9
  7. oci/ai_vision/ai_service_vision_client.py +25 -25
  8. oci/analytics/analytics_client.py +23 -23
  9. oci/announcements_service/announcement_client.py +4 -4
  10. oci/announcements_service/announcement_subscription_client.py +9 -9
  11. oci/announcements_service/announcements_preferences_client.py +4 -4
  12. oci/apigateway/api_gateway_client.py +21 -21
  13. oci/apigateway/deployment_client.py +6 -6
  14. oci/apigateway/gateway_client.py +6 -6
  15. oci/apigateway/subscribers_client.py +6 -6
  16. oci/apigateway/usage_plans_client.py +6 -6
  17. oci/apigateway/work_requests_client.py +5 -5
  18. oci/apm_config/config_client.py +8 -8
  19. oci/apm_control_plane/apm_domain_client.py +14 -14
  20. oci/apm_synthetics/apm_synthetic_client.py +18 -18
  21. oci/apm_synthetics/models/__init__.py +2 -0
  22. oci/apm_synthetics/models/browser_monitor_configuration.py +3 -3
  23. oci/apm_synthetics/models/client_certificate.py +1 -1
  24. oci/apm_synthetics/models/create_monitor_details.py +9 -3
  25. oci/apm_synthetics/models/link.py +2 -2
  26. oci/apm_synthetics/models/monitor.py +9 -3
  27. oci/apm_synthetics/models/monitor_configuration.py +11 -3
  28. oci/apm_synthetics/models/monitor_summary.py +9 -3
  29. oci/apm_synthetics/models/network_monitor_configuration.py +92 -0
  30. oci/apm_synthetics/models/private_key.py +1 -1
  31. oci/apm_synthetics/models/rest_monitor_configuration.py +1 -1
  32. oci/apm_synthetics/models/scripted_browser_monitor_configuration.py +3 -3
  33. oci/apm_synthetics/models/scripted_rest_monitor_configuration.py +1 -1
  34. oci/apm_synthetics/models/update_monitor_details.py +2 -0
  35. oci/apm_traces/query_client.py +2 -2
  36. oci/apm_traces/trace_client.py +4 -4
  37. oci/application_migration/application_migration_client.py +19 -19
  38. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  39. oci/artifacts/artifacts_client.py +32 -32
  40. oci/audit/audit_client.py +3 -3
  41. oci/auth/auth_utils.py +16 -0
  42. oci/auth/rpt_path_providers.py +54 -4
  43. oci/auth/security_token_container.py +4 -0
  44. oci/auth/signers/__init__.py +3 -1
  45. oci/auth/signers/ephemeral_resource_principals_v21_signer.py +31 -1
  46. oci/auth/signers/nested_resource_principals_signer.py +200 -0
  47. oci/auth/signers/oke_workload_identity_resource_principal_signer.py +154 -0
  48. oci/auth/signers/resource_principals_federation_signer.py +1 -1
  49. oci/auth/signers/resource_principals_signer.py +149 -5
  50. oci/autoscaling/auto_scaling_client.py +11 -11
  51. oci/base_client.py +3 -1
  52. oci/bastion/bastion_client.py +15 -15
  53. oci/bds/bds_client.py +47 -47
  54. oci/blockchain/blockchain_platform_client.py +27 -27
  55. oci/budget/budget_client.py +10 -10
  56. oci/certificates/certificates_client.py +5 -5
  57. oci/certificates_management/certificates_management_client.py +32 -32
  58. oci/cims/__init__.py +1 -3
  59. oci/cims/incident_client.py +356 -93
  60. oci/cims/models/__init__.py +6 -0
  61. oci/cims/models/account_item.py +85 -0
  62. oci/cims/models/activity_item.py +112 -14
  63. oci/cims/models/category.py +5 -5
  64. oci/cims/models/contact.py +32 -1
  65. oci/cims/models/contextual_data.py +9 -9
  66. oci/cims/models/create_account_item_details.py +78 -0
  67. oci/cims/models/create_category_details.py +2 -4
  68. oci/cims/models/create_incident.py +13 -9
  69. oci/cims/models/create_issue_type_details.py +0 -2
  70. oci/cims/models/create_item_details.py +9 -7
  71. oci/cims/models/create_limit_item_details.py +3 -3
  72. oci/cims/models/create_resource_details.py +2 -289
  73. oci/cims/models/create_sub_category_details.py +3 -5
  74. oci/cims/models/create_tech_support_item_details.py +1 -3
  75. oci/cims/models/create_ticket_details.py +11 -13
  76. oci/cims/models/create_user_details.py +65 -36
  77. oci/cims/models/incident.py +10 -6
  78. oci/cims/models/incident_resource_type.py +66 -4
  79. oci/cims/models/incident_summary.py +9 -5
  80. oci/cims/models/incident_type.py +1 -1
  81. oci/cims/models/issue_type.py +33 -2
  82. oci/cims/models/item.py +8 -4
  83. oci/cims/models/limit_item.py +7 -7
  84. oci/cims/models/resource.py +2 -285
  85. oci/cims/models/service_categories.py +134 -0
  86. oci/cims/models/service_category.py +1 -1
  87. oci/cims/models/sub_category.py +5 -5
  88. oci/cims/models/tenancy_information.py +3 -3
  89. oci/cims/models/ticket.py +7 -3
  90. oci/cims/models/update_activity_item_details.py +8 -6
  91. oci/cims/models/update_incident.py +62 -2
  92. oci/cims/models/update_item_details.py +3 -5
  93. oci/cims/models/update_resource_details.py +0 -2
  94. oci/cims/models/update_ticket_details.py +0 -2
  95. oci/cims/models/user.py +79 -19
  96. oci/cims/user_client.py +1 -1
  97. oci/cloud_bridge/common_client.py +5 -5
  98. oci/cloud_bridge/discovery_client.py +14 -14
  99. oci/cloud_bridge/inventory_client.py +16 -16
  100. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  101. oci/cloud_guard/cloud_guard_client.py +133 -133
  102. oci/cloud_migrations/migration_client.py +43 -43
  103. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  104. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  105. oci/compute_instance_agent/plugin_client.py +2 -2
  106. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  107. oci/container_engine/container_engine_client.py +44 -44
  108. oci/container_instances/container_instance_client.py +129 -24
  109. oci/core/blockstorage_client.py +60 -60
  110. oci/core/compute_client.py +90 -90
  111. oci/core/compute_management_client.py +32 -32
  112. oci/core/models/__init__.py +20 -0
  113. oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
  114. oci/core/models/amd_milan_bm_gpu_platform_config.py +34 -3
  115. oci/core/models/amd_milan_bm_launch_instance_platform_config.py +34 -3
  116. oci/core/models/amd_milan_bm_platform_config.py +34 -3
  117. oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
  118. oci/core/models/amd_rome_bm_gpu_platform_config.py +34 -3
  119. oci/core/models/amd_rome_bm_launch_instance_platform_config.py +34 -3
  120. oci/core/models/amd_rome_bm_platform_config.py +34 -3
  121. oci/core/models/amd_vm_launch_instance_platform_config.py +1 -1
  122. oci/core/models/amd_vm_platform_config.py +1 -1
  123. oci/core/models/capture_filter.py +5 -2
  124. oci/core/models/change_capture_filter_compartment_details.py +1 -1
  125. oci/core/models/cluster_network_placement_configuration_details.py +32 -5
  126. oci/core/models/cpe.py +33 -2
  127. oci/core/models/create_capture_filter_details.py +1 -1
  128. oci/core/models/create_cpe_details.py +33 -2
  129. oci/core/models/create_instance_pool_placement_configuration_details.py +32 -5
  130. oci/core/models/create_ip_sec_connection_tunnel_details.py +105 -0
  131. oci/core/models/create_macsec_properties.py +33 -2
  132. oci/core/models/create_virtual_circuit_details.py +31 -0
  133. oci/core/models/create_vnic_details.py +76 -0
  134. oci/core/models/drg_attachment_network_create_details.py +1 -1
  135. oci/core/models/drg_attachment_network_details.py +5 -1
  136. oci/core/models/generic_bm_launch_instance_platform_config.py +349 -0
  137. oci/core/models/generic_bm_platform_config.py +349 -0
  138. oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py +34 -3
  139. oci/core/models/instance_configuration_amd_milan_bm_launch_instance_platform_config.py +34 -3
  140. oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py +34 -3
  141. oci/core/models/instance_configuration_amd_rome_bm_launch_instance_platform_config.py +34 -3
  142. oci/core/models/instance_configuration_amd_vm_launch_instance_platform_config.py +1 -1
  143. oci/core/models/instance_configuration_create_vnic_details.py +76 -0
  144. oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py +349 -0
  145. oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py +34 -3
  146. oci/core/models/instance_configuration_intel_skylake_bm_launch_instance_platform_config.py +199 -3
  147. oci/core/models/instance_configuration_intel_vm_launch_instance_platform_config.py +1 -1
  148. oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py +103 -0
  149. oci/core/models/instance_configuration_launch_instance_platform_config.py +11 -3
  150. oci/core/models/instance_pool_placement_configuration.py +32 -3
  151. oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py +72 -0
  152. oci/core/models/instance_pool_placement_primary_subnet.py +152 -0
  153. oci/core/models/instance_pool_placement_secondary_vnic_subnet.py +76 -0
  154. oci/core/models/instance_pool_placement_subnet_details.py +152 -0
  155. oci/core/models/intel_icelake_bm_launch_instance_platform_config.py +34 -3
  156. oci/core/models/intel_icelake_bm_platform_config.py +34 -3
  157. oci/core/models/intel_skylake_bm_launch_instance_platform_config.py +199 -3
  158. oci/core/models/intel_skylake_bm_platform_config.py +199 -3
  159. oci/core/models/intel_vm_launch_instance_platform_config.py +1 -1
  160. oci/core/models/intel_vm_platform_config.py +1 -1
  161. oci/core/models/ip_sec_connection.py +49 -2
  162. oci/core/models/ip_sec_connection_tunnel.py +37 -2
  163. oci/core/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
  164. oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py +109 -0
  165. oci/core/models/launch_instance_platform_config.py +11 -3
  166. oci/core/models/loop_back_drg_attachment_network_details.py +93 -0
  167. oci/core/models/macsec_properties.py +33 -2
  168. oci/core/models/platform_config.py +11 -3
  169. oci/core/models/shape_platform_config_options.py +7 -3
  170. oci/core/models/update_capture_filter_details.py +1 -1
  171. oci/core/models/update_instance_pool_placement_configuration_details.py +34 -7
  172. oci/core/models/update_macsec_properties.py +33 -2
  173. oci/core/models/update_virtual_circuit_details.py +31 -0
  174. oci/core/models/virtual_circuit.py +31 -0
  175. oci/core/models/virtual_circuit_associated_tunnel_details.py +154 -0
  176. oci/core/models/virtual_circuit_drg_attachment_network_details.py +37 -2
  177. oci/core/models/vnic.py +37 -2
  178. oci/core/virtual_network_client.py +361 -241
  179. oci/dashboard_service/dashboard_client.py +6 -6
  180. oci/dashboard_service/dashboard_group_client.py +6 -6
  181. oci/data_catalog/data_catalog_client.py +424 -154
  182. oci/data_catalog/models/__init__.py +22 -0
  183. oci/data_catalog/models/asynchronous_export_glossary_details.py +68 -0
  184. oci/data_catalog/models/asynchronous_export_glossary_result.py +196 -0
  185. oci/data_catalog/models/asynchronous_export_request_details.py +68 -0
  186. oci/data_catalog/models/asynchronous_export_result.py +196 -0
  187. oci/data_catalog/models/attribute.py +33 -0
  188. oci/data_catalog/models/attribute_summary.py +33 -0
  189. oci/data_catalog/models/create_job_definition_details.py +42 -3
  190. oci/data_catalog/models/create_job_details.py +2 -0
  191. oci/data_catalog/models/create_job_execution_details.py +11 -3
  192. oci/data_catalog/models/data_asset.py +33 -0
  193. oci/data_catalog/models/data_asset_summary.py +35 -2
  194. oci/data_catalog/models/entity.py +33 -0
  195. oci/data_catalog/models/entity_lineage.py +222 -0
  196. oci/data_catalog/models/entity_summary.py +33 -0
  197. oci/data_catalog/models/faceted_search_date_filter_request.py +2 -2
  198. oci/data_catalog/models/faceted_search_string_filter_request.py +8 -2
  199. oci/data_catalog/models/fetch_entity_lineage_details.py +190 -0
  200. oci/data_catalog/models/folder.py +33 -0
  201. oci/data_catalog/models/folder_summary.py +35 -2
  202. oci/data_catalog/models/job.py +44 -3
  203. oci/data_catalog/models/job_definition.py +42 -3
  204. oci/data_catalog/models/job_definition_summary.py +44 -5
  205. oci/data_catalog/models/job_execution.py +11 -3
  206. oci/data_catalog/models/job_execution_summary.py +11 -3
  207. oci/data_catalog/models/job_summary.py +44 -3
  208. oci/data_catalog/models/lineage_object.py +400 -0
  209. oci/data_catalog/models/lineage_relationship.py +134 -0
  210. oci/data_catalog/models/object_lineage.py +223 -0
  211. oci/data_catalog/models/object_lineage_request_details.py +190 -0
  212. oci/data_catalog/models/object_storage_object_reference.py +134 -0
  213. oci/data_catalog/models/update_job_definition_details.py +31 -0
  214. oci/data_catalog/models/update_job_details.py +2 -0
  215. oci/data_flow/data_flow_client.py +42 -42
  216. oci/data_integration/data_integration_client.py +163 -163
  217. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  218. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  219. oci/data_safe/data_safe_client.py +214 -214
  220. oci/data_science/data_science_client.py +85 -85
  221. oci/database/database_client.py +626 -308
  222. oci/database/models/__init__.py +10 -0
  223. oci/database/models/acd_avm_resource_stats.py +241 -0
  224. oci/database/models/autonomous_container_database.py +107 -38
  225. oci/database/models/autonomous_container_database_resource_usage.py +437 -0
  226. oci/database/models/autonomous_container_database_summary.py +107 -38
  227. oci/database/models/autonomous_database.py +2 -6
  228. oci/database/models/autonomous_database_connection_strings.py +1 -1
  229. oci/database/models/autonomous_database_summary.py +2 -6
  230. oci/database/models/autonomous_vm_cluster.py +6 -18
  231. oci/database/models/autonomous_vm_cluster_summary.py +6 -18
  232. oci/database/models/autonomous_vm_resource_usage.py +299 -0
  233. oci/database/models/avm_acd_resource_stats.py +272 -0
  234. oci/database/models/cloud_autonomous_vm_cluster.py +287 -20
  235. oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py +673 -0
  236. oci/database/models/cloud_autonomous_vm_cluster_summary.py +287 -20
  237. oci/database/models/create_autonomous_vm_cluster_details.py +4 -12
  238. oci/database/models/create_cloud_autonomous_vm_cluster_details.py +4 -12
  239. oci/database/models/update_autonomous_database_details.py +2 -6
  240. oci/database_management/db_management_client.py +182 -182
  241. oci/database_management/diagnosability_client.py +4 -4
  242. oci/database_management/sql_tuning_client.py +10 -10
  243. oci/database_migration/database_migration_client.py +41 -41
  244. oci/database_migration/models/__init__.py +10 -0
  245. oci/database_migration/models/connection.py +27 -0
  246. oci/database_migration/models/create_connection_details.py +27 -0
  247. oci/database_migration/models/create_golden_gate_hub.py +4 -4
  248. oci/database_migration/models/create_golden_gate_service_details.py +149 -0
  249. oci/database_migration/models/create_migration_details.py +27 -0
  250. oci/database_migration/models/database_credentials.py +103 -0
  251. oci/database_migration/models/ggs_deployment.py +103 -0
  252. oci/database_migration/models/golden_gate_service_details.py +95 -0
  253. oci/database_migration/models/migration.py +38 -3
  254. oci/database_migration/models/migration_job_progress_resource.py +11 -3
  255. oci/database_migration/models/migration_job_progress_summary.py +11 -3
  256. oci/database_migration/models/migration_phase_summary.py +11 -3
  257. oci/database_migration/models/phase_status.py +11 -3
  258. oci/database_migration/models/resume_job_details.py +11 -3
  259. oci/database_migration/models/start_migration_details.py +11 -3
  260. oci/database_migration/models/update_connection_details.py +27 -0
  261. oci/database_migration/models/update_golden_gate_service_details.py +149 -0
  262. oci/database_migration/models/update_migration_details.py +27 -0
  263. oci/database_tools/database_tools_client.py +19 -19
  264. oci/devops/devops_client.py +89 -89
  265. oci/disaster_recovery/disaster_recovery_client.py +29 -29
  266. oci/dns/dns_client.py +52 -52
  267. oci/dts/appliance_export_job_client.py +6 -6
  268. oci/dts/shipping_vendors_client.py +1 -1
  269. oci/dts/transfer_appliance_client.py +8 -8
  270. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  271. oci/dts/transfer_device_client.py +5 -5
  272. oci/dts/transfer_job_client.py +6 -6
  273. oci/dts/transfer_package_client.py +7 -7
  274. oci/em_warehouse/em_data_lake_client.py +13 -13
  275. oci/em_warehouse/em_warehouse_client.py +13 -13
  276. oci/email/email_client.py +25 -25
  277. oci/events/events_client.py +6 -6
  278. oci/file_storage/file_storage_client.py +50 -50
  279. oci/fleet_software_update/fleet_software_update_client.py +44 -44
  280. oci/functions/functions_invoke_client.py +1 -1
  281. oci/functions/functions_management_client.py +16 -16
  282. oci/fusion_apps/data_masking_activity_client.py +3 -3
  283. oci/fusion_apps/fusion_applications_client.py +39 -39
  284. oci/fusion_apps/fusion_environment_client.py +15 -15
  285. oci/fusion_apps/fusion_environment_family_client.py +8 -8
  286. oci/fusion_apps/refresh_activity_client.py +4 -4
  287. oci/fusion_apps/scheduled_activity_client.py +2 -2
  288. oci/fusion_apps/service_attachment_client.py +2 -2
  289. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  290. oci/golden_gate/golden_gate_client.py +57 -57
  291. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  292. oci/governance_rules_control_plane/work_request_client.py +5 -5
  293. oci/healthchecks/health_checks_client.py +17 -17
  294. oci/identity/identity_client.py +145 -145
  295. oci/identity_data_plane/dataplane_client.py +2 -2
  296. oci/identity_domains/identity_domains_client.py +190 -190
  297. oci/integration/integration_instance_client.py +15 -15
  298. oci/jms/java_management_service_client.py +56 -56
  299. oci/key_management/kms_crypto_client.py +6 -6
  300. oci/key_management/kms_management_client.py +21 -21
  301. oci/key_management/kms_vault_client.py +14 -14
  302. oci/license_manager/license_manager_client.py +18 -18
  303. oci/limits/limits_client.py +4 -4
  304. oci/limits/quotas_client.py +7 -7
  305. oci/load_balancer/load_balancer_client.py +61 -61
  306. oci/lockbox/lockbox_client.py +22 -22
  307. oci/log_analytics/log_analytics_client.py +192 -192
  308. oci/logging/logging_management_client.py +30 -30
  309. oci/loggingingestion/logging_client.py +1 -1
  310. oci/loggingsearch/log_search_client.py +1 -1
  311. oci/management_agent/management_agent_client.py +23 -23
  312. oci/management_dashboard/dashx_apis_client.py +14 -14
  313. oci/marketplace/account_client.py +2 -2
  314. oci/marketplace/marketplace_client.py +25 -25
  315. oci/media_services/media_services_client.py +48 -48
  316. oci/media_services/media_stream_client.py +2 -2
  317. oci/monitoring/monitoring_client.py +13 -13
  318. oci/mysql/channels_client.py +7 -7
  319. oci/mysql/db_backups_client.py +6 -6
  320. oci/mysql/db_system_client.py +273 -1328
  321. oci/mysql/db_system_client_composite_operations.py +0 -294
  322. oci/mysql/models/__init__.py +0 -16
  323. oci/mysql/models/db_system.py +0 -60
  324. oci/mysql/models/db_system_summary.py +0 -60
  325. oci/mysql/models/shape_summary.py +3 -7
  326. oci/mysql/models/work_request.py +3 -31
  327. oci/mysql/models/work_request_summary.py +3 -31
  328. oci/mysql/mysqlaas_client.py +9 -9
  329. oci/mysql/replicas_client.py +5 -5
  330. oci/mysql/work_requests_client.py +4 -4
  331. oci/network_firewall/network_firewall_client.py +17 -17
  332. oci/network_load_balancer/network_load_balancer_client.py +34 -34
  333. oci/nosql/nosql_client.py +22 -22
  334. oci/object_storage/object_storage_client.py +50 -50
  335. oci/oce/oce_instance_client.py +10 -10
  336. oci/oci_control_center/occ_metrics_client.py +3 -3
  337. oci/ocvp/esxi_host_client.py +6 -6
  338. oci/ocvp/sddc_client.py +13 -13
  339. oci/ocvp/work_request_client.py +4 -4
  340. oci/oda/management_client.py +56 -56
  341. oci/oda/oda_client.py +17 -17
  342. oci/oda/odapackage_client.py +7 -7
  343. oci/onesubscription/billing_schedule_client.py +1 -1
  344. oci/onesubscription/commitment_client.py +2 -2
  345. oci/onesubscription/computed_usage_client.py +3 -3
  346. oci/onesubscription/invoice_summary_client.py +2 -2
  347. oci/onesubscription/organization_subscription_client.py +1 -1
  348. oci/onesubscription/ratecard_client.py +1 -1
  349. oci/onesubscription/subscribed_service_client.py +2 -2
  350. oci/onesubscription/subscription_client.py +1 -1
  351. oci/ons/notification_control_plane_client.py +6 -6
  352. oci/ons/notification_data_plane_client.py +10 -10
  353. oci/opa/opa_instance_client.py +11 -11
  354. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  355. oci/opensearch/opensearch_cluster_client.py +14 -14
  356. oci/operator_access_control/access_requests_client.py +9 -9
  357. oci/operator_access_control/operator_actions_client.py +2 -2
  358. oci/operator_access_control/operator_control_assignment_client.py +6 -6
  359. oci/operator_access_control/operator_control_client.py +6 -6
  360. oci/opsi/operations_insights_client.py +159 -159
  361. oci/optimizer/optimizer_client.py +26 -26
  362. oci/os_management/event_client.py +8 -8
  363. oci/os_management/os_management_client.py +69 -69
  364. oci/os_management_hub/lifecycle_environment_client.py +11 -11
  365. oci/os_management_hub/managed_instance_client.py +22 -22
  366. oci/os_management_hub/managed_instance_group_client.py +22 -22
  367. oci/os_management_hub/management_station_client.py +8 -8
  368. oci/os_management_hub/onboarding_client.py +5 -5
  369. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  370. oci/os_management_hub/scheduled_job_client.py +6 -6
  371. oci/os_management_hub/software_source_client.py +22 -22
  372. oci/os_management_hub/work_request_client.py +4 -4
  373. oci/osp_gateway/address_rule_service_client.py +1 -1
  374. oci/osp_gateway/address_service_client.py +2 -2
  375. oci/osp_gateway/invoice_service_client.py +5 -5
  376. oci/osp_gateway/subscription_service_client.py +5 -5
  377. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  378. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  379. oci/osub_subscription/commitment_client.py +2 -2
  380. oci/osub_subscription/ratecard_client.py +1 -1
  381. oci/osub_subscription/subscription_client.py +1 -1
  382. oci/osub_usage/computed_usage_client.py +3 -3
  383. oci/queue/models/__init__.py +4 -0
  384. oci/queue/models/channel_collection.py +72 -0
  385. oci/queue/models/create_queue_details.py +50 -11
  386. oci/queue/models/delete_messages_details_entry.py +2 -2
  387. oci/queue/models/get_message.py +55 -12
  388. oci/queue/models/message_metadata.py +103 -0
  389. oci/queue/models/purge_queue_details.py +43 -8
  390. oci/queue/models/put_message.py +44 -5
  391. oci/queue/models/put_messages.py +3 -3
  392. oci/queue/models/put_messages_details_entry.py +29 -2
  393. oci/queue/models/queue.py +76 -21
  394. oci/queue/models/queue_stats.py +34 -3
  395. oci/queue/models/queue_summary.py +37 -17
  396. oci/queue/models/stats.py +2 -2
  397. oci/queue/models/update_messages_details.py +1 -1
  398. oci/queue/models/update_messages_details_entry.py +2 -2
  399. oci/queue/models/update_messages_result.py +2 -2
  400. oci/queue/models/update_messages_result_entry.py +12 -4
  401. oci/queue/models/update_queue_details.py +47 -8
  402. oci/queue/models/updated_message.py +12 -4
  403. oci/queue/models/work_request.py +6 -2
  404. oci/queue/models/work_request_error.py +6 -2
  405. oci/queue/models/work_request_log_entry.py +6 -2
  406. oci/queue/models/work_request_summary.py +8 -4
  407. oci/queue/queue_admin_client.py +67 -46
  408. oci/queue/queue_admin_client_composite_operations.py +4 -4
  409. oci/queue/queue_client.py +209 -36
  410. oci/recovery/database_recovery_client.py +23 -23
  411. oci/resource_manager/resource_manager_client.py +52 -52
  412. oci/resource_search/resource_search_client.py +3 -3
  413. oci/rover/rover_bundle_client.py +8 -8
  414. oci/rover/rover_cluster_client.py +8 -8
  415. oci/rover/rover_entitlement_client.py +6 -6
  416. oci/rover/rover_node_client.py +15 -15
  417. oci/rover/shape_client.py +1 -1
  418. oci/rover/work_requests_client.py +5 -5
  419. oci/sch/service_connector_client.py +12 -12
  420. oci/secrets/secrets_client.py +3 -3
  421. oci/service_catalog/service_catalog_client.py +26 -26
  422. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  423. oci/service_mesh/service_mesh_client.py +48 -48
  424. oci/stack_monitoring/stack_monitoring_client.py +22 -22
  425. oci/streaming/stream_admin_client.py +18 -18
  426. oci/streaming/stream_client.py +8 -8
  427. oci/tenant_manager_control_plane/domain_client.py +5 -5
  428. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  429. oci/tenant_manager_control_plane/governance_client.py +2 -2
  430. oci/tenant_manager_control_plane/link_client.py +3 -3
  431. oci/tenant_manager_control_plane/orders_client.py +2 -2
  432. oci/tenant_manager_control_plane/organization_client.py +10 -10
  433. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  434. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  435. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  436. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  437. oci/threat_intelligence/threatintel_client.py +5 -5
  438. oci/usage/resources_client.py +2 -2
  439. oci/usage/rewards_client.py +6 -6
  440. oci/usage/usagelimits_client.py +1 -1
  441. oci/usage_api/usageapi_client.py +19 -19
  442. oci/vault/vaults_client.py +11 -11
  443. oci/vbs_inst/vbs_instance_client.py +10 -10
  444. oci/version.py +1 -1
  445. oci/visual_builder/vb_instance_client.py +13 -13
  446. oci/vn_monitoring/models/__init__.py +4 -0
  447. oci/vn_monitoring/models/cpe.py +33 -2
  448. oci/vn_monitoring/models/create_cpe_details.py +33 -2
  449. oci/vn_monitoring/models/create_ip_sec_connection_details.py +35 -2
  450. oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py +105 -0
  451. oci/vn_monitoring/models/create_virtual_circuit_details.py +31 -0
  452. oci/vn_monitoring/models/drg_attachment_network_create_details.py +1 -1
  453. oci/vn_monitoring/models/drg_attachment_network_details.py +5 -1
  454. oci/vn_monitoring/models/ip_sec_connection.py +50 -2
  455. oci/vn_monitoring/models/ip_sec_connection_tunnel.py +37 -2
  456. oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py +37 -2
  457. oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py +93 -0
  458. oci/vn_monitoring/models/update_virtual_circuit_details.py +31 -0
  459. oci/vn_monitoring/models/virtual_circuit.py +31 -0
  460. oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py +155 -0
  461. oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py +37 -2
  462. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  463. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  464. oci/waa/waa_client.py +13 -13
  465. oci/waa/work_request_client.py +4 -4
  466. oci/waas/redirect_client.py +6 -6
  467. oci/waas/waas_client.py +66 -66
  468. oci/waf/waf_client.py +24 -24
  469. oci/work_requests/work_request_client.py +4 -4
  470. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/METADATA +1 -1
  471. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/RECORD +475 -434
  472. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/LICENSE.txt +0 -0
  473. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  474. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/WHEEL +0 -0
  475. {oci-2.110.2.dist-info → oci-2.112.0.dist-info}/top_level.txt +0 -0
@@ -159,7 +159,7 @@ class DataCatalogClient(object):
159
159
  :rtype: :class:`~oci.response.Response`
160
160
 
161
161
  :example:
162
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/add_data_selector_patterns.py.html>`__ to see an example of how to use add_data_selector_patterns API.
162
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/add_data_selector_patterns.py.html>`__ to see an example of how to use add_data_selector_patterns API.
163
163
  """
164
164
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
165
165
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -283,7 +283,7 @@ class DataCatalogClient(object):
283
283
  :rtype: :class:`~oci.response.Response`
284
284
 
285
285
  :example:
286
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/associate_custom_property.py.html>`__ to see an example of how to use associate_custom_property API.
286
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/associate_custom_property.py.html>`__ to see an example of how to use associate_custom_property API.
287
287
  """
288
288
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
289
289
  required_arguments = ['catalogId', 'typeKey']
@@ -360,6 +360,121 @@ class DataCatalogClient(object):
360
360
  api_reference_link=api_reference_link,
361
361
  required_arguments=required_arguments)
362
362
 
363
+ def asynchronous_export_glossary(self, catalog_id, glossary_key, asynchronous_export_glossary_details, **kwargs):
364
+ """
365
+ Exports the contents of a glossary in Excel format. Returns details about the job which actually performs the export.
366
+
367
+
368
+ :param str catalog_id: (required)
369
+ Unique catalog identifier.
370
+
371
+ :param str glossary_key: (required)
372
+ Unique glossary key.
373
+
374
+ :param oci.data_catalog.models.AsynchronousExportGlossaryDetails asynchronous_export_glossary_details: (required)
375
+ Details needed by the glossary export request.
376
+
377
+ :param str opc_request_id: (optional)
378
+ The client request ID for tracing.
379
+
380
+ :param str opc_retry_token: (optional)
381
+ A token that uniquely identifies a request so it can be retried in case of a timeout or
382
+ server error without risk of executing that same action again. Retry tokens expire after 24
383
+ hours, but can be invalidated before then due to conflicting operations. For example, if a resource
384
+ has been deleted and purged from the system, then a retry of the original creation request
385
+ might be rejected.
386
+
387
+ :param obj retry_strategy: (optional)
388
+ A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
389
+
390
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation will not retry by default, users can also use the convenient :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` provided by the SDK to enable retries for it.
391
+ The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
392
+
393
+ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
394
+
395
+ :param bool allow_control_chars: (optional)
396
+ allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
397
+ By default, the response will not allow control characters in strings
398
+
399
+ :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.AsynchronousExportGlossaryResult`
400
+ :rtype: :class:`~oci.response.Response`
401
+
402
+ :example:
403
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/asynchronous_export_glossary.py.html>`__ to see an example of how to use asynchronous_export_glossary API.
404
+ """
405
+ # Required path and query arguments. These are in camelCase to replace values in service endpoints.
406
+ required_arguments = ['catalogId', 'glossaryKey']
407
+ resource_path = "/catalogs/{catalogId}/glossaries/{glossaryKey}/actions/asynchronousExport"
408
+ method = "POST"
409
+ operation_name = "asynchronous_export_glossary"
410
+ api_reference_link = "https://docs.oracle.com/iaas/api/#/en/data-catalog/20190325/Glossary/AsynchronousExportGlossary"
411
+
412
+ # Don't accept unknown kwargs
413
+ expected_kwargs = [
414
+ "allow_control_chars",
415
+ "retry_strategy",
416
+ "opc_request_id",
417
+ "opc_retry_token"
418
+ ]
419
+ extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
420
+ if extra_kwargs:
421
+ raise ValueError(
422
+ "asynchronous_export_glossary got unknown kwargs: {!r}".format(extra_kwargs))
423
+
424
+ path_params = {
425
+ "catalogId": catalog_id,
426
+ "glossaryKey": glossary_key
427
+ }
428
+
429
+ path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
430
+
431
+ for (k, v) in six.iteritems(path_params):
432
+ if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
433
+ raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
434
+
435
+ header_params = {
436
+ "accept": "application/json",
437
+ "content-type": "application/json",
438
+ "opc-request-id": kwargs.get("opc_request_id", missing),
439
+ "opc-retry-token": kwargs.get("opc_retry_token", missing)
440
+ }
441
+ header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
442
+
443
+ retry_strategy = self.base_client.get_preferred_retry_strategy(
444
+ operation_retry_strategy=kwargs.get('retry_strategy'),
445
+ client_retry_strategy=self.retry_strategy
446
+ )
447
+
448
+ if retry_strategy:
449
+ if not isinstance(retry_strategy, retry.NoneRetryStrategy):
450
+ self.base_client.add_opc_retry_token_if_needed(header_params)
451
+ self.base_client.add_opc_client_retries_header(header_params)
452
+ retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
453
+ return retry_strategy.make_retrying_call(
454
+ self.base_client.call_api,
455
+ resource_path=resource_path,
456
+ method=method,
457
+ path_params=path_params,
458
+ header_params=header_params,
459
+ body=asynchronous_export_glossary_details,
460
+ response_type="AsynchronousExportGlossaryResult",
461
+ allow_control_chars=kwargs.get('allow_control_chars'),
462
+ operation_name=operation_name,
463
+ api_reference_link=api_reference_link,
464
+ required_arguments=required_arguments)
465
+ else:
466
+ return self.base_client.call_api(
467
+ resource_path=resource_path,
468
+ method=method,
469
+ path_params=path_params,
470
+ header_params=header_params,
471
+ body=asynchronous_export_glossary_details,
472
+ response_type="AsynchronousExportGlossaryResult",
473
+ allow_control_chars=kwargs.get('allow_control_chars'),
474
+ operation_name=operation_name,
475
+ api_reference_link=api_reference_link,
476
+ required_arguments=required_arguments)
477
+
363
478
  def attach_catalog_private_endpoint(self, attach_catalog_private_endpoint_details, catalog_id, **kwargs):
364
479
  """
365
480
  Attaches a private reverse connection endpoint resource to a data catalog resource. When provided, 'If-Match' is checked against 'ETag' values of the resource.
@@ -404,7 +519,7 @@ class DataCatalogClient(object):
404
519
  :rtype: :class:`~oci.response.Response`
405
520
 
406
521
  :example:
407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/attach_catalog_private_endpoint.py.html>`__ to see an example of how to use attach_catalog_private_endpoint API.
522
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/attach_catalog_private_endpoint.py.html>`__ to see an example of how to use attach_catalog_private_endpoint API.
408
523
  """
409
524
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
410
525
  required_arguments = ['catalogId']
@@ -515,7 +630,7 @@ class DataCatalogClient(object):
515
630
  :rtype: :class:`~oci.response.Response`
516
631
 
517
632
  :example:
518
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/change_catalog_compartment.py.html>`__ to see an example of how to use change_catalog_compartment API.
633
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/change_catalog_compartment.py.html>`__ to see an example of how to use change_catalog_compartment API.
519
634
  """
520
635
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
521
636
  required_arguments = ['catalogId']
@@ -623,7 +738,7 @@ class DataCatalogClient(object):
623
738
  :rtype: :class:`~oci.response.Response`
624
739
 
625
740
  :example:
626
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/change_catalog_private_endpoint_compartment.py.html>`__ to see an example of how to use change_catalog_private_endpoint_compartment API.
741
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/change_catalog_private_endpoint_compartment.py.html>`__ to see an example of how to use change_catalog_private_endpoint_compartment API.
627
742
  """
628
743
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
629
744
  required_arguments = ['catalogPrivateEndpointId']
@@ -731,7 +846,7 @@ class DataCatalogClient(object):
731
846
  :rtype: :class:`~oci.response.Response`
732
847
 
733
848
  :example:
734
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/change_metastore_compartment.py.html>`__ to see an example of how to use change_metastore_compartment API.
849
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/change_metastore_compartment.py.html>`__ to see an example of how to use change_metastore_compartment API.
735
850
  """
736
851
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
737
852
  required_arguments = ['metastoreId']
@@ -845,7 +960,7 @@ class DataCatalogClient(object):
845
960
  :rtype: :class:`~oci.response.Response`
846
961
 
847
962
  :example:
848
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_attribute.py.html>`__ to see an example of how to use create_attribute API.
963
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_attribute.py.html>`__ to see an example of how to use create_attribute API.
849
964
  """
850
965
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
851
966
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -967,7 +1082,7 @@ class DataCatalogClient(object):
967
1082
  :rtype: :class:`~oci.response.Response`
968
1083
 
969
1084
  :example:
970
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_attribute_tag.py.html>`__ to see an example of how to use create_attribute_tag API.
1085
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_attribute_tag.py.html>`__ to see an example of how to use create_attribute_tag API.
971
1086
  """
972
1087
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
973
1088
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'attributeKey']
@@ -1079,7 +1194,7 @@ class DataCatalogClient(object):
1079
1194
  :rtype: :class:`~oci.response.Response`
1080
1195
 
1081
1196
  :example:
1082
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_catalog.py.html>`__ to see an example of how to use create_catalog API.
1197
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_catalog.py.html>`__ to see an example of how to use create_catalog API.
1083
1198
  """
1084
1199
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1085
1200
  required_arguments = []
@@ -1173,7 +1288,7 @@ class DataCatalogClient(object):
1173
1288
  :rtype: :class:`~oci.response.Response`
1174
1289
 
1175
1290
  :example:
1176
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_catalog_private_endpoint.py.html>`__ to see an example of how to use create_catalog_private_endpoint API.
1291
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_catalog_private_endpoint.py.html>`__ to see an example of how to use create_catalog_private_endpoint API.
1177
1292
  """
1178
1293
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1179
1294
  required_arguments = []
@@ -1273,7 +1388,7 @@ class DataCatalogClient(object):
1273
1388
  :rtype: :class:`~oci.response.Response`
1274
1389
 
1275
1390
  :example:
1276
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_connection.py.html>`__ to see an example of how to use create_connection API.
1391
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_connection.py.html>`__ to see an example of how to use create_connection API.
1277
1392
  """
1278
1393
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1279
1394
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -1388,7 +1503,7 @@ class DataCatalogClient(object):
1388
1503
  :rtype: :class:`~oci.response.Response`
1389
1504
 
1390
1505
  :example:
1391
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_custom_property.py.html>`__ to see an example of how to use create_custom_property API.
1506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_custom_property.py.html>`__ to see an example of how to use create_custom_property API.
1392
1507
  """
1393
1508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1394
1509
  required_arguments = ['catalogId', 'namespaceId']
@@ -1500,7 +1615,7 @@ class DataCatalogClient(object):
1500
1615
  :rtype: :class:`~oci.response.Response`
1501
1616
 
1502
1617
  :example:
1503
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_data_asset.py.html>`__ to see an example of how to use create_data_asset API.
1618
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_data_asset.py.html>`__ to see an example of how to use create_data_asset API.
1504
1619
  """
1505
1620
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1506
1621
  required_arguments = ['catalogId']
@@ -1614,7 +1729,7 @@ class DataCatalogClient(object):
1614
1729
  :rtype: :class:`~oci.response.Response`
1615
1730
 
1616
1731
  :example:
1617
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_data_asset_tag.py.html>`__ to see an example of how to use create_data_asset_tag API.
1732
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_data_asset_tag.py.html>`__ to see an example of how to use create_data_asset_tag API.
1618
1733
  """
1619
1734
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1620
1735
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -1729,7 +1844,7 @@ class DataCatalogClient(object):
1729
1844
  :rtype: :class:`~oci.response.Response`
1730
1845
 
1731
1846
  :example:
1732
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_entity.py.html>`__ to see an example of how to use create_entity API.
1847
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_entity.py.html>`__ to see an example of how to use create_entity API.
1733
1848
  """
1734
1849
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1735
1850
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -1847,7 +1962,7 @@ class DataCatalogClient(object):
1847
1962
  :rtype: :class:`~oci.response.Response`
1848
1963
 
1849
1964
  :example:
1850
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_entity_tag.py.html>`__ to see an example of how to use create_entity_tag API.
1965
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_entity_tag.py.html>`__ to see an example of how to use create_entity_tag API.
1851
1966
  """
1852
1967
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1853
1968
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -1963,7 +2078,7 @@ class DataCatalogClient(object):
1963
2078
  :rtype: :class:`~oci.response.Response`
1964
2079
 
1965
2080
  :example:
1966
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_folder.py.html>`__ to see an example of how to use create_folder API.
2081
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_folder.py.html>`__ to see an example of how to use create_folder API.
1967
2082
  """
1968
2083
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1969
2084
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -2081,7 +2196,7 @@ class DataCatalogClient(object):
2081
2196
  :rtype: :class:`~oci.response.Response`
2082
2197
 
2083
2198
  :example:
2084
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_folder_tag.py.html>`__ to see an example of how to use create_folder_tag API.
2199
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_folder_tag.py.html>`__ to see an example of how to use create_folder_tag API.
2085
2200
  """
2086
2201
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2087
2202
  required_arguments = ['catalogId', 'dataAssetKey', 'folderKey']
@@ -2194,7 +2309,7 @@ class DataCatalogClient(object):
2194
2309
  :rtype: :class:`~oci.response.Response`
2195
2310
 
2196
2311
  :example:
2197
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_glossary.py.html>`__ to see an example of how to use create_glossary API.
2312
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_glossary.py.html>`__ to see an example of how to use create_glossary API.
2198
2313
  """
2199
2314
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2200
2315
  required_arguments = ['catalogId']
@@ -2305,7 +2420,7 @@ class DataCatalogClient(object):
2305
2420
  :rtype: :class:`~oci.response.Response`
2306
2421
 
2307
2422
  :example:
2308
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_job.py.html>`__ to see an example of how to use create_job API.
2423
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_job.py.html>`__ to see an example of how to use create_job API.
2309
2424
  """
2310
2425
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2311
2426
  required_arguments = ['catalogId']
@@ -2416,7 +2531,7 @@ class DataCatalogClient(object):
2416
2531
  :rtype: :class:`~oci.response.Response`
2417
2532
 
2418
2533
  :example:
2419
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_job_definition.py.html>`__ to see an example of how to use create_job_definition API.
2534
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_job_definition.py.html>`__ to see an example of how to use create_job_definition API.
2420
2535
  """
2421
2536
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2422
2537
  required_arguments = ['catalogId']
@@ -2530,7 +2645,7 @@ class DataCatalogClient(object):
2530
2645
  :rtype: :class:`~oci.response.Response`
2531
2646
 
2532
2647
  :example:
2533
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_job_execution.py.html>`__ to see an example of how to use create_job_execution API.
2648
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_job_execution.py.html>`__ to see an example of how to use create_job_execution API.
2534
2649
  """
2535
2650
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2536
2651
  required_arguments = ['catalogId', 'jobKey']
@@ -2639,7 +2754,7 @@ class DataCatalogClient(object):
2639
2754
  :rtype: :class:`~oci.response.Response`
2640
2755
 
2641
2756
  :example:
2642
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_metastore.py.html>`__ to see an example of how to use create_metastore API.
2757
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_metastore.py.html>`__ to see an example of how to use create_metastore API.
2643
2758
  """
2644
2759
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2645
2760
  required_arguments = []
@@ -2736,7 +2851,7 @@ class DataCatalogClient(object):
2736
2851
  :rtype: :class:`~oci.response.Response`
2737
2852
 
2738
2853
  :example:
2739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_namespace.py.html>`__ to see an example of how to use create_namespace API.
2854
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_namespace.py.html>`__ to see an example of how to use create_namespace API.
2740
2855
  """
2741
2856
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2742
2857
  required_arguments = ['catalogId']
@@ -2847,7 +2962,7 @@ class DataCatalogClient(object):
2847
2962
  :rtype: :class:`~oci.response.Response`
2848
2963
 
2849
2964
  :example:
2850
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_pattern.py.html>`__ to see an example of how to use create_pattern API.
2965
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_pattern.py.html>`__ to see an example of how to use create_pattern API.
2851
2966
  """
2852
2967
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2853
2968
  required_arguments = ['catalogId']
@@ -2961,7 +3076,7 @@ class DataCatalogClient(object):
2961
3076
  :rtype: :class:`~oci.response.Response`
2962
3077
 
2963
3078
  :example:
2964
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_term.py.html>`__ to see an example of how to use create_term API.
3079
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_term.py.html>`__ to see an example of how to use create_term API.
2965
3080
  """
2966
3081
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2967
3082
  required_arguments = ['catalogId', 'glossaryKey']
@@ -3079,7 +3194,7 @@ class DataCatalogClient(object):
3079
3194
  :rtype: :class:`~oci.response.Response`
3080
3195
 
3081
3196
  :example:
3082
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/create_term_relationship.py.html>`__ to see an example of how to use create_term_relationship API.
3197
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/create_term_relationship.py.html>`__ to see an example of how to use create_term_relationship API.
3083
3198
  """
3084
3199
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3085
3200
  required_arguments = ['catalogId', 'glossaryKey', 'termKey']
@@ -3198,7 +3313,7 @@ class DataCatalogClient(object):
3198
3313
  :rtype: :class:`~oci.response.Response`
3199
3314
 
3200
3315
  :example:
3201
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_attribute.py.html>`__ to see an example of how to use delete_attribute API.
3316
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_attribute.py.html>`__ to see an example of how to use delete_attribute API.
3202
3317
  """
3203
3318
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3204
3319
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'attributeKey']
@@ -3316,7 +3431,7 @@ class DataCatalogClient(object):
3316
3431
  :rtype: :class:`~oci.response.Response`
3317
3432
 
3318
3433
  :example:
3319
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_attribute_tag.py.html>`__ to see an example of how to use delete_attribute_tag API.
3434
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_attribute_tag.py.html>`__ to see an example of how to use delete_attribute_tag API.
3320
3435
  """
3321
3436
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3322
3437
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'attributeKey', 'tagKey']
@@ -3423,7 +3538,7 @@ class DataCatalogClient(object):
3423
3538
  :rtype: :class:`~oci.response.Response`
3424
3539
 
3425
3540
  :example:
3426
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_catalog.py.html>`__ to see an example of how to use delete_catalog API.
3541
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_catalog.py.html>`__ to see an example of how to use delete_catalog API.
3427
3542
  """
3428
3543
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3429
3544
  required_arguments = ['catalogId']
@@ -3526,7 +3641,7 @@ class DataCatalogClient(object):
3526
3641
  :rtype: :class:`~oci.response.Response`
3527
3642
 
3528
3643
  :example:
3529
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_catalog_private_endpoint.py.html>`__ to see an example of how to use delete_catalog_private_endpoint API.
3644
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_catalog_private_endpoint.py.html>`__ to see an example of how to use delete_catalog_private_endpoint API.
3530
3645
  """
3531
3646
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3532
3647
  required_arguments = ['catalogPrivateEndpointId']
@@ -3635,7 +3750,7 @@ class DataCatalogClient(object):
3635
3750
  :rtype: :class:`~oci.response.Response`
3636
3751
 
3637
3752
  :example:
3638
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_connection.py.html>`__ to see an example of how to use delete_connection API.
3753
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_connection.py.html>`__ to see an example of how to use delete_connection API.
3639
3754
  """
3640
3755
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3641
3756
  required_arguments = ['catalogId', 'dataAssetKey', 'connectionKey']
@@ -3746,7 +3861,7 @@ class DataCatalogClient(object):
3746
3861
  :rtype: :class:`~oci.response.Response`
3747
3862
 
3748
3863
  :example:
3749
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_custom_property.py.html>`__ to see an example of how to use delete_custom_property API.
3864
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_custom_property.py.html>`__ to see an example of how to use delete_custom_property API.
3750
3865
  """
3751
3866
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3752
3867
  required_arguments = ['catalogId', 'namespaceId', 'customPropertyKey']
@@ -3854,7 +3969,7 @@ class DataCatalogClient(object):
3854
3969
  :rtype: :class:`~oci.response.Response`
3855
3970
 
3856
3971
  :example:
3857
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_data_asset.py.html>`__ to see an example of how to use delete_data_asset API.
3972
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_data_asset.py.html>`__ to see an example of how to use delete_data_asset API.
3858
3973
  """
3859
3974
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3860
3975
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -3964,7 +4079,7 @@ class DataCatalogClient(object):
3964
4079
  :rtype: :class:`~oci.response.Response`
3965
4080
 
3966
4081
  :example:
3967
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_data_asset_tag.py.html>`__ to see an example of how to use delete_data_asset_tag API.
4082
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_data_asset_tag.py.html>`__ to see an example of how to use delete_data_asset_tag API.
3968
4083
  """
3969
4084
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3970
4085
  required_arguments = ['catalogId', 'dataAssetKey', 'tagKey']
@@ -4075,7 +4190,7 @@ class DataCatalogClient(object):
4075
4190
  :rtype: :class:`~oci.response.Response`
4076
4191
 
4077
4192
  :example:
4078
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_entity.py.html>`__ to see an example of how to use delete_entity API.
4193
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_entity.py.html>`__ to see an example of how to use delete_entity API.
4079
4194
  """
4080
4195
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4081
4196
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -4189,7 +4304,7 @@ class DataCatalogClient(object):
4189
4304
  :rtype: :class:`~oci.response.Response`
4190
4305
 
4191
4306
  :example:
4192
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_entity_tag.py.html>`__ to see an example of how to use delete_entity_tag API.
4307
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_entity_tag.py.html>`__ to see an example of how to use delete_entity_tag API.
4193
4308
  """
4194
4309
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4195
4310
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'tagKey']
@@ -4301,7 +4416,7 @@ class DataCatalogClient(object):
4301
4416
  :rtype: :class:`~oci.response.Response`
4302
4417
 
4303
4418
  :example:
4304
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_folder.py.html>`__ to see an example of how to use delete_folder API.
4419
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_folder.py.html>`__ to see an example of how to use delete_folder API.
4305
4420
  """
4306
4421
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4307
4422
  required_arguments = ['catalogId', 'dataAssetKey', 'folderKey']
@@ -4415,7 +4530,7 @@ class DataCatalogClient(object):
4415
4530
  :rtype: :class:`~oci.response.Response`
4416
4531
 
4417
4532
  :example:
4418
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_folder_tag.py.html>`__ to see an example of how to use delete_folder_tag API.
4533
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_folder_tag.py.html>`__ to see an example of how to use delete_folder_tag API.
4419
4534
  """
4420
4535
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4421
4536
  required_arguments = ['catalogId', 'dataAssetKey', 'folderKey', 'tagKey']
@@ -4524,7 +4639,7 @@ class DataCatalogClient(object):
4524
4639
  :rtype: :class:`~oci.response.Response`
4525
4640
 
4526
4641
  :example:
4527
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_glossary.py.html>`__ to see an example of how to use delete_glossary API.
4642
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_glossary.py.html>`__ to see an example of how to use delete_glossary API.
4528
4643
  """
4529
4644
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4530
4645
  required_arguments = ['catalogId', 'glossaryKey']
@@ -4631,7 +4746,7 @@ class DataCatalogClient(object):
4631
4746
  :rtype: :class:`~oci.response.Response`
4632
4747
 
4633
4748
  :example:
4634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_job.py.html>`__ to see an example of how to use delete_job API.
4749
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_job.py.html>`__ to see an example of how to use delete_job API.
4635
4750
  """
4636
4751
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4637
4752
  required_arguments = ['catalogId', 'jobKey']
@@ -4738,7 +4853,7 @@ class DataCatalogClient(object):
4738
4853
  :rtype: :class:`~oci.response.Response`
4739
4854
 
4740
4855
  :example:
4741
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_job_definition.py.html>`__ to see an example of how to use delete_job_definition API.
4856
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_job_definition.py.html>`__ to see an example of how to use delete_job_definition API.
4742
4857
  """
4743
4858
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4744
4859
  required_arguments = ['catalogId', 'jobDefinitionKey']
@@ -4842,7 +4957,7 @@ class DataCatalogClient(object):
4842
4957
  :rtype: :class:`~oci.response.Response`
4843
4958
 
4844
4959
  :example:
4845
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_metastore.py.html>`__ to see an example of how to use delete_metastore API.
4960
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_metastore.py.html>`__ to see an example of how to use delete_metastore API.
4846
4961
  """
4847
4962
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4848
4963
  required_arguments = ['metastoreId']
@@ -4948,7 +5063,7 @@ class DataCatalogClient(object):
4948
5063
  :rtype: :class:`~oci.response.Response`
4949
5064
 
4950
5065
  :example:
4951
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_namespace.py.html>`__ to see an example of how to use delete_namespace API.
5066
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_namespace.py.html>`__ to see an example of how to use delete_namespace API.
4952
5067
  """
4953
5068
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4954
5069
  required_arguments = ['catalogId', 'namespaceId']
@@ -5055,7 +5170,7 @@ class DataCatalogClient(object):
5055
5170
  :rtype: :class:`~oci.response.Response`
5056
5171
 
5057
5172
  :example:
5058
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_pattern.py.html>`__ to see an example of how to use delete_pattern API.
5173
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_pattern.py.html>`__ to see an example of how to use delete_pattern API.
5059
5174
  """
5060
5175
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5061
5176
  required_arguments = ['catalogId', 'patternKey']
@@ -5165,7 +5280,7 @@ class DataCatalogClient(object):
5165
5280
  :rtype: :class:`~oci.response.Response`
5166
5281
 
5167
5282
  :example:
5168
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_term.py.html>`__ to see an example of how to use delete_term API.
5283
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_term.py.html>`__ to see an example of how to use delete_term API.
5169
5284
  """
5170
5285
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5171
5286
  required_arguments = ['catalogId', 'glossaryKey', 'termKey']
@@ -5279,7 +5394,7 @@ class DataCatalogClient(object):
5279
5394
  :rtype: :class:`~oci.response.Response`
5280
5395
 
5281
5396
  :example:
5282
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/delete_term_relationship.py.html>`__ to see an example of how to use delete_term_relationship API.
5397
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/delete_term_relationship.py.html>`__ to see an example of how to use delete_term_relationship API.
5283
5398
  """
5284
5399
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5285
5400
  required_arguments = ['catalogId', 'glossaryKey', 'termKey', 'termRelationshipKey']
@@ -5388,7 +5503,7 @@ class DataCatalogClient(object):
5388
5503
  :rtype: :class:`~oci.response.Response`
5389
5504
 
5390
5505
  :example:
5391
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/detach_catalog_private_endpoint.py.html>`__ to see an example of how to use detach_catalog_private_endpoint API.
5506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/detach_catalog_private_endpoint.py.html>`__ to see an example of how to use detach_catalog_private_endpoint API.
5392
5507
  """
5393
5508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5394
5509
  required_arguments = ['catalogId']
@@ -5506,7 +5621,7 @@ class DataCatalogClient(object):
5506
5621
  :rtype: :class:`~oci.response.Response`
5507
5622
 
5508
5623
  :example:
5509
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/disassociate_custom_property.py.html>`__ to see an example of how to use disassociate_custom_property API.
5624
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/disassociate_custom_property.py.html>`__ to see an example of how to use disassociate_custom_property API.
5510
5625
  """
5511
5626
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5512
5627
  required_arguments = ['catalogId', 'typeKey']
@@ -5620,7 +5735,7 @@ class DataCatalogClient(object):
5620
5735
  :rtype: :class:`~oci.response.Response`
5621
5736
 
5622
5737
  :example:
5623
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/expand_tree_for_glossary.py.html>`__ to see an example of how to use expand_tree_for_glossary API.
5738
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/expand_tree_for_glossary.py.html>`__ to see an example of how to use expand_tree_for_glossary API.
5624
5739
  """
5625
5740
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5626
5741
  required_arguments = ['catalogId', 'glossaryKey']
@@ -5735,7 +5850,7 @@ class DataCatalogClient(object):
5735
5850
  :rtype: :class:`~oci.response.Response`
5736
5851
 
5737
5852
  :example:
5738
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/export_glossary.py.html>`__ to see an example of how to use export_glossary API.
5853
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/export_glossary.py.html>`__ to see an example of how to use export_glossary API.
5739
5854
  """
5740
5855
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5741
5856
  required_arguments = ['catalogId', 'glossaryKey']
@@ -5816,6 +5931,142 @@ class DataCatalogClient(object):
5816
5931
  api_reference_link=api_reference_link,
5817
5932
  required_arguments=required_arguments)
5818
5933
 
5934
+ def fetch_entity_lineage(self, catalog_id, data_asset_key, entity_key, fetch_entity_lineage_details, **kwargs):
5935
+ """
5936
+ Returns lineage for a given entity object.
5937
+
5938
+
5939
+ :param str catalog_id: (required)
5940
+ Unique catalog identifier.
5941
+
5942
+ :param str data_asset_key: (required)
5943
+ Unique data asset key.
5944
+
5945
+ :param str entity_key: (required)
5946
+ Unique entity key.
5947
+
5948
+ :param oci.data_catalog.models.FetchEntityLineageDetails fetch_entity_lineage_details: (required)
5949
+ The information needed to obtain desired lineage.
5950
+
5951
+ :param int limit: (optional)
5952
+ The maximum number of items to return.
5953
+
5954
+ :param str page: (optional)
5955
+ The page token representing the page at which to start retrieving results. This is usually retrieved from a previous list call.
5956
+
5957
+ :param str opc_request_id: (optional)
5958
+ The client request ID for tracing.
5959
+
5960
+ :param str if_match: (optional)
5961
+ For optimistic concurrency control. In the PUT or DELETE call
5962
+ for a resource, set the `if-match` parameter to the value of the
5963
+ etag from a previous GET or POST response for that resource.
5964
+ The resource will be updated or deleted only if the etag you
5965
+ provide matches the resource's current etag value.
5966
+
5967
+ :param obj retry_strategy: (optional)
5968
+ A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
5969
+
5970
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
5971
+ The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
5972
+
5973
+ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
5974
+
5975
+ :param bool allow_control_chars: (optional)
5976
+ allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
5977
+ By default, the response will not allow control characters in strings
5978
+
5979
+ :return: A :class:`~oci.response.Response` object with data of type :class:`~oci.data_catalog.models.EntityLineage`
5980
+ :rtype: :class:`~oci.response.Response`
5981
+
5982
+ :example:
5983
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/fetch_entity_lineage.py.html>`__ to see an example of how to use fetch_entity_lineage API.
5984
+ """
5985
+ # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5986
+ required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
5987
+ resource_path = "/catalogs/{catalogId}/dataAssets/{dataAssetKey}/entities/{entityKey}/actions/fetchLineage"
5988
+ method = "POST"
5989
+ operation_name = "fetch_entity_lineage"
5990
+ api_reference_link = "https://docs.oracle.com/iaas/api/#/en/data-catalog/20190325/Entity/FetchEntityLineage"
5991
+
5992
+ # Don't accept unknown kwargs
5993
+ expected_kwargs = [
5994
+ "allow_control_chars",
5995
+ "retry_strategy",
5996
+ "limit",
5997
+ "page",
5998
+ "opc_request_id",
5999
+ "if_match"
6000
+ ]
6001
+ extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
6002
+ if extra_kwargs:
6003
+ raise ValueError(
6004
+ "fetch_entity_lineage got unknown kwargs: {!r}".format(extra_kwargs))
6005
+
6006
+ path_params = {
6007
+ "catalogId": catalog_id,
6008
+ "dataAssetKey": data_asset_key,
6009
+ "entityKey": entity_key
6010
+ }
6011
+
6012
+ path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
6013
+
6014
+ for (k, v) in six.iteritems(path_params):
6015
+ if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
6016
+ raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
6017
+
6018
+ query_params = {
6019
+ "limit": kwargs.get("limit", missing),
6020
+ "page": kwargs.get("page", missing)
6021
+ }
6022
+ query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
6023
+
6024
+ header_params = {
6025
+ "accept": "application/json",
6026
+ "content-type": "application/json",
6027
+ "opc-request-id": kwargs.get("opc_request_id", missing),
6028
+ "if-match": kwargs.get("if_match", missing)
6029
+ }
6030
+ header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None}
6031
+
6032
+ retry_strategy = self.base_client.get_preferred_retry_strategy(
6033
+ operation_retry_strategy=kwargs.get('retry_strategy'),
6034
+ client_retry_strategy=self.retry_strategy
6035
+ )
6036
+ if retry_strategy is None:
6037
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
6038
+
6039
+ if retry_strategy:
6040
+ if not isinstance(retry_strategy, retry.NoneRetryStrategy):
6041
+ self.base_client.add_opc_client_retries_header(header_params)
6042
+ retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
6043
+ return retry_strategy.make_retrying_call(
6044
+ self.base_client.call_api,
6045
+ resource_path=resource_path,
6046
+ method=method,
6047
+ path_params=path_params,
6048
+ query_params=query_params,
6049
+ header_params=header_params,
6050
+ body=fetch_entity_lineage_details,
6051
+ response_type="EntityLineage",
6052
+ allow_control_chars=kwargs.get('allow_control_chars'),
6053
+ operation_name=operation_name,
6054
+ api_reference_link=api_reference_link,
6055
+ required_arguments=required_arguments)
6056
+ else:
6057
+ return self.base_client.call_api(
6058
+ resource_path=resource_path,
6059
+ method=method,
6060
+ path_params=path_params,
6061
+ query_params=query_params,
6062
+ header_params=header_params,
6063
+ body=fetch_entity_lineage_details,
6064
+ response_type="EntityLineage",
6065
+ allow_control_chars=kwargs.get('allow_control_chars'),
6066
+ operation_name=operation_name,
6067
+ api_reference_link=api_reference_link,
6068
+ required_arguments=required_arguments)
6069
+
5819
6070
  def get_attribute(self, catalog_id, data_asset_key, entity_key, attribute_key, **kwargs):
5820
6071
  """
5821
6072
  Gets a specific entity attribute by key.
@@ -5860,7 +6111,7 @@ class DataCatalogClient(object):
5860
6111
  :rtype: :class:`~oci.response.Response`
5861
6112
 
5862
6113
  :example:
5863
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_attribute.py.html>`__ to see an example of how to use get_attribute API.
6114
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_attribute.py.html>`__ to see an example of how to use get_attribute API.
5864
6115
  """
5865
6116
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5866
6117
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'attributeKey']
@@ -5996,7 +6247,7 @@ class DataCatalogClient(object):
5996
6247
  :rtype: :class:`~oci.response.Response`
5997
6248
 
5998
6249
  :example:
5999
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_attribute_tag.py.html>`__ to see an example of how to use get_attribute_tag API.
6250
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_attribute_tag.py.html>`__ to see an example of how to use get_attribute_tag API.
6000
6251
  """
6001
6252
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6002
6253
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'attributeKey', 'tagKey']
@@ -6114,7 +6365,7 @@ class DataCatalogClient(object):
6114
6365
  :rtype: :class:`~oci.response.Response`
6115
6366
 
6116
6367
  :example:
6117
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_catalog.py.html>`__ to see an example of how to use get_catalog API.
6368
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_catalog.py.html>`__ to see an example of how to use get_catalog API.
6118
6369
  """
6119
6370
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6120
6371
  required_arguments = ['catalogId']
@@ -6212,7 +6463,7 @@ class DataCatalogClient(object):
6212
6463
  :rtype: :class:`~oci.response.Response`
6213
6464
 
6214
6465
  :example:
6215
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_catalog_private_endpoint.py.html>`__ to see an example of how to use get_catalog_private_endpoint API.
6466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_catalog_private_endpoint.py.html>`__ to see an example of how to use get_catalog_private_endpoint API.
6216
6467
  """
6217
6468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6218
6469
  required_arguments = ['catalogPrivateEndpointId']
@@ -6321,7 +6572,7 @@ class DataCatalogClient(object):
6321
6572
  :rtype: :class:`~oci.response.Response`
6322
6573
 
6323
6574
  :example:
6324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_connection.py.html>`__ to see an example of how to use get_connection API.
6575
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_connection.py.html>`__ to see an example of how to use get_connection API.
6325
6576
  """
6326
6577
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6327
6578
  required_arguments = ['catalogId', 'dataAssetKey', 'connectionKey']
@@ -6448,7 +6699,7 @@ class DataCatalogClient(object):
6448
6699
  :rtype: :class:`~oci.response.Response`
6449
6700
 
6450
6701
  :example:
6451
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_custom_property.py.html>`__ to see an example of how to use get_custom_property API.
6702
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_custom_property.py.html>`__ to see an example of how to use get_custom_property API.
6452
6703
  """
6453
6704
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6454
6705
  required_arguments = ['catalogId', 'namespaceId', 'customPropertyKey']
@@ -6572,7 +6823,7 @@ class DataCatalogClient(object):
6572
6823
  :rtype: :class:`~oci.response.Response`
6573
6824
 
6574
6825
  :example:
6575
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_data_asset.py.html>`__ to see an example of how to use get_data_asset API.
6826
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_data_asset.py.html>`__ to see an example of how to use get_data_asset API.
6576
6827
  """
6577
6828
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6578
6829
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -6698,7 +6949,7 @@ class DataCatalogClient(object):
6698
6949
  :rtype: :class:`~oci.response.Response`
6699
6950
 
6700
6951
  :example:
6701
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_data_asset_tag.py.html>`__ to see an example of how to use get_data_asset_tag API.
6952
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_data_asset_tag.py.html>`__ to see an example of how to use get_data_asset_tag API.
6702
6953
  """
6703
6954
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6704
6955
  required_arguments = ['catalogId', 'dataAssetKey', 'tagKey']
@@ -6828,7 +7079,7 @@ class DataCatalogClient(object):
6828
7079
  :rtype: :class:`~oci.response.Response`
6829
7080
 
6830
7081
  :example:
6831
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_entity.py.html>`__ to see an example of how to use get_entity API.
7082
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_entity.py.html>`__ to see an example of how to use get_entity API.
6832
7083
  """
6833
7084
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6834
7085
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -6960,7 +7211,7 @@ class DataCatalogClient(object):
6960
7211
  :rtype: :class:`~oci.response.Response`
6961
7212
 
6962
7213
  :example:
6963
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_entity_tag.py.html>`__ to see an example of how to use get_entity_tag API.
7214
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_entity_tag.py.html>`__ to see an example of how to use get_entity_tag API.
6964
7215
  """
6965
7216
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6966
7217
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'tagKey']
@@ -7091,7 +7342,7 @@ class DataCatalogClient(object):
7091
7342
  :rtype: :class:`~oci.response.Response`
7092
7343
 
7093
7344
  :example:
7094
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_folder.py.html>`__ to see an example of how to use get_folder API.
7345
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_folder.py.html>`__ to see an example of how to use get_folder API.
7095
7346
  """
7096
7347
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7097
7348
  required_arguments = ['catalogId', 'dataAssetKey', 'folderKey']
@@ -7223,7 +7474,7 @@ class DataCatalogClient(object):
7223
7474
  :rtype: :class:`~oci.response.Response`
7224
7475
 
7225
7476
  :example:
7226
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_folder_tag.py.html>`__ to see an example of how to use get_folder_tag API.
7477
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_folder_tag.py.html>`__ to see an example of how to use get_folder_tag API.
7227
7478
  """
7228
7479
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7229
7480
  required_arguments = ['catalogId', 'dataAssetKey', 'folderKey', 'tagKey']
@@ -7348,7 +7599,7 @@ class DataCatalogClient(object):
7348
7599
  :rtype: :class:`~oci.response.Response`
7349
7600
 
7350
7601
  :example:
7351
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_glossary.py.html>`__ to see an example of how to use get_glossary API.
7602
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_glossary.py.html>`__ to see an example of how to use get_glossary API.
7352
7603
  """
7353
7604
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7354
7605
  required_arguments = ['catalogId', 'glossaryKey']
@@ -7471,7 +7722,7 @@ class DataCatalogClient(object):
7471
7722
  :rtype: :class:`~oci.response.Response`
7472
7723
 
7473
7724
  :example:
7474
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_job.py.html>`__ to see an example of how to use get_job API.
7725
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_job.py.html>`__ to see an example of how to use get_job API.
7475
7726
  """
7476
7727
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7477
7728
  required_arguments = ['catalogId', 'jobKey']
@@ -7594,7 +7845,7 @@ class DataCatalogClient(object):
7594
7845
  :rtype: :class:`~oci.response.Response`
7595
7846
 
7596
7847
  :example:
7597
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_job_definition.py.html>`__ to see an example of how to use get_job_definition API.
7848
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_job_definition.py.html>`__ to see an example of how to use get_job_definition API.
7598
7849
  """
7599
7850
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7600
7851
  required_arguments = ['catalogId', 'jobDefinitionKey']
@@ -7720,7 +7971,7 @@ class DataCatalogClient(object):
7720
7971
  :rtype: :class:`~oci.response.Response`
7721
7972
 
7722
7973
  :example:
7723
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
7974
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_job_execution.py.html>`__ to see an example of how to use get_job_execution API.
7724
7975
  """
7725
7976
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7726
7977
  required_arguments = ['catalogId', 'jobKey', 'jobExecutionKey']
@@ -7850,7 +8101,7 @@ class DataCatalogClient(object):
7850
8101
  :rtype: :class:`~oci.response.Response`
7851
8102
 
7852
8103
  :example:
7853
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_job_log.py.html>`__ to see an example of how to use get_job_log API.
8104
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_job_log.py.html>`__ to see an example of how to use get_job_log API.
7854
8105
  """
7855
8106
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7856
8107
  required_arguments = ['catalogId', 'jobKey', 'jobExecutionKey', 'jobLogKey']
@@ -7981,7 +8232,7 @@ class DataCatalogClient(object):
7981
8232
  :rtype: :class:`~oci.response.Response`
7982
8233
 
7983
8234
  :example:
7984
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_job_metrics.py.html>`__ to see an example of how to use get_job_metrics API.
8235
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_job_metrics.py.html>`__ to see an example of how to use get_job_metrics API.
7985
8236
  """
7986
8237
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7987
8238
  required_arguments = ['catalogId', 'jobKey', 'jobExecutionKey', 'jobMetricsKey']
@@ -8098,7 +8349,7 @@ class DataCatalogClient(object):
8098
8349
  :rtype: :class:`~oci.response.Response`
8099
8350
 
8100
8351
  :example:
8101
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_metastore.py.html>`__ to see an example of how to use get_metastore API.
8352
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_metastore.py.html>`__ to see an example of how to use get_metastore API.
8102
8353
  """
8103
8354
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8104
8355
  required_arguments = ['metastoreId']
@@ -8204,7 +8455,7 @@ class DataCatalogClient(object):
8204
8455
  :rtype: :class:`~oci.response.Response`
8205
8456
 
8206
8457
  :example:
8207
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_namespace.py.html>`__ to see an example of how to use get_namespace API.
8458
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_namespace.py.html>`__ to see an example of how to use get_namespace API.
8208
8459
  """
8209
8460
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8210
8461
  required_arguments = ['catalogId', 'namespaceId']
@@ -8327,7 +8578,7 @@ class DataCatalogClient(object):
8327
8578
  :rtype: :class:`~oci.response.Response`
8328
8579
 
8329
8580
  :example:
8330
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_pattern.py.html>`__ to see an example of how to use get_pattern API.
8581
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_pattern.py.html>`__ to see an example of how to use get_pattern API.
8331
8582
  """
8332
8583
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8333
8584
  required_arguments = ['catalogId', 'patternKey']
@@ -8453,7 +8704,7 @@ class DataCatalogClient(object):
8453
8704
  :rtype: :class:`~oci.response.Response`
8454
8705
 
8455
8706
  :example:
8456
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_term.py.html>`__ to see an example of how to use get_term API.
8707
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_term.py.html>`__ to see an example of how to use get_term API.
8457
8708
  """
8458
8709
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8459
8710
  required_arguments = ['catalogId', 'glossaryKey', 'termKey']
@@ -8583,7 +8834,7 @@ class DataCatalogClient(object):
8583
8834
  :rtype: :class:`~oci.response.Response`
8584
8835
 
8585
8836
  :example:
8586
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_term_relationship.py.html>`__ to see an example of how to use get_term_relationship API.
8837
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_term_relationship.py.html>`__ to see an example of how to use get_term_relationship API.
8587
8838
  """
8588
8839
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8589
8840
  required_arguments = ['catalogId', 'glossaryKey', 'termKey', 'termRelationshipKey']
@@ -8708,7 +8959,7 @@ class DataCatalogClient(object):
8708
8959
  :rtype: :class:`~oci.response.Response`
8709
8960
 
8710
8961
  :example:
8711
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_type.py.html>`__ to see an example of how to use get_type API.
8962
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_type.py.html>`__ to see an example of how to use get_type API.
8712
8963
  """
8713
8964
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8714
8965
  required_arguments = ['catalogId', 'typeKey']
@@ -8823,7 +9074,7 @@ class DataCatalogClient(object):
8823
9074
  :rtype: :class:`~oci.response.Response`
8824
9075
 
8825
9076
  :example:
8826
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
9077
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
8827
9078
  """
8828
9079
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8829
9080
  required_arguments = ['workRequestId']
@@ -8941,7 +9192,7 @@ class DataCatalogClient(object):
8941
9192
  :rtype: :class:`~oci.response.Response`
8942
9193
 
8943
9194
  :example:
8944
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/import_connection.py.html>`__ to see an example of how to use import_connection API.
9195
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/import_connection.py.html>`__ to see an example of how to use import_connection API.
8945
9196
  """
8946
9197
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8947
9198
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -9066,7 +9317,7 @@ class DataCatalogClient(object):
9066
9317
  :rtype: :class:`~oci.response.Response`
9067
9318
 
9068
9319
  :example:
9069
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/import_data_asset.py.html>`__ to see an example of how to use import_data_asset API.
9320
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/import_data_asset.py.html>`__ to see an example of how to use import_data_asset API.
9070
9321
  """
9071
9322
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9072
9323
  required_arguments = ['catalogId', 'dataAssetKey', 'importType']
@@ -9200,7 +9451,7 @@ class DataCatalogClient(object):
9200
9451
  :rtype: :class:`~oci.response.Response`
9201
9452
 
9202
9453
  :example:
9203
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/import_glossary.py.html>`__ to see an example of how to use import_glossary API.
9454
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/import_glossary.py.html>`__ to see an example of how to use import_glossary API.
9204
9455
  """
9205
9456
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9206
9457
  required_arguments = ['catalogId', 'glossaryKey']
@@ -9343,7 +9594,7 @@ class DataCatalogClient(object):
9343
9594
  :rtype: :class:`~oci.response.Response`
9344
9595
 
9345
9596
  :example:
9346
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_aggregated_physical_entities.py.html>`__ to see an example of how to use list_aggregated_physical_entities API.
9597
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_aggregated_physical_entities.py.html>`__ to see an example of how to use list_aggregated_physical_entities API.
9347
9598
  """
9348
9599
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9349
9600
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -9537,7 +9788,7 @@ class DataCatalogClient(object):
9537
9788
  :rtype: :class:`~oci.response.Response`
9538
9789
 
9539
9790
  :example:
9540
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_attribute_tags.py.html>`__ to see an example of how to use list_attribute_tags API.
9791
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_attribute_tags.py.html>`__ to see an example of how to use list_attribute_tags API.
9541
9792
  """
9542
9793
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9543
9794
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'attributeKey']
@@ -9752,9 +10003,10 @@ class DataCatalogClient(object):
9752
10003
  Allowed values are: "key", "displayName", "description", "entityKey", "lifecycleState", "timeCreated", "externalDataType", "externalKey", "length", "precision", "scale", "isNullable", "uri", "path", "minCollectionCount", "maxCollectionCount", "datatypeEntityKey", "externalDatatypeEntityKey", "parentAttributeKey", "externalParentAttributeKey", "position", "typeKey"
9753
10004
 
9754
10005
  :param str sort_by: (optional)
9755
- The field to sort by. Only one sort order may be provided. Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. Default order for POSITION is ascending. If no value is specified POSITION is default.
10006
+ The field to sort by. Only one sort order may be provided. DISPLAYORBUSINESSNAME considers businessName of a given object if set, else its displayName is used.
10007
+ Default sort order for TIMECREATED is descending and default sort order for DISPLAYNAME, POSITION and DISPLAYORBUSINESSNAME is ascending. If no order is specified, POSITION is the default.
9756
10008
 
9757
- Allowed values are: "TIMECREATED", "DISPLAYNAME", "POSITION"
10009
+ Allowed values are: "TIMECREATED", "DISPLAYNAME", "POSITION", "DISPLAYORBUSINESSNAME"
9758
10010
 
9759
10011
  :param str sort_order: (optional)
9760
10012
  The sort order to use, either 'asc' or 'desc'.
@@ -9786,7 +10038,7 @@ class DataCatalogClient(object):
9786
10038
  :rtype: :class:`~oci.response.Response`
9787
10039
 
9788
10040
  :example:
9789
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_attributes.py.html>`__ to see an example of how to use list_attributes API.
10041
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_attributes.py.html>`__ to see an example of how to use list_attributes API.
9790
10042
  """
9791
10043
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9792
10044
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -9857,7 +10109,7 @@ class DataCatalogClient(object):
9857
10109
  )
9858
10110
 
9859
10111
  if 'sort_by' in kwargs:
9860
- sort_by_allowed_values = ["TIMECREATED", "DISPLAYNAME", "POSITION"]
10112
+ sort_by_allowed_values = ["TIMECREATED", "DISPLAYNAME", "POSITION", "DISPLAYORBUSINESSNAME"]
9861
10113
  if kwargs['sort_by'] not in sort_by_allowed_values:
9862
10114
  raise ValueError(
9863
10115
  "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values)
@@ -9991,7 +10243,7 @@ class DataCatalogClient(object):
9991
10243
  :rtype: :class:`~oci.response.Response`
9992
10244
 
9993
10245
  :example:
9994
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_catalog_private_endpoints.py.html>`__ to see an example of how to use list_catalog_private_endpoints API.
10246
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_catalog_private_endpoints.py.html>`__ to see an example of how to use list_catalog_private_endpoints API.
9995
10247
  """
9996
10248
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9997
10249
  required_arguments = ['compartmentId']
@@ -10141,7 +10393,7 @@ class DataCatalogClient(object):
10141
10393
  :rtype: :class:`~oci.response.Response`
10142
10394
 
10143
10395
  :example:
10144
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_catalogs.py.html>`__ to see an example of how to use list_catalogs API.
10396
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_catalogs.py.html>`__ to see an example of how to use list_catalogs API.
10145
10397
  """
10146
10398
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10147
10399
  required_arguments = ['compartmentId']
@@ -10331,7 +10583,7 @@ class DataCatalogClient(object):
10331
10583
  :rtype: :class:`~oci.response.Response`
10332
10584
 
10333
10585
  :example:
10334
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_connections.py.html>`__ to see an example of how to use list_connections API.
10586
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_connections.py.html>`__ to see an example of how to use list_connections API.
10335
10587
  """
10336
10588
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10337
10589
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -10558,7 +10810,7 @@ class DataCatalogClient(object):
10558
10810
  :rtype: :class:`~oci.response.Response`
10559
10811
 
10560
10812
  :example:
10561
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_custom_properties.py.html>`__ to see an example of how to use list_custom_properties API.
10813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_custom_properties.py.html>`__ to see an example of how to use list_custom_properties API.
10562
10814
  """
10563
10815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10564
10816
  required_arguments = ['catalogId', 'namespaceId']
@@ -10782,7 +11034,7 @@ class DataCatalogClient(object):
10782
11034
  :rtype: :class:`~oci.response.Response`
10783
11035
 
10784
11036
  :example:
10785
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_data_asset_tags.py.html>`__ to see an example of how to use list_data_asset_tags API.
11037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_data_asset_tags.py.html>`__ to see an example of how to use list_data_asset_tags API.
10786
11038
  """
10787
11039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10788
11040
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -10994,7 +11246,7 @@ class DataCatalogClient(object):
10994
11246
  :rtype: :class:`~oci.response.Response`
10995
11247
 
10996
11248
  :example:
10997
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_data_assets.py.html>`__ to see an example of how to use list_data_assets API.
11249
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_data_assets.py.html>`__ to see an example of how to use list_data_assets API.
10998
11250
  """
10999
11251
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11000
11252
  required_arguments = ['catalogId']
@@ -11193,7 +11445,7 @@ class DataCatalogClient(object):
11193
11445
  :rtype: :class:`~oci.response.Response`
11194
11446
 
11195
11447
  :example:
11196
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_derived_logical_entities.py.html>`__ to see an example of how to use list_derived_logical_entities API.
11448
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_derived_logical_entities.py.html>`__ to see an example of how to use list_derived_logical_entities API.
11197
11449
  """
11198
11450
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11199
11451
  required_arguments = ['catalogId', 'patternKey']
@@ -11391,9 +11643,10 @@ class DataCatalogClient(object):
11391
11643
  Allowed values are: "key", "displayName", "description", "dataAssetKey", "timeCreated", "timeUpdated", "updatedById", "lifecycleState", "folderKey", "folderName", "externalKey", "path", "uri"
11392
11644
 
11393
11645
  :param str sort_by: (optional)
11394
- The field to sort by. Only one sort order may be provided. Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. If no value is specified TIMECREATED is default.
11646
+ The field to sort by. Only one sort order may be provided. DISPLAYORBUSINESSNAME considers businessName of a given object if set, else its displayName is used.
11647
+ Default sort order for TIMECREATED is descending and default sort order for DISPLAYNAME and DISPLAYORBUSINESSNAME is ascending. If no order is specified, TIMECREATED is the default.
11395
11648
 
11396
- Allowed values are: "TIMECREATED", "DISPLAYNAME"
11649
+ Allowed values are: "TIMECREATED", "DISPLAYNAME", "DISPLAYORBUSINESSNAME"
11397
11650
 
11398
11651
  :param str sort_order: (optional)
11399
11652
  The sort order to use, either 'asc' or 'desc'.
@@ -11425,7 +11678,7 @@ class DataCatalogClient(object):
11425
11678
  :rtype: :class:`~oci.response.Response`
11426
11679
 
11427
11680
  :example:
11428
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_entities.py.html>`__ to see an example of how to use list_entities API.
11681
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_entities.py.html>`__ to see an example of how to use list_entities API.
11429
11682
  """
11430
11683
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11431
11684
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -11504,7 +11757,7 @@ class DataCatalogClient(object):
11504
11757
  )
11505
11758
 
11506
11759
  if 'sort_by' in kwargs:
11507
- sort_by_allowed_values = ["TIMECREATED", "DISPLAYNAME"]
11760
+ sort_by_allowed_values = ["TIMECREATED", "DISPLAYNAME", "DISPLAYORBUSINESSNAME"]
11508
11761
  if kwargs['sort_by'] not in sort_by_allowed_values:
11509
11762
  raise ValueError(
11510
11763
  "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values)
@@ -11665,7 +11918,7 @@ class DataCatalogClient(object):
11665
11918
  :rtype: :class:`~oci.response.Response`
11666
11919
 
11667
11920
  :example:
11668
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_entity_tags.py.html>`__ to see an example of how to use list_entity_tags API.
11921
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_entity_tags.py.html>`__ to see an example of how to use list_entity_tags API.
11669
11922
  """
11670
11923
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11671
11924
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -11871,7 +12124,7 @@ class DataCatalogClient(object):
11871
12124
  :rtype: :class:`~oci.response.Response`
11872
12125
 
11873
12126
  :example:
11874
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_folder_tags.py.html>`__ to see an example of how to use list_folder_tags API.
12127
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_folder_tags.py.html>`__ to see an example of how to use list_folder_tags API.
11875
12128
  """
11876
12129
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11877
12130
  required_arguments = ['catalogId', 'dataAssetKey', 'folderKey']
@@ -12071,10 +12324,14 @@ class DataCatalogClient(object):
12071
12324
 
12072
12325
  Allowed values are: "key", "displayName", "description", "parentFolderKey", "path", "dataAssetKey", "externalKey", "timeExternal", "timeCreated", "lifecycleState", "uri"
12073
12326
 
12327
+ :param str type_key: (optional)
12328
+ The key of the object type.
12329
+
12074
12330
  :param str sort_by: (optional)
12075
- The field to sort by. Only one sort order may be provided. Default order for TIMECREATED is descending. Default order for DISPLAYNAME is ascending. If no value is specified TIMECREATED is default.
12331
+ The field to sort by. Only one sort order may be provided. DISPLAYORBUSINESSNAME considers businessName of a given object if set, else its displayName is used.
12332
+ Default sort order for TIMECREATED is descending and default sort order for DISPLAYNAME and DISPLAYORBUSINESSNAME is ascending. If no order is specified, TIMECREATED is the default.
12076
12333
 
12077
- Allowed values are: "TIMECREATED", "DISPLAYNAME"
12334
+ Allowed values are: "TIMECREATED", "DISPLAYNAME", "DISPLAYORBUSINESSNAME"
12078
12335
 
12079
12336
  :param str sort_order: (optional)
12080
12337
  The sort order to use, either 'asc' or 'desc'.
@@ -12106,7 +12363,7 @@ class DataCatalogClient(object):
12106
12363
  :rtype: :class:`~oci.response.Response`
12107
12364
 
12108
12365
  :example:
12109
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_folders.py.html>`__ to see an example of how to use list_folders API.
12366
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_folders.py.html>`__ to see an example of how to use list_folders API.
12110
12367
  """
12111
12368
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12112
12369
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -12134,6 +12391,7 @@ class DataCatalogClient(object):
12134
12391
  "harvest_status",
12135
12392
  "last_job_key",
12136
12393
  "fields",
12394
+ "type_key",
12137
12395
  "sort_by",
12138
12396
  "sort_order",
12139
12397
  "limit",
@@ -12179,7 +12437,7 @@ class DataCatalogClient(object):
12179
12437
  )
12180
12438
 
12181
12439
  if 'sort_by' in kwargs:
12182
- sort_by_allowed_values = ["TIMECREATED", "DISPLAYNAME"]
12440
+ sort_by_allowed_values = ["TIMECREATED", "DISPLAYNAME", "DISPLAYORBUSINESSNAME"]
12183
12441
  if kwargs['sort_by'] not in sort_by_allowed_values:
12184
12442
  raise ValueError(
12185
12443
  "Invalid value for `sort_by`, must be one of {0}".format(sort_by_allowed_values)
@@ -12208,6 +12466,7 @@ class DataCatalogClient(object):
12208
12466
  "harvestStatus": kwargs.get("harvest_status", missing),
12209
12467
  "lastJobKey": kwargs.get("last_job_key", missing),
12210
12468
  "fields": self.base_client.generate_collection_format_param(kwargs.get("fields", missing), 'multi'),
12469
+ "typeKey": kwargs.get("type_key", missing),
12211
12470
  "sortBy": kwargs.get("sort_by", missing),
12212
12471
  "sortOrder": kwargs.get("sort_order", missing),
12213
12472
  "limit": kwargs.get("limit", missing),
@@ -12335,7 +12594,7 @@ class DataCatalogClient(object):
12335
12594
  :rtype: :class:`~oci.response.Response`
12336
12595
 
12337
12596
  :example:
12338
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_glossaries.py.html>`__ to see an example of how to use list_glossaries API.
12597
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_glossaries.py.html>`__ to see an example of how to use list_glossaries API.
12339
12598
  """
12340
12599
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12341
12600
  required_arguments = ['catalogId']
@@ -12494,7 +12753,7 @@ class DataCatalogClient(object):
12494
12753
  :param str job_type: (optional)
12495
12754
  Job type.
12496
12755
 
12497
- Allowed values are: "HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET"
12756
+ Allowed values are: "HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET", "CREATE_SCAN_PROXY", "ASYNC_EXPORT_GLOSSARY"
12498
12757
 
12499
12758
  :param bool is_incremental: (optional)
12500
12759
  Whether job definition is an incremental harvest (true) or a full harvest (false).
@@ -12502,6 +12761,9 @@ class DataCatalogClient(object):
12502
12761
  :param str data_asset_key: (optional)
12503
12762
  Unique data asset key.
12504
12763
 
12764
+ :param str glossary_key: (optional)
12765
+ Unique glossary key.
12766
+
12505
12767
  :param str connection_key: (optional)
12506
12768
  Unique connection key.
12507
12769
 
@@ -12564,7 +12826,7 @@ class DataCatalogClient(object):
12564
12826
  :rtype: :class:`~oci.response.Response`
12565
12827
 
12566
12828
  :example:
12567
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_job_definitions.py.html>`__ to see an example of how to use list_job_definitions API.
12829
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_job_definitions.py.html>`__ to see an example of how to use list_job_definitions API.
12568
12830
  """
12569
12831
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12570
12832
  required_arguments = ['catalogId']
@@ -12584,6 +12846,7 @@ class DataCatalogClient(object):
12584
12846
  "job_type",
12585
12847
  "is_incremental",
12586
12848
  "data_asset_key",
12849
+ "glossary_key",
12587
12850
  "connection_key",
12588
12851
  "time_created",
12589
12852
  "time_updated",
@@ -12627,7 +12890,7 @@ class DataCatalogClient(object):
12627
12890
  )
12628
12891
 
12629
12892
  if 'job_type' in kwargs:
12630
- job_type_allowed_values = ["HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET"]
12893
+ job_type_allowed_values = ["HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET", "CREATE_SCAN_PROXY", "ASYNC_EXPORT_GLOSSARY"]
12631
12894
  if kwargs['job_type'] not in job_type_allowed_values:
12632
12895
  raise ValueError(
12633
12896
  "Invalid value for `job_type`, must be one of {0}".format(job_type_allowed_values)
@@ -12663,6 +12926,7 @@ class DataCatalogClient(object):
12663
12926
  "jobType": kwargs.get("job_type", missing),
12664
12927
  "isIncremental": kwargs.get("is_incremental", missing),
12665
12928
  "dataAssetKey": kwargs.get("data_asset_key", missing),
12929
+ "glossaryKey": kwargs.get("glossary_key", missing),
12666
12930
  "connectionKey": kwargs.get("connection_key", missing),
12667
12931
  "timeCreated": kwargs.get("time_created", missing),
12668
12932
  "timeUpdated": kwargs.get("time_updated", missing),
@@ -12755,7 +13019,7 @@ class DataCatalogClient(object):
12755
13019
  :param str job_type: (optional)
12756
13020
  Job type.
12757
13021
 
12758
- Allowed values are: "HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET"
13022
+ Allowed values are: "HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET", "CREATE_SCAN_PROXY", "ASYNC_EXPORT_GLOSSARY"
12759
13023
 
12760
13024
  :param str sub_type: (optional)
12761
13025
  Sub-type of this job execution.
@@ -12833,7 +13097,7 @@ class DataCatalogClient(object):
12833
13097
  :rtype: :class:`~oci.response.Response`
12834
13098
 
12835
13099
  :example:
12836
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
13100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_job_executions.py.html>`__ to see an example of how to use list_job_executions API.
12837
13101
  """
12838
13102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12839
13103
  required_arguments = ['catalogId', 'jobKey']
@@ -12893,7 +13157,7 @@ class DataCatalogClient(object):
12893
13157
  )
12894
13158
 
12895
13159
  if 'job_type' in kwargs:
12896
- job_type_allowed_values = ["HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET"]
13160
+ job_type_allowed_values = ["HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET", "CREATE_SCAN_PROXY", "ASYNC_EXPORT_GLOSSARY"]
12897
13161
  if kwargs['job_type'] not in job_type_allowed_values:
12898
13162
  raise ValueError(
12899
13163
  "Invalid value for `job_type`, must be one of {0}".format(job_type_allowed_values)
@@ -13067,7 +13331,7 @@ class DataCatalogClient(object):
13067
13331
  :rtype: :class:`~oci.response.Response`
13068
13332
 
13069
13333
  :example:
13070
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_job_logs.py.html>`__ to see an example of how to use list_job_logs API.
13334
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_job_logs.py.html>`__ to see an example of how to use list_job_logs API.
13071
13335
  """
13072
13336
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13073
13337
  required_arguments = ['catalogId', 'jobKey', 'jobExecutionKey']
@@ -13296,7 +13560,7 @@ class DataCatalogClient(object):
13296
13560
  :rtype: :class:`~oci.response.Response`
13297
13561
 
13298
13562
  :example:
13299
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_job_metrics.py.html>`__ to see an example of how to use list_job_metrics API.
13563
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_job_metrics.py.html>`__ to see an example of how to use list_job_metrics API.
13300
13564
  """
13301
13565
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13302
13566
  required_arguments = ['catalogId', 'jobKey', 'jobExecutionKey']
@@ -13471,7 +13735,7 @@ class DataCatalogClient(object):
13471
13735
  :param str job_type: (optional)
13472
13736
  Job type.
13473
13737
 
13474
- Allowed values are: "HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET"
13738
+ Allowed values are: "HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET", "CREATE_SCAN_PROXY", "ASYNC_EXPORT_GLOSSARY"
13475
13739
 
13476
13740
  :param str job_definition_key: (optional)
13477
13741
  Unique job definition key.
@@ -13479,9 +13743,13 @@ class DataCatalogClient(object):
13479
13743
  :param str data_asset_key: (optional)
13480
13744
  Unique data asset key.
13481
13745
 
13746
+ :param str glossary_key: (optional)
13747
+ Unique glossary key.
13748
+
13482
13749
  :param str schedule_cron_expression: (optional)
13483
13750
  Interval on which the job will be run. Value is specified as a cron-supported time specification \"nickname\".
13484
13751
  The following subset of those is supported: @monthly, @weekly, @daily, @hourly.
13752
+ For metastore sync, an additional option @default is supported, which will schedule jobs at a more granular frequency.
13485
13753
 
13486
13754
  :param datetime time_schedule_begin: (optional)
13487
13755
  Date that the schedule should be operational. An `RFC3339`__ formatted datetime string.
@@ -13550,7 +13818,7 @@ class DataCatalogClient(object):
13550
13818
  :rtype: :class:`~oci.response.Response`
13551
13819
 
13552
13820
  :example:
13553
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
13821
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_jobs.py.html>`__ to see an example of how to use list_jobs API.
13554
13822
  """
13555
13823
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13556
13824
  required_arguments = ['catalogId']
@@ -13573,6 +13841,7 @@ class DataCatalogClient(object):
13573
13841
  "job_type",
13574
13842
  "job_definition_key",
13575
13843
  "data_asset_key",
13844
+ "glossary_key",
13576
13845
  "schedule_cron_expression",
13577
13846
  "time_schedule_begin",
13578
13847
  "time_schedule_end",
@@ -13610,7 +13879,7 @@ class DataCatalogClient(object):
13610
13879
  )
13611
13880
 
13612
13881
  if 'job_type' in kwargs:
13613
- job_type_allowed_values = ["HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET"]
13882
+ job_type_allowed_values = ["HARVEST", "PROFILING", "SAMPLING", "PREVIEW", "IMPORT", "EXPORT", "IMPORT_GLOSSARY", "EXPORT_GLOSSARY", "INTERNAL", "PURGE", "IMMEDIATE", "SCHEDULED", "IMMEDIATE_EXECUTION", "SCHEDULED_EXECUTION", "SCHEDULED_EXECUTION_INSTANCE", "ASYNC_DELETE", "IMPORT_DATA_ASSET", "CREATE_SCAN_PROXY", "ASYNC_EXPORT_GLOSSARY"]
13614
13883
  if kwargs['job_type'] not in job_type_allowed_values:
13615
13884
  raise ValueError(
13616
13885
  "Invalid value for `job_type`, must be one of {0}".format(job_type_allowed_values)
@@ -13656,6 +13925,7 @@ class DataCatalogClient(object):
13656
13925
  "jobType": kwargs.get("job_type", missing),
13657
13926
  "jobDefinitionKey": kwargs.get("job_definition_key", missing),
13658
13927
  "dataAssetKey": kwargs.get("data_asset_key", missing),
13928
+ "glossaryKey": kwargs.get("glossary_key", missing),
13659
13929
  "scheduleCronExpression": kwargs.get("schedule_cron_expression", missing),
13660
13930
  "timeScheduleBegin": kwargs.get("time_schedule_begin", missing),
13661
13931
  "timeScheduleEnd": kwargs.get("time_schedule_end", missing),
@@ -13765,7 +14035,7 @@ class DataCatalogClient(object):
13765
14035
  :rtype: :class:`~oci.response.Response`
13766
14036
 
13767
14037
  :example:
13768
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_metastores.py.html>`__ to see an example of how to use list_metastores API.
14038
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_metastores.py.html>`__ to see an example of how to use list_metastores API.
13769
14039
  """
13770
14040
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13771
14041
  required_arguments = ['compartmentId']
@@ -13941,7 +14211,7 @@ class DataCatalogClient(object):
13941
14211
  :rtype: :class:`~oci.response.Response`
13942
14212
 
13943
14213
  :example:
13944
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_namespaces.py.html>`__ to see an example of how to use list_namespaces API.
14214
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_namespaces.py.html>`__ to see an example of how to use list_namespaces API.
13945
14215
  """
13946
14216
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13947
14217
  required_arguments = ['catalogId']
@@ -14148,7 +14418,7 @@ class DataCatalogClient(object):
14148
14418
  :rtype: :class:`~oci.response.Response`
14149
14419
 
14150
14420
  :example:
14151
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_patterns.py.html>`__ to see an example of how to use list_patterns API.
14421
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_patterns.py.html>`__ to see an example of how to use list_patterns API.
14152
14422
  """
14153
14423
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14154
14424
  required_arguments = ['catalogId']
@@ -14374,7 +14644,7 @@ class DataCatalogClient(object):
14374
14644
  :rtype: :class:`~oci.response.Response`
14375
14645
 
14376
14646
  :example:
14377
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_rules.py.html>`__ to see an example of how to use list_rules API.
14647
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_rules.py.html>`__ to see an example of how to use list_rules API.
14378
14648
  """
14379
14649
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14380
14650
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -14587,7 +14857,7 @@ class DataCatalogClient(object):
14587
14857
  :rtype: :class:`~oci.response.Response`
14588
14858
 
14589
14859
  :example:
14590
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_tags.py.html>`__ to see an example of how to use list_tags API.
14860
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_tags.py.html>`__ to see an example of how to use list_tags API.
14591
14861
  """
14592
14862
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14593
14863
  required_arguments = ['catalogId']
@@ -14776,7 +15046,7 @@ class DataCatalogClient(object):
14776
15046
  :rtype: :class:`~oci.response.Response`
14777
15047
 
14778
15048
  :example:
14779
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_term_relationships.py.html>`__ to see an example of how to use list_term_relationships API.
15049
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_term_relationships.py.html>`__ to see an example of how to use list_term_relationships API.
14780
15050
  """
14781
15051
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14782
15052
  required_arguments = ['catalogId', 'glossaryKey', 'termKey']
@@ -14978,7 +15248,7 @@ class DataCatalogClient(object):
14978
15248
  :rtype: :class:`~oci.response.Response`
14979
15249
 
14980
15250
  :example:
14981
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_terms.py.html>`__ to see an example of how to use list_terms API.
15251
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_terms.py.html>`__ to see an example of how to use list_terms API.
14982
15252
  """
14983
15253
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14984
15254
  required_arguments = ['catalogId', 'glossaryKey']
@@ -15187,7 +15457,7 @@ class DataCatalogClient(object):
15187
15457
  :rtype: :class:`~oci.response.Response`
15188
15458
 
15189
15459
  :example:
15190
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_types.py.html>`__ to see an example of how to use list_types API.
15460
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_types.py.html>`__ to see an example of how to use list_types API.
15191
15461
  """
15192
15462
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15193
15463
  required_arguments = ['catalogId']
@@ -15360,7 +15630,7 @@ class DataCatalogClient(object):
15360
15630
  :rtype: :class:`~oci.response.Response`
15361
15631
 
15362
15632
  :example:
15363
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
15633
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
15364
15634
  """
15365
15635
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15366
15636
  required_arguments = ['workRequestId']
@@ -15502,7 +15772,7 @@ class DataCatalogClient(object):
15502
15772
  :rtype: :class:`~oci.response.Response`
15503
15773
 
15504
15774
  :example:
15505
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
15775
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
15506
15776
  """
15507
15777
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15508
15778
  required_arguments = ['workRequestId']
@@ -15634,7 +15904,7 @@ class DataCatalogClient(object):
15634
15904
  :rtype: :class:`~oci.response.Response`
15635
15905
 
15636
15906
  :example:
15637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
15907
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
15638
15908
  """
15639
15909
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15640
15910
  required_arguments = ['compartmentId']
@@ -15747,7 +16017,7 @@ class DataCatalogClient(object):
15747
16017
  :rtype: :class:`~oci.response.Response`
15748
16018
 
15749
16019
  :example:
15750
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/object_stats.py.html>`__ to see an example of how to use object_stats API.
16020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/object_stats.py.html>`__ to see an example of how to use object_stats API.
15751
16021
  """
15752
16022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15753
16023
  required_arguments = ['catalogId']
@@ -15889,7 +16159,7 @@ class DataCatalogClient(object):
15889
16159
  :rtype: :class:`~oci.response.Response`
15890
16160
 
15891
16161
  :example:
15892
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/parse_connection.py.html>`__ to see an example of how to use parse_connection API.
16162
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/parse_connection.py.html>`__ to see an example of how to use parse_connection API.
15893
16163
  """
15894
16164
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15895
16165
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -16010,7 +16280,7 @@ class DataCatalogClient(object):
16010
16280
  :rtype: :class:`~oci.response.Response`
16011
16281
 
16012
16282
  :example:
16013
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/process_recommendation.py.html>`__ to see an example of how to use process_recommendation API.
16283
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/process_recommendation.py.html>`__ to see an example of how to use process_recommendation API.
16014
16284
  """
16015
16285
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16016
16286
  required_arguments = ['catalogId']
@@ -16130,7 +16400,7 @@ class DataCatalogClient(object):
16130
16400
  :rtype: :class:`~oci.response.Response`
16131
16401
 
16132
16402
  :example:
16133
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/recommendations.py.html>`__ to see an example of how to use recommendations API.
16403
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/recommendations.py.html>`__ to see an example of how to use recommendations API.
16134
16404
  """
16135
16405
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16136
16406
  required_arguments = ['catalogId', 'recommendationType', 'sourceObjectKey', 'sourceObjectType']
@@ -16277,7 +16547,7 @@ class DataCatalogClient(object):
16277
16547
  :rtype: :class:`~oci.response.Response`
16278
16548
 
16279
16549
  :example:
16280
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/remove_data_selector_patterns.py.html>`__ to see an example of how to use remove_data_selector_patterns API.
16550
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/remove_data_selector_patterns.py.html>`__ to see an example of how to use remove_data_selector_patterns API.
16281
16551
  """
16282
16552
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16283
16553
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -16416,7 +16686,7 @@ class DataCatalogClient(object):
16416
16686
  :rtype: :class:`~oci.response.Response`
16417
16687
 
16418
16688
  :example:
16419
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/search_criteria.py.html>`__ to see an example of how to use search_criteria API.
16689
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/search_criteria.py.html>`__ to see an example of how to use search_criteria API.
16420
16690
  """
16421
16691
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16422
16692
  required_arguments = ['catalogId']
@@ -16571,7 +16841,7 @@ class DataCatalogClient(object):
16571
16841
  :rtype: :class:`~oci.response.Response`
16572
16842
 
16573
16843
  :example:
16574
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/suggest_matches.py.html>`__ to see an example of how to use suggest_matches API.
16844
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/suggest_matches.py.html>`__ to see an example of how to use suggest_matches API.
16575
16845
  """
16576
16846
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16577
16847
  required_arguments = ['catalogId', 'inputText']
@@ -16698,7 +16968,7 @@ class DataCatalogClient(object):
16698
16968
  :rtype: :class:`~oci.response.Response`
16699
16969
 
16700
16970
  :example:
16701
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/synchronous_export_data_asset.py.html>`__ to see an example of how to use synchronous_export_data_asset API.
16971
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/synchronous_export_data_asset.py.html>`__ to see an example of how to use synchronous_export_data_asset API.
16702
16972
  """
16703
16973
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16704
16974
  required_arguments = ['catalogId', 'dataAssetKey', 'exportType']
@@ -16827,7 +17097,7 @@ class DataCatalogClient(object):
16827
17097
  :rtype: :class:`~oci.response.Response`
16828
17098
 
16829
17099
  :example:
16830
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/test_connection.py.html>`__ to see an example of how to use test_connection API.
17100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/test_connection.py.html>`__ to see an example of how to use test_connection API.
16831
17101
  """
16832
17102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16833
17103
  required_arguments = ['catalogId', 'dataAssetKey', 'connectionKey']
@@ -16949,7 +17219,7 @@ class DataCatalogClient(object):
16949
17219
  :rtype: :class:`~oci.response.Response`
16950
17220
 
16951
17221
  :example:
16952
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_attribute.py.html>`__ to see an example of how to use update_attribute API.
17222
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_attribute.py.html>`__ to see an example of how to use update_attribute API.
16953
17223
  """
16954
17224
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16955
17225
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey', 'attributeKey']
@@ -17062,7 +17332,7 @@ class DataCatalogClient(object):
17062
17332
  :rtype: :class:`~oci.response.Response`
17063
17333
 
17064
17334
  :example:
17065
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_catalog.py.html>`__ to see an example of how to use update_catalog API.
17335
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_catalog.py.html>`__ to see an example of how to use update_catalog API.
17066
17336
  """
17067
17337
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17068
17338
  required_arguments = ['catalogId']
@@ -17172,7 +17442,7 @@ class DataCatalogClient(object):
17172
17442
  :rtype: :class:`~oci.response.Response`
17173
17443
 
17174
17444
  :example:
17175
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_catalog_private_endpoint.py.html>`__ to see an example of how to use update_catalog_private_endpoint API.
17445
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_catalog_private_endpoint.py.html>`__ to see an example of how to use update_catalog_private_endpoint API.
17176
17446
  """
17177
17447
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17178
17448
  required_arguments = ['catalogPrivateEndpointId']
@@ -17286,7 +17556,7 @@ class DataCatalogClient(object):
17286
17556
  :rtype: :class:`~oci.response.Response`
17287
17557
 
17288
17558
  :example:
17289
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_connection.py.html>`__ to see an example of how to use update_connection API.
17559
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_connection.py.html>`__ to see an example of how to use update_connection API.
17290
17560
  """
17291
17561
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17292
17562
  required_arguments = ['catalogId', 'dataAssetKey', 'connectionKey']
@@ -17404,7 +17674,7 @@ class DataCatalogClient(object):
17404
17674
  :rtype: :class:`~oci.response.Response`
17405
17675
 
17406
17676
  :example:
17407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_custom_property.py.html>`__ to see an example of how to use update_custom_property API.
17677
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_custom_property.py.html>`__ to see an example of how to use update_custom_property API.
17408
17678
  """
17409
17679
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17410
17680
  required_arguments = ['catalogId', 'namespaceId', 'customPropertyKey']
@@ -17519,7 +17789,7 @@ class DataCatalogClient(object):
17519
17789
  :rtype: :class:`~oci.response.Response`
17520
17790
 
17521
17791
  :example:
17522
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_data_asset.py.html>`__ to see an example of how to use update_data_asset API.
17792
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_data_asset.py.html>`__ to see an example of how to use update_data_asset API.
17523
17793
  """
17524
17794
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17525
17795
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -17636,7 +17906,7 @@ class DataCatalogClient(object):
17636
17906
  :rtype: :class:`~oci.response.Response`
17637
17907
 
17638
17908
  :example:
17639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_entity.py.html>`__ to see an example of how to use update_entity API.
17909
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_entity.py.html>`__ to see an example of how to use update_entity API.
17640
17910
  """
17641
17911
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17642
17912
  required_arguments = ['catalogId', 'dataAssetKey', 'entityKey']
@@ -17754,7 +18024,7 @@ class DataCatalogClient(object):
17754
18024
  :rtype: :class:`~oci.response.Response`
17755
18025
 
17756
18026
  :example:
17757
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_folder.py.html>`__ to see an example of how to use update_folder API.
18027
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_folder.py.html>`__ to see an example of how to use update_folder API.
17758
18028
  """
17759
18029
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17760
18030
  required_arguments = ['catalogId', 'dataAssetKey', 'folderKey']
@@ -17869,7 +18139,7 @@ class DataCatalogClient(object):
17869
18139
  :rtype: :class:`~oci.response.Response`
17870
18140
 
17871
18141
  :example:
17872
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_glossary.py.html>`__ to see an example of how to use update_glossary API.
18142
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_glossary.py.html>`__ to see an example of how to use update_glossary API.
17873
18143
  """
17874
18144
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17875
18145
  required_arguments = ['catalogId', 'glossaryKey']
@@ -17983,7 +18253,7 @@ class DataCatalogClient(object):
17983
18253
  :rtype: :class:`~oci.response.Response`
17984
18254
 
17985
18255
  :example:
17986
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_job.py.html>`__ to see an example of how to use update_job API.
18256
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_job.py.html>`__ to see an example of how to use update_job API.
17987
18257
  """
17988
18258
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17989
18259
  required_arguments = ['catalogId', 'jobKey']
@@ -18097,7 +18367,7 @@ class DataCatalogClient(object):
18097
18367
  :rtype: :class:`~oci.response.Response`
18098
18368
 
18099
18369
  :example:
18100
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_job_definition.py.html>`__ to see an example of how to use update_job_definition API.
18370
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_job_definition.py.html>`__ to see an example of how to use update_job_definition API.
18101
18371
  """
18102
18372
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18103
18373
  required_arguments = ['catalogId', 'jobDefinitionKey']
@@ -18208,7 +18478,7 @@ class DataCatalogClient(object):
18208
18478
  :rtype: :class:`~oci.response.Response`
18209
18479
 
18210
18480
  :example:
18211
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_metastore.py.html>`__ to see an example of how to use update_metastore API.
18481
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_metastore.py.html>`__ to see an example of how to use update_metastore API.
18212
18482
  """
18213
18483
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18214
18484
  required_arguments = ['metastoreId']
@@ -18321,7 +18591,7 @@ class DataCatalogClient(object):
18321
18591
  :rtype: :class:`~oci.response.Response`
18322
18592
 
18323
18593
  :example:
18324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_namespace.py.html>`__ to see an example of how to use update_namespace API.
18594
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_namespace.py.html>`__ to see an example of how to use update_namespace API.
18325
18595
  """
18326
18596
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18327
18597
  required_arguments = ['catalogId', 'namespaceId']
@@ -18435,7 +18705,7 @@ class DataCatalogClient(object):
18435
18705
  :rtype: :class:`~oci.response.Response`
18436
18706
 
18437
18707
  :example:
18438
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_pattern.py.html>`__ to see an example of how to use update_pattern API.
18708
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_pattern.py.html>`__ to see an example of how to use update_pattern API.
18439
18709
  """
18440
18710
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18441
18711
  required_arguments = ['catalogId', 'patternKey']
@@ -18552,7 +18822,7 @@ class DataCatalogClient(object):
18552
18822
  :rtype: :class:`~oci.response.Response`
18553
18823
 
18554
18824
  :example:
18555
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_term.py.html>`__ to see an example of how to use update_term API.
18825
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_term.py.html>`__ to see an example of how to use update_term API.
18556
18826
  """
18557
18827
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18558
18828
  required_arguments = ['catalogId', 'glossaryKey', 'termKey']
@@ -18673,7 +18943,7 @@ class DataCatalogClient(object):
18673
18943
  :rtype: :class:`~oci.response.Response`
18674
18944
 
18675
18945
  :example:
18676
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/update_term_relationship.py.html>`__ to see an example of how to use update_term_relationship API.
18946
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/update_term_relationship.py.html>`__ to see an example of how to use update_term_relationship API.
18677
18947
  """
18678
18948
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18679
18949
  required_arguments = ['catalogId', 'glossaryKey', 'termKey', 'termRelationshipKey']
@@ -18799,7 +19069,7 @@ class DataCatalogClient(object):
18799
19069
  :rtype: :class:`~oci.response.Response`
18800
19070
 
18801
19071
  :example:
18802
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/upload_credentials.py.html>`__ to see an example of how to use upload_credentials API.
19072
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/upload_credentials.py.html>`__ to see an example of how to use upload_credentials API.
18803
19073
  """
18804
19074
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18805
19075
  required_arguments = ['catalogId', 'dataAssetKey', 'connectionKey']
@@ -18920,7 +19190,7 @@ class DataCatalogClient(object):
18920
19190
  :rtype: :class:`~oci.response.Response`
18921
19191
 
18922
19192
  :example:
18923
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/users.py.html>`__ to see an example of how to use users API.
19193
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/users.py.html>`__ to see an example of how to use users API.
18924
19194
  """
18925
19195
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18926
19196
  required_arguments = ['catalogId']
@@ -19059,7 +19329,7 @@ class DataCatalogClient(object):
19059
19329
  :rtype: :class:`~oci.response.Response`
19060
19330
 
19061
19331
  :example:
19062
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/validate_connection.py.html>`__ to see an example of how to use validate_connection API.
19332
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/validate_connection.py.html>`__ to see an example of how to use validate_connection API.
19063
19333
  """
19064
19334
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19065
19335
  required_arguments = ['catalogId', 'dataAssetKey']
@@ -19176,7 +19446,7 @@ class DataCatalogClient(object):
19176
19446
  :rtype: :class:`~oci.response.Response`
19177
19447
 
19178
19448
  :example:
19179
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/datacatalog/validate_pattern.py.html>`__ to see an example of how to use validate_pattern API.
19449
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/datacatalog/validate_pattern.py.html>`__ to see an example of how to use validate_pattern API.
19180
19450
  """
19181
19451
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19182
19452
  required_arguments = ['catalogId', 'patternKey']