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
@@ -157,7 +157,7 @@ class CloudGuardClient(object):
157
157
  :rtype: :class:`~oci.response.Response`
158
158
 
159
159
  :example:
160
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/add_compartment.py.html>`__ to see an example of how to use add_compartment API.
160
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/add_compartment.py.html>`__ to see an example of how to use add_compartment API.
161
161
  """
162
162
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
163
163
  required_arguments = ['securityZoneId']
@@ -267,7 +267,7 @@ class CloudGuardClient(object):
267
267
  :rtype: :class:`~oci.response.Response`
268
268
 
269
269
  :example:
270
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/cancel_work_request.py.html>`__ to see an example of how to use cancel_work_request API.
270
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/cancel_work_request.py.html>`__ to see an example of how to use cancel_work_request API.
271
271
  """
272
272
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
273
273
  required_arguments = ['workRequestId']
@@ -380,7 +380,7 @@ class CloudGuardClient(object):
380
380
  :rtype: :class:`~oci.response.Response`
381
381
 
382
382
  :example:
383
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/change_data_source_compartment.py.html>`__ to see an example of how to use change_data_source_compartment API.
383
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_data_source_compartment.py.html>`__ to see an example of how to use change_data_source_compartment API.
384
384
  """
385
385
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
386
386
  required_arguments = ['dataSourceId']
@@ -498,7 +498,7 @@ class CloudGuardClient(object):
498
498
  :rtype: :class:`~oci.response.Response`
499
499
 
500
500
  :example:
501
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/change_detector_recipe_compartment.py.html>`__ to see an example of how to use change_detector_recipe_compartment API.
501
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_detector_recipe_compartment.py.html>`__ to see an example of how to use change_detector_recipe_compartment API.
502
502
  """
503
503
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
504
504
  required_arguments = ['detectorRecipeId']
@@ -616,7 +616,7 @@ class CloudGuardClient(object):
616
616
  :rtype: :class:`~oci.response.Response`
617
617
 
618
618
  :example:
619
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/change_managed_list_compartment.py.html>`__ to see an example of how to use change_managed_list_compartment API.
619
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_managed_list_compartment.py.html>`__ to see an example of how to use change_managed_list_compartment API.
620
620
  """
621
621
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
622
622
  required_arguments = ['managedListId']
@@ -734,7 +734,7 @@ class CloudGuardClient(object):
734
734
  :rtype: :class:`~oci.response.Response`
735
735
 
736
736
  :example:
737
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/change_responder_recipe_compartment.py.html>`__ to see an example of how to use change_responder_recipe_compartment API.
737
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_responder_recipe_compartment.py.html>`__ to see an example of how to use change_responder_recipe_compartment API.
738
738
  """
739
739
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
740
740
  required_arguments = ['responderRecipeId']
@@ -852,7 +852,7 @@ class CloudGuardClient(object):
852
852
  :rtype: :class:`~oci.response.Response`
853
853
 
854
854
  :example:
855
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/change_security_recipe_compartment.py.html>`__ to see an example of how to use change_security_recipe_compartment API.
855
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_security_recipe_compartment.py.html>`__ to see an example of how to use change_security_recipe_compartment API.
856
856
  """
857
857
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
858
858
  required_arguments = ['securityRecipeId']
@@ -970,7 +970,7 @@ class CloudGuardClient(object):
970
970
  :rtype: :class:`~oci.response.Response`
971
971
 
972
972
  :example:
973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/change_security_zone_compartment.py.html>`__ to see an example of how to use change_security_zone_compartment API.
973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/change_security_zone_compartment.py.html>`__ to see an example of how to use change_security_zone_compartment API.
974
974
  """
975
975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
976
976
  required_arguments = ['securityZoneId']
@@ -1078,7 +1078,7 @@ class CloudGuardClient(object):
1078
1078
  :rtype: :class:`~oci.response.Response`
1079
1079
 
1080
1080
  :example:
1081
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_data_mask_rule.py.html>`__ to see an example of how to use create_data_mask_rule API.
1081
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_data_mask_rule.py.html>`__ to see an example of how to use create_data_mask_rule API.
1082
1082
  """
1083
1083
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1084
1084
  required_arguments = []
@@ -1174,7 +1174,7 @@ class CloudGuardClient(object):
1174
1174
  :rtype: :class:`~oci.response.Response`
1175
1175
 
1176
1176
  :example:
1177
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_data_source.py.html>`__ to see an example of how to use create_data_source API.
1177
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_data_source.py.html>`__ to see an example of how to use create_data_source API.
1178
1178
  """
1179
1179
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1180
1180
  required_arguments = []
@@ -1268,7 +1268,7 @@ class CloudGuardClient(object):
1268
1268
  :rtype: :class:`~oci.response.Response`
1269
1269
 
1270
1270
  :example:
1271
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_detector_recipe.py.html>`__ to see an example of how to use create_detector_recipe API.
1271
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_detector_recipe.py.html>`__ to see an example of how to use create_detector_recipe API.
1272
1272
  """
1273
1273
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1274
1274
  required_arguments = []
@@ -1367,7 +1367,7 @@ class CloudGuardClient(object):
1367
1367
  :rtype: :class:`~oci.response.Response`
1368
1368
 
1369
1369
  :example:
1370
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_detector_recipe_detector_rule.py.html>`__ to see an example of how to use create_detector_recipe_detector_rule API.
1370
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_detector_recipe_detector_rule.py.html>`__ to see an example of how to use create_detector_recipe_detector_rule API.
1371
1371
  """
1372
1372
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1373
1373
  required_arguments = ['detectorRecipeId']
@@ -1475,7 +1475,7 @@ class CloudGuardClient(object):
1475
1475
  :rtype: :class:`~oci.response.Response`
1476
1476
 
1477
1477
  :example:
1478
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_managed_list.py.html>`__ to see an example of how to use create_managed_list API.
1478
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_managed_list.py.html>`__ to see an example of how to use create_managed_list API.
1479
1479
  """
1480
1480
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1481
1481
  required_arguments = []
@@ -1571,7 +1571,7 @@ class CloudGuardClient(object):
1571
1571
  :rtype: :class:`~oci.response.Response`
1572
1572
 
1573
1573
  :example:
1574
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_responder_recipe.py.html>`__ to see an example of how to use create_responder_recipe API.
1574
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_responder_recipe.py.html>`__ to see an example of how to use create_responder_recipe API.
1575
1575
  """
1576
1576
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1577
1577
  required_arguments = []
@@ -1667,7 +1667,7 @@ class CloudGuardClient(object):
1667
1667
  :rtype: :class:`~oci.response.Response`
1668
1668
 
1669
1669
  :example:
1670
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_security_recipe.py.html>`__ to see an example of how to use create_security_recipe API.
1670
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_security_recipe.py.html>`__ to see an example of how to use create_security_recipe API.
1671
1671
  """
1672
1672
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1673
1673
  required_arguments = []
@@ -1763,7 +1763,7 @@ class CloudGuardClient(object):
1763
1763
  :rtype: :class:`~oci.response.Response`
1764
1764
 
1765
1765
  :example:
1766
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_security_zone.py.html>`__ to see an example of how to use create_security_zone API.
1766
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_security_zone.py.html>`__ to see an example of how to use create_security_zone API.
1767
1767
  """
1768
1768
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1769
1769
  required_arguments = []
@@ -1859,7 +1859,7 @@ class CloudGuardClient(object):
1859
1859
  :rtype: :class:`~oci.response.Response`
1860
1860
 
1861
1861
  :example:
1862
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_target.py.html>`__ to see an example of how to use create_target API.
1862
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_target.py.html>`__ to see an example of how to use create_target API.
1863
1863
  """
1864
1864
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1865
1865
  required_arguments = []
@@ -1958,7 +1958,7 @@ class CloudGuardClient(object):
1958
1958
  :rtype: :class:`~oci.response.Response`
1959
1959
 
1960
1960
  :example:
1961
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_target_detector_recipe.py.html>`__ to see an example of how to use create_target_detector_recipe API.
1961
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_target_detector_recipe.py.html>`__ to see an example of how to use create_target_detector_recipe API.
1962
1962
  """
1963
1963
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1964
1964
  required_arguments = ['targetId']
@@ -2069,7 +2069,7 @@ class CloudGuardClient(object):
2069
2069
  :rtype: :class:`~oci.response.Response`
2070
2070
 
2071
2071
  :example:
2072
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/create_target_responder_recipe.py.html>`__ to see an example of how to use create_target_responder_recipe API.
2072
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/create_target_responder_recipe.py.html>`__ to see an example of how to use create_target_responder_recipe API.
2073
2073
  """
2074
2074
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2075
2075
  required_arguments = ['targetId']
@@ -2177,7 +2177,7 @@ class CloudGuardClient(object):
2177
2177
  :rtype: :class:`~oci.response.Response`
2178
2178
 
2179
2179
  :example:
2180
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_data_mask_rule.py.html>`__ to see an example of how to use delete_data_mask_rule API.
2180
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_data_mask_rule.py.html>`__ to see an example of how to use delete_data_mask_rule API.
2181
2181
  """
2182
2182
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2183
2183
  required_arguments = ['dataMaskRuleId']
@@ -2287,7 +2287,7 @@ class CloudGuardClient(object):
2287
2287
  :rtype: :class:`~oci.response.Response`
2288
2288
 
2289
2289
  :example:
2290
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_data_source.py.html>`__ to see an example of how to use delete_data_source API.
2290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_data_source.py.html>`__ to see an example of how to use delete_data_source API.
2291
2291
  """
2292
2292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2293
2293
  required_arguments = ['dataSourceId']
@@ -2400,7 +2400,7 @@ class CloudGuardClient(object):
2400
2400
  :rtype: :class:`~oci.response.Response`
2401
2401
 
2402
2402
  :example:
2403
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_detector_recipe.py.html>`__ to see an example of how to use delete_detector_recipe API.
2403
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_detector_recipe.py.html>`__ to see an example of how to use delete_detector_recipe API.
2404
2404
  """
2405
2405
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2406
2406
  required_arguments = ['detectorRecipeId']
@@ -2509,7 +2509,7 @@ class CloudGuardClient(object):
2509
2509
  :rtype: :class:`~oci.response.Response`
2510
2510
 
2511
2511
  :example:
2512
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_detector_recipe_detector_rule.py.html>`__ to see an example of how to use delete_detector_recipe_detector_rule API.
2512
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_detector_recipe_detector_rule.py.html>`__ to see an example of how to use delete_detector_recipe_detector_rule API.
2513
2513
  """
2514
2514
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2515
2515
  required_arguments = ['detectorRecipeId', 'detectorRuleId']
@@ -2619,7 +2619,7 @@ class CloudGuardClient(object):
2619
2619
  :rtype: :class:`~oci.response.Response`
2620
2620
 
2621
2621
  :example:
2622
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_detector_recipe_detector_rule_data_source.py.html>`__ to see an example of how to use delete_detector_recipe_detector_rule_data_source API.
2622
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_detector_recipe_detector_rule_data_source.py.html>`__ to see an example of how to use delete_detector_recipe_detector_rule_data_source API.
2623
2623
  """
2624
2624
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2625
2625
  required_arguments = ['detectorRecipeId', 'detectorRuleId', 'dataSourceId']
@@ -2731,7 +2731,7 @@ class CloudGuardClient(object):
2731
2731
  :rtype: :class:`~oci.response.Response`
2732
2732
 
2733
2733
  :example:
2734
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_managed_list.py.html>`__ to see an example of how to use delete_managed_list API.
2734
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_managed_list.py.html>`__ to see an example of how to use delete_managed_list API.
2735
2735
  """
2736
2736
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2737
2737
  required_arguments = ['managedListId']
@@ -2837,7 +2837,7 @@ class CloudGuardClient(object):
2837
2837
  :rtype: :class:`~oci.response.Response`
2838
2838
 
2839
2839
  :example:
2840
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_responder_recipe.py.html>`__ to see an example of how to use delete_responder_recipe API.
2840
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_responder_recipe.py.html>`__ to see an example of how to use delete_responder_recipe API.
2841
2841
  """
2842
2842
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2843
2843
  required_arguments = ['responderRecipeId']
@@ -2940,7 +2940,7 @@ class CloudGuardClient(object):
2940
2940
  :rtype: :class:`~oci.response.Response`
2941
2941
 
2942
2942
  :example:
2943
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_security_recipe.py.html>`__ to see an example of how to use delete_security_recipe API.
2943
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_security_recipe.py.html>`__ to see an example of how to use delete_security_recipe API.
2944
2944
  """
2945
2945
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2946
2946
  required_arguments = ['securityRecipeId']
@@ -3043,7 +3043,7 @@ class CloudGuardClient(object):
3043
3043
  :rtype: :class:`~oci.response.Response`
3044
3044
 
3045
3045
  :example:
3046
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_security_zone.py.html>`__ to see an example of how to use delete_security_zone API.
3046
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_security_zone.py.html>`__ to see an example of how to use delete_security_zone API.
3047
3047
  """
3048
3048
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3049
3049
  required_arguments = ['securityZoneId']
@@ -3146,7 +3146,7 @@ class CloudGuardClient(object):
3146
3146
  :rtype: :class:`~oci.response.Response`
3147
3147
 
3148
3148
  :example:
3149
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_target.py.html>`__ to see an example of how to use delete_target API.
3149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_target.py.html>`__ to see an example of how to use delete_target API.
3150
3150
  """
3151
3151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3152
3152
  required_arguments = ['targetId']
@@ -3252,7 +3252,7 @@ class CloudGuardClient(object):
3252
3252
  :rtype: :class:`~oci.response.Response`
3253
3253
 
3254
3254
  :example:
3255
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_target_detector_recipe.py.html>`__ to see an example of how to use delete_target_detector_recipe API.
3255
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_target_detector_recipe.py.html>`__ to see an example of how to use delete_target_detector_recipe API.
3256
3256
  """
3257
3257
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3258
3258
  required_arguments = ['targetId', 'targetDetectorRecipeId']
@@ -3359,7 +3359,7 @@ class CloudGuardClient(object):
3359
3359
  :rtype: :class:`~oci.response.Response`
3360
3360
 
3361
3361
  :example:
3362
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/delete_target_responder_recipe.py.html>`__ to see an example of how to use delete_target_responder_recipe API.
3362
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/delete_target_responder_recipe.py.html>`__ to see an example of how to use delete_target_responder_recipe API.
3363
3363
  """
3364
3364
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3365
3365
  required_arguments = ['targetId', 'targetResponderRecipeId']
@@ -3476,7 +3476,7 @@ class CloudGuardClient(object):
3476
3476
  :rtype: :class:`~oci.response.Response`
3477
3477
 
3478
3478
  :example:
3479
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/execute_responder_execution.py.html>`__ to see an example of how to use execute_responder_execution API.
3479
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/execute_responder_execution.py.html>`__ to see an example of how to use execute_responder_execution API.
3480
3480
  """
3481
3481
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3482
3482
  required_arguments = ['responderExecutionId', 'compartmentId']
@@ -3593,7 +3593,7 @@ class CloudGuardClient(object):
3593
3593
  :rtype: :class:`~oci.response.Response`
3594
3594
 
3595
3595
  :example:
3596
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_condition_metadata_type.py.html>`__ to see an example of how to use get_condition_metadata_type API.
3596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_condition_metadata_type.py.html>`__ to see an example of how to use get_condition_metadata_type API.
3597
3597
  """
3598
3598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3599
3599
  required_arguments = ['conditionMetadataTypeId']
@@ -3699,7 +3699,7 @@ class CloudGuardClient(object):
3699
3699
  :rtype: :class:`~oci.response.Response`
3700
3700
 
3701
3701
  :example:
3702
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_configuration.py.html>`__ to see an example of how to use get_configuration API.
3702
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_configuration.py.html>`__ to see an example of how to use get_configuration API.
3703
3703
  """
3704
3704
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3705
3705
  required_arguments = ['compartmentId']
@@ -3790,7 +3790,7 @@ class CloudGuardClient(object):
3790
3790
  :rtype: :class:`~oci.response.Response`
3791
3791
 
3792
3792
  :example:
3793
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_data_mask_rule.py.html>`__ to see an example of how to use get_data_mask_rule API.
3793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_data_mask_rule.py.html>`__ to see an example of how to use get_data_mask_rule API.
3794
3794
  """
3795
3795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3796
3796
  required_arguments = ['dataMaskRuleId']
@@ -3886,7 +3886,7 @@ class CloudGuardClient(object):
3886
3886
  :rtype: :class:`~oci.response.Response`
3887
3887
 
3888
3888
  :example:
3889
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_data_source.py.html>`__ to see an example of how to use get_data_source API.
3889
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_data_source.py.html>`__ to see an example of how to use get_data_source API.
3890
3890
  """
3891
3891
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3892
3892
  required_arguments = ['dataSourceId']
@@ -3982,7 +3982,7 @@ class CloudGuardClient(object):
3982
3982
  :rtype: :class:`~oci.response.Response`
3983
3983
 
3984
3984
  :example:
3985
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_detector.py.html>`__ to see an example of how to use get_detector API.
3985
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector.py.html>`__ to see an example of how to use get_detector API.
3986
3986
  """
3987
3987
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3988
3988
  required_arguments = ['detectorId']
@@ -4078,7 +4078,7 @@ class CloudGuardClient(object):
4078
4078
  :rtype: :class:`~oci.response.Response`
4079
4079
 
4080
4080
  :example:
4081
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_detector_recipe.py.html>`__ to see an example of how to use get_detector_recipe API.
4081
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector_recipe.py.html>`__ to see an example of how to use get_detector_recipe API.
4082
4082
  """
4083
4083
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4084
4084
  required_arguments = ['detectorRecipeId']
@@ -4177,7 +4177,7 @@ class CloudGuardClient(object):
4177
4177
  :rtype: :class:`~oci.response.Response`
4178
4178
 
4179
4179
  :example:
4180
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_detector_recipe_detector_rule.py.html>`__ to see an example of how to use get_detector_recipe_detector_rule API.
4180
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector_recipe_detector_rule.py.html>`__ to see an example of how to use get_detector_recipe_detector_rule API.
4181
4181
  """
4182
4182
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4183
4183
  required_arguments = ['detectorRecipeId', 'detectorRuleId']
@@ -4277,7 +4277,7 @@ class CloudGuardClient(object):
4277
4277
  :rtype: :class:`~oci.response.Response`
4278
4278
 
4279
4279
  :example:
4280
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_detector_rule.py.html>`__ to see an example of how to use get_detector_rule API.
4280
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_detector_rule.py.html>`__ to see an example of how to use get_detector_rule API.
4281
4281
  """
4282
4282
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4283
4283
  required_arguments = ['detectorId', 'detectorRuleId']
@@ -4374,7 +4374,7 @@ class CloudGuardClient(object):
4374
4374
  :rtype: :class:`~oci.response.Response`
4375
4375
 
4376
4376
  :example:
4377
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_managed_list.py.html>`__ to see an example of how to use get_managed_list API.
4377
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_managed_list.py.html>`__ to see an example of how to use get_managed_list API.
4378
4378
  """
4379
4379
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4380
4380
  required_arguments = ['managedListId']
@@ -4470,7 +4470,7 @@ class CloudGuardClient(object):
4470
4470
  :rtype: :class:`~oci.response.Response`
4471
4471
 
4472
4472
  :example:
4473
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_problem.py.html>`__ to see an example of how to use get_problem API.
4473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_problem.py.html>`__ to see an example of how to use get_problem API.
4474
4474
  """
4475
4475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4476
4476
  required_arguments = ['problemId']
@@ -4566,7 +4566,7 @@ class CloudGuardClient(object):
4566
4566
  :rtype: :class:`~oci.response.Response`
4567
4567
 
4568
4568
  :example:
4569
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_resource_profile.py.html>`__ to see an example of how to use get_resource_profile API.
4569
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_resource_profile.py.html>`__ to see an example of how to use get_resource_profile API.
4570
4570
  """
4571
4571
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4572
4572
  required_arguments = ['resourceProfileId']
@@ -4662,7 +4662,7 @@ class CloudGuardClient(object):
4662
4662
  :rtype: :class:`~oci.response.Response`
4663
4663
 
4664
4664
  :example:
4665
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_responder_execution.py.html>`__ to see an example of how to use get_responder_execution API.
4665
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_execution.py.html>`__ to see an example of how to use get_responder_execution API.
4666
4666
  """
4667
4667
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4668
4668
  required_arguments = ['responderExecutionId']
@@ -4758,7 +4758,7 @@ class CloudGuardClient(object):
4758
4758
  :rtype: :class:`~oci.response.Response`
4759
4759
 
4760
4760
  :example:
4761
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_responder_recipe.py.html>`__ to see an example of how to use get_responder_recipe API.
4761
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_recipe.py.html>`__ to see an example of how to use get_responder_recipe API.
4762
4762
  """
4763
4763
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4764
4764
  required_arguments = ['responderRecipeId']
@@ -4857,7 +4857,7 @@ class CloudGuardClient(object):
4857
4857
  :rtype: :class:`~oci.response.Response`
4858
4858
 
4859
4859
  :example:
4860
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_responder_recipe_responder_rule.py.html>`__ to see an example of how to use get_responder_recipe_responder_rule API.
4860
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_recipe_responder_rule.py.html>`__ to see an example of how to use get_responder_recipe_responder_rule API.
4861
4861
  """
4862
4862
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4863
4863
  required_arguments = ['responderRecipeId', 'responderRuleId']
@@ -4954,7 +4954,7 @@ class CloudGuardClient(object):
4954
4954
  :rtype: :class:`~oci.response.Response`
4955
4955
 
4956
4956
  :example:
4957
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_responder_rule.py.html>`__ to see an example of how to use get_responder_rule API.
4957
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_responder_rule.py.html>`__ to see an example of how to use get_responder_rule API.
4958
4958
  """
4959
4959
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4960
4960
  required_arguments = ['responderRuleId']
@@ -5050,7 +5050,7 @@ class CloudGuardClient(object):
5050
5050
  :rtype: :class:`~oci.response.Response`
5051
5051
 
5052
5052
  :example:
5053
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_security_policy.py.html>`__ to see an example of how to use get_security_policy API.
5053
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_security_policy.py.html>`__ to see an example of how to use get_security_policy API.
5054
5054
  """
5055
5055
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5056
5056
  required_arguments = ['securityPolicyId']
@@ -5146,7 +5146,7 @@ class CloudGuardClient(object):
5146
5146
  :rtype: :class:`~oci.response.Response`
5147
5147
 
5148
5148
  :example:
5149
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_security_recipe.py.html>`__ to see an example of how to use get_security_recipe API.
5149
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_security_recipe.py.html>`__ to see an example of how to use get_security_recipe API.
5150
5150
  """
5151
5151
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5152
5152
  required_arguments = ['securityRecipeId']
@@ -5242,7 +5242,7 @@ class CloudGuardClient(object):
5242
5242
  :rtype: :class:`~oci.response.Response`
5243
5243
 
5244
5244
  :example:
5245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_security_zone.py.html>`__ to see an example of how to use get_security_zone API.
5245
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_security_zone.py.html>`__ to see an example of how to use get_security_zone API.
5246
5246
  """
5247
5247
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5248
5248
  required_arguments = ['securityZoneId']
@@ -5338,7 +5338,7 @@ class CloudGuardClient(object):
5338
5338
  :rtype: :class:`~oci.response.Response`
5339
5339
 
5340
5340
  :example:
5341
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_sighting.py.html>`__ to see an example of how to use get_sighting API.
5341
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_sighting.py.html>`__ to see an example of how to use get_sighting API.
5342
5342
  """
5343
5343
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5344
5344
  required_arguments = ['sightingId']
@@ -5434,7 +5434,7 @@ class CloudGuardClient(object):
5434
5434
  :rtype: :class:`~oci.response.Response`
5435
5435
 
5436
5436
  :example:
5437
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_target.py.html>`__ to see an example of how to use get_target API.
5437
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target.py.html>`__ to see an example of how to use get_target API.
5438
5438
  """
5439
5439
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5440
5440
  required_arguments = ['targetId']
@@ -5533,7 +5533,7 @@ class CloudGuardClient(object):
5533
5533
  :rtype: :class:`~oci.response.Response`
5534
5534
 
5535
5535
  :example:
5536
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_target_detector_recipe.py.html>`__ to see an example of how to use get_target_detector_recipe API.
5536
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_detector_recipe.py.html>`__ to see an example of how to use get_target_detector_recipe API.
5537
5537
  """
5538
5538
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5539
5539
  required_arguments = ['targetId', 'targetDetectorRecipeId']
@@ -5636,7 +5636,7 @@ class CloudGuardClient(object):
5636
5636
  :rtype: :class:`~oci.response.Response`
5637
5637
 
5638
5638
  :example:
5639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_target_detector_recipe_detector_rule.py.html>`__ to see an example of how to use get_target_detector_recipe_detector_rule API.
5639
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_detector_recipe_detector_rule.py.html>`__ to see an example of how to use get_target_detector_recipe_detector_rule API.
5640
5640
  """
5641
5641
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5642
5642
  required_arguments = ['targetId', 'targetDetectorRecipeId', 'detectorRuleId']
@@ -5737,7 +5737,7 @@ class CloudGuardClient(object):
5737
5737
  :rtype: :class:`~oci.response.Response`
5738
5738
 
5739
5739
  :example:
5740
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_target_responder_recipe.py.html>`__ to see an example of how to use get_target_responder_recipe API.
5740
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_responder_recipe.py.html>`__ to see an example of how to use get_target_responder_recipe API.
5741
5741
  """
5742
5742
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5743
5743
  required_arguments = ['targetId', 'targetResponderRecipeId']
@@ -5840,7 +5840,7 @@ class CloudGuardClient(object):
5840
5840
  :rtype: :class:`~oci.response.Response`
5841
5841
 
5842
5842
  :example:
5843
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_target_responder_recipe_responder_rule.py.html>`__ to see an example of how to use get_target_responder_recipe_responder_rule API.
5843
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_target_responder_recipe_responder_rule.py.html>`__ to see an example of how to use get_target_responder_recipe_responder_rule API.
5844
5844
  """
5845
5845
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5846
5846
  required_arguments = ['targetId', 'targetResponderRecipeId', 'responderRuleId']
@@ -5938,7 +5938,7 @@ class CloudGuardClient(object):
5938
5938
  :rtype: :class:`~oci.response.Response`
5939
5939
 
5940
5940
  :example:
5941
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
5941
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
5942
5942
  """
5943
5943
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5944
5944
  required_arguments = ['workRequestId']
@@ -6055,7 +6055,7 @@ class CloudGuardClient(object):
6055
6055
  :rtype: :class:`~oci.response.Response`
6056
6056
 
6057
6057
  :example:
6058
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_condition_metadata_types.py.html>`__ to see an example of how to use list_condition_metadata_types API.
6058
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_condition_metadata_types.py.html>`__ to see an example of how to use list_condition_metadata_types API.
6059
6059
  """
6060
6060
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6061
6061
  required_arguments = ['compartmentId']
@@ -6224,7 +6224,7 @@ class CloudGuardClient(object):
6224
6224
  :rtype: :class:`~oci.response.Response`
6225
6225
 
6226
6226
  :example:
6227
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_data_mask_rules.py.html>`__ to see an example of how to use list_data_mask_rules API.
6227
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_data_mask_rules.py.html>`__ to see an example of how to use list_data_mask_rules API.
6228
6228
  """
6229
6229
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6230
6230
  required_arguments = ['compartmentId']
@@ -6391,7 +6391,7 @@ class CloudGuardClient(object):
6391
6391
  :rtype: :class:`~oci.response.Response`
6392
6392
 
6393
6393
  :example:
6394
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_data_source_events.py.html>`__ to see an example of how to use list_data_source_events API.
6394
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_data_source_events.py.html>`__ to see an example of how to use list_data_source_events API.
6395
6395
  """
6396
6396
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6397
6397
  required_arguments = ['dataSourceId']
@@ -6580,7 +6580,7 @@ class CloudGuardClient(object):
6580
6580
  :rtype: :class:`~oci.response.Response`
6581
6581
 
6582
6582
  :example:
6583
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_data_sources.py.html>`__ to see an example of how to use list_data_sources API.
6583
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_data_sources.py.html>`__ to see an example of how to use list_data_sources API.
6584
6584
  """
6585
6585
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6586
6586
  required_arguments = ['compartmentId']
@@ -6760,7 +6760,7 @@ class CloudGuardClient(object):
6760
6760
  :rtype: :class:`~oci.response.Response`
6761
6761
 
6762
6762
  :example:
6763
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_detector_recipe_detector_rules.py.html>`__ to see an example of how to use list_detector_recipe_detector_rules API.
6763
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detector_recipe_detector_rules.py.html>`__ to see an example of how to use list_detector_recipe_detector_rules API.
6764
6764
  """
6765
6765
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6766
6766
  required_arguments = ['detectorRecipeId', 'compartmentId']
@@ -6954,7 +6954,7 @@ class CloudGuardClient(object):
6954
6954
  :rtype: :class:`~oci.response.Response`
6955
6955
 
6956
6956
  :example:
6957
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_detector_recipes.py.html>`__ to see an example of how to use list_detector_recipes API.
6957
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detector_recipes.py.html>`__ to see an example of how to use list_detector_recipes API.
6958
6958
  """
6959
6959
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6960
6960
  required_arguments = ['compartmentId']
@@ -7118,7 +7118,7 @@ class CloudGuardClient(object):
7118
7118
  :rtype: :class:`~oci.response.Response`
7119
7119
 
7120
7120
  :example:
7121
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_detector_rules.py.html>`__ to see an example of how to use list_detector_rules API.
7121
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detector_rules.py.html>`__ to see an example of how to use list_detector_rules API.
7122
7122
  """
7123
7123
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7124
7124
  required_arguments = ['detectorId', 'compartmentId']
@@ -7275,7 +7275,7 @@ class CloudGuardClient(object):
7275
7275
  :rtype: :class:`~oci.response.Response`
7276
7276
 
7277
7277
  :example:
7278
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_detectors.py.html>`__ to see an example of how to use list_detectors API.
7278
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_detectors.py.html>`__ to see an example of how to use list_detectors API.
7279
7279
  """
7280
7280
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7281
7281
  required_arguments = ['compartmentId']
@@ -7413,7 +7413,7 @@ class CloudGuardClient(object):
7413
7413
  :rtype: :class:`~oci.response.Response`
7414
7414
 
7415
7415
  :example:
7416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_impacted_resources.py.html>`__ to see an example of how to use list_impacted_resources API.
7416
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_impacted_resources.py.html>`__ to see an example of how to use list_impacted_resources API.
7417
7417
  """
7418
7418
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7419
7419
  required_arguments = ['problemId']
@@ -7558,7 +7558,7 @@ class CloudGuardClient(object):
7558
7558
  :rtype: :class:`~oci.response.Response`
7559
7559
 
7560
7560
  :example:
7561
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_managed_list_types.py.html>`__ to see an example of how to use list_managed_list_types API.
7561
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_managed_list_types.py.html>`__ to see an example of how to use list_managed_list_types API.
7562
7562
  """
7563
7563
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7564
7564
  required_arguments = ['compartmentId']
@@ -7742,7 +7742,7 @@ class CloudGuardClient(object):
7742
7742
  :rtype: :class:`~oci.response.Response`
7743
7743
 
7744
7744
  :example:
7745
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_managed_lists.py.html>`__ to see an example of how to use list_managed_lists API.
7745
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_managed_lists.py.html>`__ to see an example of how to use list_managed_lists API.
7746
7746
  """
7747
7747
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7748
7748
  required_arguments = ['compartmentId']
@@ -7904,7 +7904,7 @@ class CloudGuardClient(object):
7904
7904
  :rtype: :class:`~oci.response.Response`
7905
7905
 
7906
7906
  :example:
7907
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_policies.py.html>`__ to see an example of how to use list_policies API.
7907
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_policies.py.html>`__ to see an example of how to use list_policies API.
7908
7908
  """
7909
7909
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7910
7910
  required_arguments = ['compartmentId']
@@ -8033,7 +8033,7 @@ class CloudGuardClient(object):
8033
8033
  :rtype: :class:`~oci.response.Response`
8034
8034
 
8035
8035
  :example:
8036
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_problem_endpoints.py.html>`__ to see an example of how to use list_problem_endpoints API.
8036
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problem_endpoints.py.html>`__ to see an example of how to use list_problem_endpoints API.
8037
8037
  """
8038
8038
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8039
8039
  required_arguments = ['problemId']
@@ -8173,7 +8173,7 @@ class CloudGuardClient(object):
8173
8173
  :rtype: :class:`~oci.response.Response`
8174
8174
 
8175
8175
  :example:
8176
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_problem_entities.py.html>`__ to see an example of how to use list_problem_entities API.
8176
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problem_entities.py.html>`__ to see an example of how to use list_problem_entities API.
8177
8177
  """
8178
8178
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8179
8179
  required_arguments = ['problemId']
@@ -8316,7 +8316,7 @@ class CloudGuardClient(object):
8316
8316
  :rtype: :class:`~oci.response.Response`
8317
8317
 
8318
8318
  :example:
8319
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_problem_histories.py.html>`__ to see an example of how to use list_problem_histories API.
8319
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problem_histories.py.html>`__ to see an example of how to use list_problem_histories API.
8320
8320
  """
8321
8321
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8322
8322
  required_arguments = ['problemId', 'compartmentId']
@@ -8548,7 +8548,7 @@ class CloudGuardClient(object):
8548
8548
  :rtype: :class:`~oci.response.Response`
8549
8549
 
8550
8550
  :example:
8551
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_problems.py.html>`__ to see an example of how to use list_problems API.
8551
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_problems.py.html>`__ to see an example of how to use list_problems API.
8552
8552
  """
8553
8553
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8554
8554
  required_arguments = ['compartmentId']
@@ -8780,7 +8780,7 @@ class CloudGuardClient(object):
8780
8780
  :rtype: :class:`~oci.response.Response`
8781
8781
 
8782
8782
  :example:
8783
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_recommendations.py.html>`__ to see an example of how to use list_recommendations API.
8783
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_recommendations.py.html>`__ to see an example of how to use list_recommendations API.
8784
8784
  """
8785
8785
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8786
8786
  required_arguments = ['compartmentId']
@@ -8940,7 +8940,7 @@ class CloudGuardClient(object):
8940
8940
  :rtype: :class:`~oci.response.Response`
8941
8941
 
8942
8942
  :example:
8943
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_resource_profile_endpoints.py.html>`__ to see an example of how to use list_resource_profile_endpoints API.
8943
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_profile_endpoints.py.html>`__ to see an example of how to use list_resource_profile_endpoints API.
8944
8944
  """
8945
8945
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8946
8946
  required_arguments = ['resourceProfileId']
@@ -9080,7 +9080,7 @@ class CloudGuardClient(object):
9080
9080
  :rtype: :class:`~oci.response.Response`
9081
9081
 
9082
9082
  :example:
9083
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_resource_profile_impacted_resources.py.html>`__ to see an example of how to use list_resource_profile_impacted_resources API.
9083
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_profile_impacted_resources.py.html>`__ to see an example of how to use list_resource_profile_impacted_resources API.
9084
9084
  """
9085
9085
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9086
9086
  required_arguments = ['resourceProfileId']
@@ -9275,7 +9275,7 @@ class CloudGuardClient(object):
9275
9275
  :rtype: :class:`~oci.response.Response`
9276
9276
 
9277
9277
  :example:
9278
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_resource_profiles.py.html>`__ to see an example of how to use list_resource_profiles API.
9278
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_profiles.py.html>`__ to see an example of how to use list_resource_profiles API.
9279
9279
  """
9280
9280
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9281
9281
  required_arguments = ['compartmentId']
@@ -9443,7 +9443,7 @@ class CloudGuardClient(object):
9443
9443
  :rtype: :class:`~oci.response.Response`
9444
9444
 
9445
9445
  :example:
9446
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_resource_types.py.html>`__ to see an example of how to use list_resource_types API.
9446
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_resource_types.py.html>`__ to see an example of how to use list_resource_types API.
9447
9447
  """
9448
9448
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9449
9449
  required_arguments = ['compartmentId']
@@ -9590,7 +9590,7 @@ class CloudGuardClient(object):
9590
9590
  :rtype: :class:`~oci.response.Response`
9591
9591
 
9592
9592
  :example:
9593
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_responder_activities.py.html>`__ to see an example of how to use list_responder_activities API.
9593
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_activities.py.html>`__ to see an example of how to use list_responder_activities API.
9594
9594
  """
9595
9595
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9596
9596
  required_arguments = ['problemId']
@@ -9781,7 +9781,7 @@ class CloudGuardClient(object):
9781
9781
  :rtype: :class:`~oci.response.Response`
9782
9782
 
9783
9783
  :example:
9784
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_responder_executions.py.html>`__ to see an example of how to use list_responder_executions API.
9784
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_executions.py.html>`__ to see an example of how to use list_responder_executions API.
9785
9785
  """
9786
9786
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9787
9787
  required_arguments = ['compartmentId']
@@ -9973,7 +9973,7 @@ class CloudGuardClient(object):
9973
9973
  :rtype: :class:`~oci.response.Response`
9974
9974
 
9975
9975
  :example:
9976
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_responder_recipe_responder_rules.py.html>`__ to see an example of how to use list_responder_recipe_responder_rules API.
9976
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_recipe_responder_rules.py.html>`__ to see an example of how to use list_responder_recipe_responder_rules API.
9977
9977
  """
9978
9978
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9979
9979
  required_arguments = ['responderRecipeId', 'compartmentId']
@@ -10166,7 +10166,7 @@ class CloudGuardClient(object):
10166
10166
  :rtype: :class:`~oci.response.Response`
10167
10167
 
10168
10168
  :example:
10169
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_responder_recipes.py.html>`__ to see an example of how to use list_responder_recipes API.
10169
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_recipes.py.html>`__ to see an example of how to use list_responder_recipes API.
10170
10170
  """
10171
10171
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10172
10172
  required_arguments = ['compartmentId']
@@ -10327,7 +10327,7 @@ class CloudGuardClient(object):
10327
10327
  :rtype: :class:`~oci.response.Response`
10328
10328
 
10329
10329
  :example:
10330
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_responder_rules.py.html>`__ to see an example of how to use list_responder_rules API.
10330
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_responder_rules.py.html>`__ to see an example of how to use list_responder_rules API.
10331
10331
  """
10332
10332
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10333
10333
  required_arguments = ['compartmentId']
@@ -10478,7 +10478,7 @@ class CloudGuardClient(object):
10478
10478
  :rtype: :class:`~oci.response.Response`
10479
10479
 
10480
10480
  :example:
10481
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_security_policies.py.html>`__ to see an example of how to use list_security_policies API.
10481
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_security_policies.py.html>`__ to see an example of how to use list_security_policies API.
10482
10482
  """
10483
10483
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10484
10484
  required_arguments = ['compartmentId']
@@ -10631,7 +10631,7 @@ class CloudGuardClient(object):
10631
10631
  :rtype: :class:`~oci.response.Response`
10632
10632
 
10633
10633
  :example:
10634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_security_recipes.py.html>`__ to see an example of how to use list_security_recipes API.
10634
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_security_recipes.py.html>`__ to see an example of how to use list_security_recipes API.
10635
10635
  """
10636
10636
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10637
10637
  required_arguments = ['compartmentId']
@@ -10790,7 +10790,7 @@ class CloudGuardClient(object):
10790
10790
  :rtype: :class:`~oci.response.Response`
10791
10791
 
10792
10792
  :example:
10793
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_security_zones.py.html>`__ to see an example of how to use list_security_zones API.
10793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_security_zones.py.html>`__ to see an example of how to use list_security_zones API.
10794
10794
  """
10795
10795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10796
10796
  required_arguments = ['compartmentId']
@@ -10936,7 +10936,7 @@ class CloudGuardClient(object):
10936
10936
  :rtype: :class:`~oci.response.Response`
10937
10937
 
10938
10938
  :example:
10939
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_sighting_endpoints.py.html>`__ to see an example of how to use list_sighting_endpoints API.
10939
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_sighting_endpoints.py.html>`__ to see an example of how to use list_sighting_endpoints API.
10940
10940
  """
10941
10941
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10942
10942
  required_arguments = ['sightingId']
@@ -11076,7 +11076,7 @@ class CloudGuardClient(object):
11076
11076
  :rtype: :class:`~oci.response.Response`
11077
11077
 
11078
11078
  :example:
11079
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_sighting_impacted_resources.py.html>`__ to see an example of how to use list_sighting_impacted_resources API.
11079
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_sighting_impacted_resources.py.html>`__ to see an example of how to use list_sighting_impacted_resources API.
11080
11080
  """
11081
11081
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11082
11082
  required_arguments = ['sightingId']
@@ -11255,7 +11255,7 @@ class CloudGuardClient(object):
11255
11255
  :rtype: :class:`~oci.response.Response`
11256
11256
 
11257
11257
  :example:
11258
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_sightings.py.html>`__ to see an example of how to use list_sightings API.
11258
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_sightings.py.html>`__ to see an example of how to use list_sightings API.
11259
11259
  """
11260
11260
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11261
11261
  required_arguments = ['compartmentId']
@@ -11408,7 +11408,7 @@ class CloudGuardClient(object):
11408
11408
  :rtype: :class:`~oci.response.Response`
11409
11409
 
11410
11410
  :example:
11411
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_tactics.py.html>`__ to see an example of how to use list_tactics API.
11411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_tactics.py.html>`__ to see an example of how to use list_tactics API.
11412
11412
  """
11413
11413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11414
11414
  required_arguments = ['compartmentId']
@@ -11560,7 +11560,7 @@ class CloudGuardClient(object):
11560
11560
  :rtype: :class:`~oci.response.Response`
11561
11561
 
11562
11562
  :example:
11563
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_target_detector_recipe_detector_rules.py.html>`__ to see an example of how to use list_target_detector_recipe_detector_rules API.
11563
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_detector_recipe_detector_rules.py.html>`__ to see an example of how to use list_target_detector_recipe_detector_rules API.
11564
11564
  """
11565
11565
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11566
11566
  required_arguments = ['targetId', 'targetDetectorRecipeId', 'compartmentId']
@@ -11724,7 +11724,7 @@ class CloudGuardClient(object):
11724
11724
  :rtype: :class:`~oci.response.Response`
11725
11725
 
11726
11726
  :example:
11727
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_target_detector_recipes.py.html>`__ to see an example of how to use list_target_detector_recipes API.
11727
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_detector_recipes.py.html>`__ to see an example of how to use list_target_detector_recipes API.
11728
11728
  """
11729
11729
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11730
11730
  required_arguments = ['targetId', 'compartmentId']
@@ -11890,7 +11890,7 @@ class CloudGuardClient(object):
11890
11890
  :rtype: :class:`~oci.response.Response`
11891
11891
 
11892
11892
  :example:
11893
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_target_responder_recipe_responder_rules.py.html>`__ to see an example of how to use list_target_responder_recipe_responder_rules API.
11893
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_responder_recipe_responder_rules.py.html>`__ to see an example of how to use list_target_responder_recipe_responder_rules API.
11894
11894
  """
11895
11895
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11896
11896
  required_arguments = ['targetId', 'targetResponderRecipeId', 'compartmentId']
@@ -12054,7 +12054,7 @@ class CloudGuardClient(object):
12054
12054
  :rtype: :class:`~oci.response.Response`
12055
12055
 
12056
12056
  :example:
12057
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_target_responder_recipes.py.html>`__ to see an example of how to use list_target_responder_recipes API.
12057
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_target_responder_recipes.py.html>`__ to see an example of how to use list_target_responder_recipes API.
12058
12058
  """
12059
12059
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12060
12060
  required_arguments = ['targetId', 'compartmentId']
@@ -12247,7 +12247,7 @@ class CloudGuardClient(object):
12247
12247
  :rtype: :class:`~oci.response.Response`
12248
12248
 
12249
12249
  :example:
12250
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_targets.py.html>`__ to see an example of how to use list_targets API.
12250
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_targets.py.html>`__ to see an example of how to use list_targets API.
12251
12251
  """
12252
12252
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12253
12253
  required_arguments = ['compartmentId']
@@ -12408,7 +12408,7 @@ class CloudGuardClient(object):
12408
12408
  :rtype: :class:`~oci.response.Response`
12409
12409
 
12410
12410
  :example:
12411
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_techniques.py.html>`__ to see an example of how to use list_techniques API.
12411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_techniques.py.html>`__ to see an example of how to use list_techniques API.
12412
12412
  """
12413
12413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12414
12414
  required_arguments = ['compartmentId']
@@ -12548,7 +12548,7 @@ class CloudGuardClient(object):
12548
12548
  :rtype: :class:`~oci.response.Response`
12549
12549
 
12550
12550
  :example:
12551
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
12551
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_work_request_errors.py.html>`__ to see an example of how to use list_work_request_errors API.
12552
12552
  """
12553
12553
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12554
12554
  required_arguments = ['workRequestId']
@@ -12688,7 +12688,7 @@ class CloudGuardClient(object):
12688
12688
  :rtype: :class:`~oci.response.Response`
12689
12689
 
12690
12690
  :example:
12691
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
12691
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_work_request_logs.py.html>`__ to see an example of how to use list_work_request_logs API.
12692
12692
  """
12693
12693
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12694
12694
  required_arguments = ['workRequestId']
@@ -12836,7 +12836,7 @@ class CloudGuardClient(object):
12836
12836
  :rtype: :class:`~oci.response.Response`
12837
12837
 
12838
12838
  :example:
12839
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
12839
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
12840
12840
  """
12841
12841
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12842
12842
  required_arguments = ['compartmentId']
@@ -12977,7 +12977,7 @@ class CloudGuardClient(object):
12977
12977
  :rtype: :class:`~oci.response.Response`
12978
12978
 
12979
12979
  :example:
12980
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/remove_compartment.py.html>`__ to see an example of how to use remove_compartment API.
12980
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/remove_compartment.py.html>`__ to see an example of how to use remove_compartment API.
12981
12981
  """
12982
12982
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12983
12983
  required_arguments = ['securityZoneId']
@@ -13086,7 +13086,7 @@ class CloudGuardClient(object):
13086
13086
  :rtype: :class:`~oci.response.Response`
13087
13087
 
13088
13088
  :example:
13089
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_risk_scores.py.html>`__ to see an example of how to use request_risk_scores API.
13089
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_risk_scores.py.html>`__ to see an example of how to use request_risk_scores API.
13090
13090
  """
13091
13091
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13092
13092
  required_arguments = ['compartmentId']
@@ -13194,7 +13194,7 @@ class CloudGuardClient(object):
13194
13194
  :rtype: :class:`~oci.response.Response`
13195
13195
 
13196
13196
  :example:
13197
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_security_score_summarized_trend.py.html>`__ to see an example of how to use request_security_score_summarized_trend API.
13197
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_security_score_summarized_trend.py.html>`__ to see an example of how to use request_security_score_summarized_trend API.
13198
13198
  """
13199
13199
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13200
13200
  required_arguments = ['compartmentId']
@@ -13299,7 +13299,7 @@ class CloudGuardClient(object):
13299
13299
  :rtype: :class:`~oci.response.Response`
13300
13300
 
13301
13301
  :example:
13302
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_security_scores.py.html>`__ to see an example of how to use request_security_scores API.
13302
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_security_scores.py.html>`__ to see an example of how to use request_security_scores API.
13303
13303
  """
13304
13304
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13305
13305
  required_arguments = ['compartmentId']
@@ -13434,7 +13434,7 @@ class CloudGuardClient(object):
13434
13434
  :rtype: :class:`~oci.response.Response`
13435
13435
 
13436
13436
  :example:
13437
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_activity_problems.py.html>`__ to see an example of how to use request_summarized_activity_problems API.
13437
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_activity_problems.py.html>`__ to see an example of how to use request_summarized_activity_problems API.
13438
13438
  """
13439
13439
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13440
13440
  required_arguments = ['compartmentId']
@@ -13579,7 +13579,7 @@ class CloudGuardClient(object):
13579
13579
  :rtype: :class:`~oci.response.Response`
13580
13580
 
13581
13581
  :example:
13582
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_problems.py.html>`__ to see an example of how to use request_summarized_problems API.
13582
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_problems.py.html>`__ to see an example of how to use request_summarized_problems API.
13583
13583
  """
13584
13584
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13585
13585
  required_arguments = ['listDimensions', 'compartmentId']
@@ -13742,7 +13742,7 @@ class CloudGuardClient(object):
13742
13742
  :rtype: :class:`~oci.response.Response`
13743
13743
 
13744
13744
  :example:
13745
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_responder_executions.py.html>`__ to see an example of how to use request_summarized_responder_executions API.
13745
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_responder_executions.py.html>`__ to see an example of how to use request_summarized_responder_executions API.
13746
13746
  """
13747
13747
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13748
13748
  required_arguments = ['responderExecutionsDimensions', 'compartmentId']
@@ -13882,7 +13882,7 @@ class CloudGuardClient(object):
13882
13882
  :rtype: :class:`~oci.response.Response`
13883
13883
 
13884
13884
  :example:
13885
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_risk_scores.py.html>`__ to see an example of how to use request_summarized_risk_scores API.
13885
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_risk_scores.py.html>`__ to see an example of how to use request_summarized_risk_scores API.
13886
13886
  """
13887
13887
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13888
13888
  required_arguments = ['compartmentId']
@@ -13983,7 +13983,7 @@ class CloudGuardClient(object):
13983
13983
  :rtype: :class:`~oci.response.Response`
13984
13984
 
13985
13985
  :example:
13986
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_security_scores.py.html>`__ to see an example of how to use request_summarized_security_scores API.
13986
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_security_scores.py.html>`__ to see an example of how to use request_summarized_security_scores API.
13987
13987
  """
13988
13988
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13989
13989
  required_arguments = ['compartmentId']
@@ -14113,7 +14113,7 @@ class CloudGuardClient(object):
14113
14113
  :rtype: :class:`~oci.response.Response`
14114
14114
 
14115
14115
  :example:
14116
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_top_trend_resource_profile_risk_scores.py.html>`__ to see an example of how to use request_summarized_top_trend_resource_profile_risk_scores API.
14116
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_top_trend_resource_profile_risk_scores.py.html>`__ to see an example of how to use request_summarized_top_trend_resource_profile_risk_scores API.
14117
14117
  """
14118
14118
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14119
14119
  required_arguments = ['compartmentId']
@@ -14272,7 +14272,7 @@ class CloudGuardClient(object):
14272
14272
  :rtype: :class:`~oci.response.Response`
14273
14273
 
14274
14274
  :example:
14275
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_trend_problems.py.html>`__ to see an example of how to use request_summarized_trend_problems API.
14275
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_problems.py.html>`__ to see an example of how to use request_summarized_trend_problems API.
14276
14276
  """
14277
14277
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14278
14278
  required_arguments = ['compartmentId']
@@ -14412,7 +14412,7 @@ class CloudGuardClient(object):
14412
14412
  :rtype: :class:`~oci.response.Response`
14413
14413
 
14414
14414
  :example:
14415
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_trend_resource_risk_scores.py.html>`__ to see an example of how to use request_summarized_trend_resource_risk_scores API.
14415
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_resource_risk_scores.py.html>`__ to see an example of how to use request_summarized_trend_resource_risk_scores API.
14416
14416
  """
14417
14417
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14418
14418
  required_arguments = ['compartmentId']
@@ -14562,7 +14562,7 @@ class CloudGuardClient(object):
14562
14562
  :rtype: :class:`~oci.response.Response`
14563
14563
 
14564
14564
  :example:
14565
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_trend_responder_executions.py.html>`__ to see an example of how to use request_summarized_trend_responder_executions API.
14565
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_responder_executions.py.html>`__ to see an example of how to use request_summarized_trend_responder_executions API.
14566
14566
  """
14567
14567
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14568
14568
  required_arguments = ['compartmentId']
@@ -14684,7 +14684,7 @@ class CloudGuardClient(object):
14684
14684
  :rtype: :class:`~oci.response.Response`
14685
14685
 
14686
14686
  :example:
14687
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/request_summarized_trend_security_scores.py.html>`__ to see an example of how to use request_summarized_trend_security_scores API.
14687
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/request_summarized_trend_security_scores.py.html>`__ to see an example of how to use request_summarized_trend_security_scores API.
14688
14688
  """
14689
14689
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14690
14690
  required_arguments = ['compartmentId']
@@ -14784,7 +14784,7 @@ class CloudGuardClient(object):
14784
14784
  :rtype: :class:`~oci.response.Response`
14785
14785
 
14786
14786
  :example:
14787
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/skip_bulk_responder_execution.py.html>`__ to see an example of how to use skip_bulk_responder_execution API.
14787
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/skip_bulk_responder_execution.py.html>`__ to see an example of how to use skip_bulk_responder_execution API.
14788
14788
  """
14789
14789
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14790
14790
  required_arguments = []
@@ -14885,7 +14885,7 @@ class CloudGuardClient(object):
14885
14885
  :rtype: :class:`~oci.response.Response`
14886
14886
 
14887
14887
  :example:
14888
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/skip_responder_execution.py.html>`__ to see an example of how to use skip_responder_execution API.
14888
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/skip_responder_execution.py.html>`__ to see an example of how to use skip_responder_execution API.
14889
14889
  """
14890
14890
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14891
14891
  required_arguments = ['responderExecutionId', 'compartmentId']
@@ -15008,7 +15008,7 @@ class CloudGuardClient(object):
15008
15008
  :rtype: :class:`~oci.response.Response`
15009
15009
 
15010
15010
  :example:
15011
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/trigger_responder.py.html>`__ to see an example of how to use trigger_responder API.
15011
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/trigger_responder.py.html>`__ to see an example of how to use trigger_responder API.
15012
15012
  """
15013
15013
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15014
15014
  required_arguments = ['problemId']
@@ -15110,7 +15110,7 @@ class CloudGuardClient(object):
15110
15110
  :rtype: :class:`~oci.response.Response`
15111
15111
 
15112
15112
  :example:
15113
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_bulk_problem_status.py.html>`__ to see an example of how to use update_bulk_problem_status API.
15113
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_bulk_problem_status.py.html>`__ to see an example of how to use update_bulk_problem_status API.
15114
15114
  """
15115
15115
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15116
15116
  required_arguments = []
@@ -15211,7 +15211,7 @@ class CloudGuardClient(object):
15211
15211
  :rtype: :class:`~oci.response.Response`
15212
15212
 
15213
15213
  :example:
15214
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_configuration.py.html>`__ to see an example of how to use update_configuration API.
15214
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_configuration.py.html>`__ to see an example of how to use update_configuration API.
15215
15215
  """
15216
15216
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15217
15217
  required_arguments = ['compartmentId']
@@ -15319,7 +15319,7 @@ class CloudGuardClient(object):
15319
15319
  :rtype: :class:`~oci.response.Response`
15320
15320
 
15321
15321
  :example:
15322
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_data_mask_rule.py.html>`__ to see an example of how to use update_data_mask_rule API.
15322
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_data_mask_rule.py.html>`__ to see an example of how to use update_data_mask_rule API.
15323
15323
  """
15324
15324
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15325
15325
  required_arguments = ['dataMaskRuleId']
@@ -15436,7 +15436,7 @@ class CloudGuardClient(object):
15436
15436
  :rtype: :class:`~oci.response.Response`
15437
15437
 
15438
15438
  :example:
15439
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_data_source.py.html>`__ to see an example of how to use update_data_source API.
15439
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_data_source.py.html>`__ to see an example of how to use update_data_source API.
15440
15440
  """
15441
15441
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15442
15442
  required_arguments = ['dataSourceId']
@@ -15554,7 +15554,7 @@ class CloudGuardClient(object):
15554
15554
  :rtype: :class:`~oci.response.Response`
15555
15555
 
15556
15556
  :example:
15557
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_detector_recipe.py.html>`__ to see an example of how to use update_detector_recipe API.
15557
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_detector_recipe.py.html>`__ to see an example of how to use update_detector_recipe API.
15558
15558
  """
15559
15559
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15560
15560
  required_arguments = ['detectorRecipeId']
@@ -15670,7 +15670,7 @@ class CloudGuardClient(object):
15670
15670
  :rtype: :class:`~oci.response.Response`
15671
15671
 
15672
15672
  :example:
15673
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_detector_recipe_detector_rule.py.html>`__ to see an example of how to use update_detector_recipe_detector_rule API.
15673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_detector_recipe_detector_rule.py.html>`__ to see an example of how to use update_detector_recipe_detector_rule API.
15674
15674
  """
15675
15675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15676
15676
  required_arguments = ['detectorRecipeId', 'detectorRuleId']
@@ -15788,7 +15788,7 @@ class CloudGuardClient(object):
15788
15788
  :rtype: :class:`~oci.response.Response`
15789
15789
 
15790
15790
  :example:
15791
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_managed_list.py.html>`__ to see an example of how to use update_managed_list API.
15791
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_managed_list.py.html>`__ to see an example of how to use update_managed_list API.
15792
15792
  """
15793
15793
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15794
15794
  required_arguments = ['managedListId']
@@ -15908,7 +15908,7 @@ class CloudGuardClient(object):
15908
15908
  :rtype: :class:`~oci.response.Response`
15909
15909
 
15910
15910
  :example:
15911
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_problem_status.py.html>`__ to see an example of how to use update_problem_status API.
15911
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_problem_status.py.html>`__ to see an example of how to use update_problem_status API.
15912
15912
  """
15913
15913
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15914
15914
  required_arguments = ['problemId']
@@ -16021,7 +16021,7 @@ class CloudGuardClient(object):
16021
16021
  :rtype: :class:`~oci.response.Response`
16022
16022
 
16023
16023
  :example:
16024
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_responder_recipe.py.html>`__ to see an example of how to use update_responder_recipe API.
16024
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_responder_recipe.py.html>`__ to see an example of how to use update_responder_recipe API.
16025
16025
  """
16026
16026
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16027
16027
  required_arguments = ['responderRecipeId']
@@ -16134,7 +16134,7 @@ class CloudGuardClient(object):
16134
16134
  :rtype: :class:`~oci.response.Response`
16135
16135
 
16136
16136
  :example:
16137
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_responder_recipe_responder_rule.py.html>`__ to see an example of how to use update_responder_recipe_responder_rule API.
16137
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_responder_recipe_responder_rule.py.html>`__ to see an example of how to use update_responder_recipe_responder_rule API.
16138
16138
  """
16139
16139
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16140
16140
  required_arguments = ['responderRecipeId', 'responderRuleId']
@@ -16245,7 +16245,7 @@ class CloudGuardClient(object):
16245
16245
  :rtype: :class:`~oci.response.Response`
16246
16246
 
16247
16247
  :example:
16248
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_security_recipe.py.html>`__ to see an example of how to use update_security_recipe API.
16248
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_security_recipe.py.html>`__ to see an example of how to use update_security_recipe API.
16249
16249
  """
16250
16250
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16251
16251
  required_arguments = ['securityRecipeId']
@@ -16355,7 +16355,7 @@ class CloudGuardClient(object):
16355
16355
  :rtype: :class:`~oci.response.Response`
16356
16356
 
16357
16357
  :example:
16358
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_security_zone.py.html>`__ to see an example of how to use update_security_zone API.
16358
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_security_zone.py.html>`__ to see an example of how to use update_security_zone API.
16359
16359
  """
16360
16360
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16361
16361
  required_arguments = ['securityZoneId']
@@ -16465,7 +16465,7 @@ class CloudGuardClient(object):
16465
16465
  :rtype: :class:`~oci.response.Response`
16466
16466
 
16467
16467
  :example:
16468
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_target.py.html>`__ to see an example of how to use update_target API.
16468
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target.py.html>`__ to see an example of how to use update_target API.
16469
16469
  """
16470
16470
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16471
16471
  required_arguments = ['targetId']
@@ -16578,7 +16578,7 @@ class CloudGuardClient(object):
16578
16578
  :rtype: :class:`~oci.response.Response`
16579
16579
 
16580
16580
  :example:
16581
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_target_detector_recipe.py.html>`__ to see an example of how to use update_target_detector_recipe API.
16581
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_detector_recipe.py.html>`__ to see an example of how to use update_target_detector_recipe API.
16582
16582
  """
16583
16583
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16584
16584
  required_arguments = ['targetId', 'targetDetectorRecipeId']
@@ -16695,7 +16695,7 @@ class CloudGuardClient(object):
16695
16695
  :rtype: :class:`~oci.response.Response`
16696
16696
 
16697
16697
  :example:
16698
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_target_detector_recipe_detector_rule.py.html>`__ to see an example of how to use update_target_detector_recipe_detector_rule API.
16698
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_detector_recipe_detector_rule.py.html>`__ to see an example of how to use update_target_detector_recipe_detector_rule API.
16699
16699
  """
16700
16700
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16701
16701
  required_arguments = ['targetId', 'targetDetectorRecipeId', 'detectorRuleId']
@@ -16810,7 +16810,7 @@ class CloudGuardClient(object):
16810
16810
  :rtype: :class:`~oci.response.Response`
16811
16811
 
16812
16812
  :example:
16813
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_target_responder_recipe.py.html>`__ to see an example of how to use update_target_responder_recipe API.
16813
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_responder_recipe.py.html>`__ to see an example of how to use update_target_responder_recipe API.
16814
16814
  """
16815
16815
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16816
16816
  required_arguments = ['targetId', 'targetResponderRecipeId']
@@ -16927,7 +16927,7 @@ class CloudGuardClient(object):
16927
16927
  :rtype: :class:`~oci.response.Response`
16928
16928
 
16929
16929
  :example:
16930
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/cloudguard/update_target_responder_recipe_responder_rule.py.html>`__ to see an example of how to use update_target_responder_recipe_responder_rule API.
16930
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/cloudguard/update_target_responder_recipe_responder_rule.py.html>`__ to see an example of how to use update_target_responder_recipe_responder_rule API.
16931
16931
  """
16932
16932
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16933
16933
  required_arguments = ['targetId', 'targetResponderRecipeId', 'responderRuleId']