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 IdentityClient(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/identity/activate_domain.py.html>`__ to see an example of how to use activate_domain API.
160
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/activate_domain.py.html>`__ to see an example of how to use activate_domain API.
161
161
  """
162
162
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
163
163
  required_arguments = ['domainId']
@@ -273,7 +273,7 @@ class IdentityClient(object):
273
273
  :rtype: :class:`~oci.response.Response`
274
274
 
275
275
  :example:
276
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/activate_mfa_totp_device.py.html>`__ to see an example of how to use activate_mfa_totp_device API.
276
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/activate_mfa_totp_device.py.html>`__ to see an example of how to use activate_mfa_totp_device API.
277
277
  """
278
278
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
279
279
  required_arguments = ['userId', 'mfaTotpDeviceId']
@@ -393,7 +393,7 @@ class IdentityClient(object):
393
393
  :rtype: :class:`~oci.response.Response`
394
394
 
395
395
  :example:
396
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/add_tag_default_lock.py.html>`__ to see an example of how to use add_tag_default_lock API.
396
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/add_tag_default_lock.py.html>`__ to see an example of how to use add_tag_default_lock API.
397
397
  """
398
398
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
399
399
  required_arguments = ['tagDefaultId']
@@ -514,7 +514,7 @@ class IdentityClient(object):
514
514
  :rtype: :class:`~oci.response.Response`
515
515
 
516
516
  :example:
517
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/add_tag_namespace_lock.py.html>`__ to see an example of how to use add_tag_namespace_lock API.
517
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/add_tag_namespace_lock.py.html>`__ to see an example of how to use add_tag_namespace_lock API.
518
518
  """
519
519
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
520
520
  required_arguments = ['tagNamespaceId']
@@ -626,7 +626,7 @@ class IdentityClient(object):
626
626
  :rtype: :class:`~oci.response.Response`
627
627
 
628
628
  :example:
629
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/add_user_to_group.py.html>`__ to see an example of how to use add_user_to_group API.
629
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/add_user_to_group.py.html>`__ to see an example of how to use add_user_to_group API.
630
630
  """
631
631
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
632
632
  required_arguments = []
@@ -720,7 +720,7 @@ class IdentityClient(object):
720
720
  :rtype: :class:`~oci.response.Response`
721
721
 
722
722
  :example:
723
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/assemble_effective_tag_set.py.html>`__ to see an example of how to use assemble_effective_tag_set API.
723
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/assemble_effective_tag_set.py.html>`__ to see an example of how to use assemble_effective_tag_set API.
724
724
  """
725
725
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
726
726
  required_arguments = ['compartmentId']
@@ -836,7 +836,7 @@ class IdentityClient(object):
836
836
  :rtype: :class:`~oci.response.Response`
837
837
 
838
838
  :example:
839
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/bulk_delete_resources.py.html>`__ to see an example of how to use bulk_delete_resources API.
839
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/bulk_delete_resources.py.html>`__ to see an example of how to use bulk_delete_resources API.
840
840
  """
841
841
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
842
842
  required_arguments = ['compartmentId']
@@ -968,7 +968,7 @@ class IdentityClient(object):
968
968
  :rtype: :class:`~oci.response.Response`
969
969
 
970
970
  :example:
971
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/bulk_delete_tags.py.html>`__ to see an example of how to use bulk_delete_tags API.
971
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/bulk_delete_tags.py.html>`__ to see an example of how to use bulk_delete_tags API.
972
972
  """
973
973
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
974
974
  required_arguments = []
@@ -1086,7 +1086,7 @@ class IdentityClient(object):
1086
1086
  :rtype: :class:`~oci.response.Response`
1087
1087
 
1088
1088
  :example:
1089
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/bulk_edit_tags.py.html>`__ to see an example of how to use bulk_edit_tags API.
1089
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/bulk_edit_tags.py.html>`__ to see an example of how to use bulk_edit_tags API.
1090
1090
  """
1091
1091
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1092
1092
  required_arguments = []
@@ -1193,7 +1193,7 @@ class IdentityClient(object):
1193
1193
  :rtype: :class:`~oci.response.Response`
1194
1194
 
1195
1195
  :example:
1196
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/bulk_move_resources.py.html>`__ to see an example of how to use bulk_move_resources API.
1196
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/bulk_move_resources.py.html>`__ to see an example of how to use bulk_move_resources API.
1197
1197
  """
1198
1198
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1199
1199
  required_arguments = ['compartmentId']
@@ -1328,7 +1328,7 @@ class IdentityClient(object):
1328
1328
  :rtype: :class:`~oci.response.Response`
1329
1329
 
1330
1330
  :example:
1331
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/cascade_delete_tag_namespace.py.html>`__ to see an example of how to use cascade_delete_tag_namespace API.
1331
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/cascade_delete_tag_namespace.py.html>`__ to see an example of how to use cascade_delete_tag_namespace API.
1332
1332
  """
1333
1333
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1334
1334
  required_arguments = ['tagNamespaceId']
@@ -1456,7 +1456,7 @@ class IdentityClient(object):
1456
1456
  :rtype: :class:`~oci.response.Response`
1457
1457
 
1458
1458
  :example:
1459
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/change_domain_compartment.py.html>`__ to see an example of how to use change_domain_compartment API.
1459
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/change_domain_compartment.py.html>`__ to see an example of how to use change_domain_compartment API.
1460
1460
  """
1461
1461
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1462
1462
  required_arguments = ['domainId']
@@ -1583,7 +1583,7 @@ class IdentityClient(object):
1583
1583
  :rtype: :class:`~oci.response.Response`
1584
1584
 
1585
1585
  :example:
1586
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/change_domain_license_type.py.html>`__ to see an example of how to use change_domain_license_type API.
1586
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/change_domain_license_type.py.html>`__ to see an example of how to use change_domain_license_type API.
1587
1587
  """
1588
1588
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1589
1589
  required_arguments = ['domainId']
@@ -1703,7 +1703,7 @@ class IdentityClient(object):
1703
1703
  :rtype: :class:`~oci.response.Response`
1704
1704
 
1705
1705
  :example:
1706
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/change_tag_namespace_compartment.py.html>`__ to see an example of how to use change_tag_namespace_compartment API.
1706
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/change_tag_namespace_compartment.py.html>`__ to see an example of how to use change_tag_namespace_compartment API.
1707
1707
  """
1708
1708
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1709
1709
  required_arguments = ['tagNamespaceId']
@@ -1828,7 +1828,7 @@ class IdentityClient(object):
1828
1828
  :rtype: :class:`~oci.response.Response`
1829
1829
 
1830
1830
  :example:
1831
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_auth_token.py.html>`__ to see an example of how to use create_auth_token API.
1831
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_auth_token.py.html>`__ to see an example of how to use create_auth_token API.
1832
1832
  """
1833
1833
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1834
1834
  required_arguments = ['userId']
@@ -1952,7 +1952,7 @@ class IdentityClient(object):
1952
1952
  :rtype: :class:`~oci.response.Response`
1953
1953
 
1954
1954
  :example:
1955
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_compartment.py.html>`__ to see an example of how to use create_compartment API.
1955
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_compartment.py.html>`__ to see an example of how to use create_compartment API.
1956
1956
  """
1957
1957
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1958
1958
  required_arguments = []
@@ -2060,7 +2060,7 @@ class IdentityClient(object):
2060
2060
  :rtype: :class:`~oci.response.Response`
2061
2061
 
2062
2062
  :example:
2063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_customer_secret_key.py.html>`__ to see an example of how to use create_customer_secret_key API.
2063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_customer_secret_key.py.html>`__ to see an example of how to use create_customer_secret_key API.
2064
2064
  """
2065
2065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2066
2066
  required_arguments = ['userId']
@@ -2172,7 +2172,7 @@ class IdentityClient(object):
2172
2172
  :rtype: :class:`~oci.response.Response`
2173
2173
 
2174
2174
  :example:
2175
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_db_credential.py.html>`__ to see an example of how to use create_db_credential API.
2175
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_db_credential.py.html>`__ to see an example of how to use create_db_credential API.
2176
2176
  """
2177
2177
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2178
2178
  required_arguments = ['userId']
@@ -2290,7 +2290,7 @@ class IdentityClient(object):
2290
2290
  :rtype: :class:`~oci.response.Response`
2291
2291
 
2292
2292
  :example:
2293
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_domain.py.html>`__ to see an example of how to use create_domain API.
2293
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_domain.py.html>`__ to see an example of how to use create_domain API.
2294
2294
  """
2295
2295
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2296
2296
  required_arguments = []
@@ -2403,7 +2403,7 @@ class IdentityClient(object):
2403
2403
  :rtype: :class:`~oci.response.Response`
2404
2404
 
2405
2405
  :example:
2406
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_dynamic_group.py.html>`__ to see an example of how to use create_dynamic_group API.
2406
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_dynamic_group.py.html>`__ to see an example of how to use create_dynamic_group API.
2407
2407
  """
2408
2408
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2409
2409
  required_arguments = []
@@ -2519,7 +2519,7 @@ class IdentityClient(object):
2519
2519
  :rtype: :class:`~oci.response.Response`
2520
2520
 
2521
2521
  :example:
2522
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_group.py.html>`__ to see an example of how to use create_group API.
2522
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_group.py.html>`__ to see an example of how to use create_group API.
2523
2523
  """
2524
2524
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2525
2525
  required_arguments = []
@@ -2635,7 +2635,7 @@ class IdentityClient(object):
2635
2635
  :rtype: :class:`~oci.response.Response`
2636
2636
 
2637
2637
  :example:
2638
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_identity_provider.py.html>`__ to see an example of how to use create_identity_provider API.
2638
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_identity_provider.py.html>`__ to see an example of how to use create_identity_provider API.
2639
2639
  """
2640
2640
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2641
2641
  required_arguments = []
@@ -2736,7 +2736,7 @@ class IdentityClient(object):
2736
2736
  :rtype: :class:`~oci.response.Response`
2737
2737
 
2738
2738
  :example:
2739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_idp_group_mapping.py.html>`__ to see an example of how to use create_idp_group_mapping API.
2739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_idp_group_mapping.py.html>`__ to see an example of how to use create_idp_group_mapping API.
2740
2740
  """
2741
2741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2742
2742
  required_arguments = ['identityProviderId']
@@ -2841,7 +2841,7 @@ class IdentityClient(object):
2841
2841
  :rtype: :class:`~oci.response.Response`
2842
2842
 
2843
2843
  :example:
2844
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_mfa_totp_device.py.html>`__ to see an example of how to use create_mfa_totp_device API.
2844
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_mfa_totp_device.py.html>`__ to see an example of how to use create_mfa_totp_device API.
2845
2845
  """
2846
2846
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2847
2847
  required_arguments = ['userId']
@@ -2968,7 +2968,7 @@ class IdentityClient(object):
2968
2968
  :rtype: :class:`~oci.response.Response`
2969
2969
 
2970
2970
  :example:
2971
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_network_source.py.html>`__ to see an example of how to use create_network_source API.
2971
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_network_source.py.html>`__ to see an example of how to use create_network_source API.
2972
2972
  """
2973
2973
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2974
2974
  required_arguments = []
@@ -3064,7 +3064,7 @@ class IdentityClient(object):
3064
3064
  :rtype: :class:`~oci.response.Response`
3065
3065
 
3066
3066
  :example:
3067
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_o_auth_client_credential.py.html>`__ to see an example of how to use create_o_auth_client_credential API.
3067
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_o_auth_client_credential.py.html>`__ to see an example of how to use create_o_auth_client_credential API.
3068
3068
  """
3069
3069
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3070
3070
  required_arguments = ['userId']
@@ -3185,7 +3185,7 @@ class IdentityClient(object):
3185
3185
  :rtype: :class:`~oci.response.Response`
3186
3186
 
3187
3187
  :example:
3188
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_or_reset_ui_password.py.html>`__ to see an example of how to use create_or_reset_ui_password API.
3188
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_or_reset_ui_password.py.html>`__ to see an example of how to use create_or_reset_ui_password API.
3189
3189
  """
3190
3190
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3191
3191
  required_arguments = ['userId']
@@ -3308,7 +3308,7 @@ class IdentityClient(object):
3308
3308
  :rtype: :class:`~oci.response.Response`
3309
3309
 
3310
3310
  :example:
3311
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_policy.py.html>`__ to see an example of how to use create_policy API.
3311
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_policy.py.html>`__ to see an example of how to use create_policy API.
3312
3312
  """
3313
3313
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3314
3314
  required_arguments = []
@@ -3404,7 +3404,7 @@ class IdentityClient(object):
3404
3404
  :rtype: :class:`~oci.response.Response`
3405
3405
 
3406
3406
  :example:
3407
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_region_subscription.py.html>`__ to see an example of how to use create_region_subscription API.
3407
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_region_subscription.py.html>`__ to see an example of how to use create_region_subscription API.
3408
3408
  """
3409
3409
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3410
3410
  required_arguments = ['tenancyId']
@@ -3515,7 +3515,7 @@ class IdentityClient(object):
3515
3515
  :rtype: :class:`~oci.response.Response`
3516
3516
 
3517
3517
  :example:
3518
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_smtp_credential.py.html>`__ to see an example of how to use create_smtp_credential API.
3518
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_smtp_credential.py.html>`__ to see an example of how to use create_smtp_credential API.
3519
3519
  """
3520
3520
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3521
3521
  required_arguments = ['userId']
@@ -3636,7 +3636,7 @@ class IdentityClient(object):
3636
3636
  :rtype: :class:`~oci.response.Response`
3637
3637
 
3638
3638
  :example:
3639
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_swift_password.py.html>`__ to see an example of how to use create_swift_password API.
3639
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_swift_password.py.html>`__ to see an example of how to use create_swift_password API.
3640
3640
  """
3641
3641
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3642
3642
  required_arguments = ['userId']
@@ -3768,7 +3768,7 @@ class IdentityClient(object):
3768
3768
  :rtype: :class:`~oci.response.Response`
3769
3769
 
3770
3770
  :example:
3771
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_tag.py.html>`__ to see an example of how to use create_tag API.
3771
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_tag.py.html>`__ to see an example of how to use create_tag API.
3772
3772
  """
3773
3773
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3774
3774
  required_arguments = ['tagNamespaceId']
@@ -3892,7 +3892,7 @@ class IdentityClient(object):
3892
3892
  :rtype: :class:`~oci.response.Response`
3893
3893
 
3894
3894
  :example:
3895
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_tag_default.py.html>`__ to see an example of how to use create_tag_default API.
3895
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_tag_default.py.html>`__ to see an example of how to use create_tag_default API.
3896
3896
  """
3897
3897
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3898
3898
  required_arguments = []
@@ -4000,7 +4000,7 @@ class IdentityClient(object):
4000
4000
  :rtype: :class:`~oci.response.Response`
4001
4001
 
4002
4002
  :example:
4003
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_tag_namespace.py.html>`__ to see an example of how to use create_tag_namespace API.
4003
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_tag_namespace.py.html>`__ to see an example of how to use create_tag_namespace API.
4004
4004
  """
4005
4005
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4006
4006
  required_arguments = []
@@ -4131,7 +4131,7 @@ class IdentityClient(object):
4131
4131
  :rtype: :class:`~oci.response.Response`
4132
4132
 
4133
4133
  :example:
4134
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/create_user.py.html>`__ to see an example of how to use create_user API.
4134
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/create_user.py.html>`__ to see an example of how to use create_user API.
4135
4135
  """
4136
4136
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4137
4137
  required_arguments = []
@@ -4241,7 +4241,7 @@ class IdentityClient(object):
4241
4241
  :rtype: :class:`~oci.response.Response`
4242
4242
 
4243
4243
  :example:
4244
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/deactivate_domain.py.html>`__ to see an example of how to use deactivate_domain API.
4244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/deactivate_domain.py.html>`__ to see an example of how to use deactivate_domain API.
4245
4245
  """
4246
4246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4247
4247
  required_arguments = ['domainId']
@@ -4352,7 +4352,7 @@ class IdentityClient(object):
4352
4352
  :rtype: :class:`~oci.response.Response`
4353
4353
 
4354
4354
  :example:
4355
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_api_key.py.html>`__ to see an example of how to use delete_api_key API.
4355
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_api_key.py.html>`__ to see an example of how to use delete_api_key API.
4356
4356
  """
4357
4357
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4358
4358
  required_arguments = ['userId', 'fingerprint']
@@ -4454,7 +4454,7 @@ class IdentityClient(object):
4454
4454
  :rtype: :class:`~oci.response.Response`
4455
4455
 
4456
4456
  :example:
4457
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_auth_token.py.html>`__ to see an example of how to use delete_auth_token API.
4457
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_auth_token.py.html>`__ to see an example of how to use delete_auth_token API.
4458
4458
  """
4459
4459
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4460
4460
  required_arguments = ['userId', 'authTokenId']
@@ -4553,7 +4553,7 @@ class IdentityClient(object):
4553
4553
  :rtype: :class:`~oci.response.Response`
4554
4554
 
4555
4555
  :example:
4556
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_compartment.py.html>`__ to see an example of how to use delete_compartment API.
4556
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_compartment.py.html>`__ to see an example of how to use delete_compartment API.
4557
4557
  """
4558
4558
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4559
4559
  required_arguments = ['compartmentId']
@@ -4654,7 +4654,7 @@ class IdentityClient(object):
4654
4654
  :rtype: :class:`~oci.response.Response`
4655
4655
 
4656
4656
  :example:
4657
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_customer_secret_key.py.html>`__ to see an example of how to use delete_customer_secret_key API.
4657
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_customer_secret_key.py.html>`__ to see an example of how to use delete_customer_secret_key API.
4658
4658
  """
4659
4659
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4660
4660
  required_arguments = ['userId', 'customerSecretKeyId']
@@ -4760,7 +4760,7 @@ class IdentityClient(object):
4760
4760
  :rtype: :class:`~oci.response.Response`
4761
4761
 
4762
4762
  :example:
4763
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_db_credential.py.html>`__ to see an example of how to use delete_db_credential API.
4763
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_db_credential.py.html>`__ to see an example of how to use delete_db_credential API.
4764
4764
  """
4765
4765
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4766
4766
  required_arguments = ['userId', 'dbCredentialId']
@@ -4871,7 +4871,7 @@ class IdentityClient(object):
4871
4871
  :rtype: :class:`~oci.response.Response`
4872
4872
 
4873
4873
  :example:
4874
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_domain.py.html>`__ to see an example of how to use delete_domain API.
4874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_domain.py.html>`__ to see an example of how to use delete_domain API.
4875
4875
  """
4876
4876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4877
4877
  required_arguments = ['domainId']
@@ -4971,7 +4971,7 @@ class IdentityClient(object):
4971
4971
  :rtype: :class:`~oci.response.Response`
4972
4972
 
4973
4973
  :example:
4974
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_dynamic_group.py.html>`__ to see an example of how to use delete_dynamic_group API.
4974
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_dynamic_group.py.html>`__ to see an example of how to use delete_dynamic_group API.
4975
4975
  """
4976
4976
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4977
4977
  required_arguments = ['dynamicGroupId']
@@ -5069,7 +5069,7 @@ class IdentityClient(object):
5069
5069
  :rtype: :class:`~oci.response.Response`
5070
5070
 
5071
5071
  :example:
5072
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_group.py.html>`__ to see an example of how to use delete_group API.
5072
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_group.py.html>`__ to see an example of how to use delete_group API.
5073
5073
  """
5074
5074
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5075
5075
  required_arguments = ['groupId']
@@ -5172,7 +5172,7 @@ class IdentityClient(object):
5172
5172
  :rtype: :class:`~oci.response.Response`
5173
5173
 
5174
5174
  :example:
5175
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_identity_provider.py.html>`__ to see an example of how to use delete_identity_provider API.
5175
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_identity_provider.py.html>`__ to see an example of how to use delete_identity_provider API.
5176
5176
  """
5177
5177
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5178
5178
  required_arguments = ['identityProviderId']
@@ -5277,7 +5277,7 @@ class IdentityClient(object):
5277
5277
  :rtype: :class:`~oci.response.Response`
5278
5278
 
5279
5279
  :example:
5280
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_idp_group_mapping.py.html>`__ to see an example of how to use delete_idp_group_mapping API.
5280
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_idp_group_mapping.py.html>`__ to see an example of how to use delete_idp_group_mapping API.
5281
5281
  """
5282
5282
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5283
5283
  required_arguments = ['identityProviderId', 'mappingId']
@@ -5379,7 +5379,7 @@ class IdentityClient(object):
5379
5379
  :rtype: :class:`~oci.response.Response`
5380
5380
 
5381
5381
  :example:
5382
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_mfa_totp_device.py.html>`__ to see an example of how to use delete_mfa_totp_device API.
5382
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_mfa_totp_device.py.html>`__ to see an example of how to use delete_mfa_totp_device API.
5383
5383
  """
5384
5384
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5385
5385
  required_arguments = ['userId', 'mfaTotpDeviceId']
@@ -5478,7 +5478,7 @@ class IdentityClient(object):
5478
5478
  :rtype: :class:`~oci.response.Response`
5479
5479
 
5480
5480
  :example:
5481
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_network_source.py.html>`__ to see an example of how to use delete_network_source API.
5481
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_network_source.py.html>`__ to see an example of how to use delete_network_source API.
5482
5482
  """
5483
5483
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5484
5484
  required_arguments = ['networkSourceId']
@@ -5579,7 +5579,7 @@ class IdentityClient(object):
5579
5579
  :rtype: :class:`~oci.response.Response`
5580
5580
 
5581
5581
  :example:
5582
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_o_auth_client_credential.py.html>`__ to see an example of how to use delete_o_auth_client_credential API.
5582
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_o_auth_client_credential.py.html>`__ to see an example of how to use delete_o_auth_client_credential API.
5583
5583
  """
5584
5584
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5585
5585
  required_arguments = ['userId', 'oauth2ClientCredentialId']
@@ -5678,7 +5678,7 @@ class IdentityClient(object):
5678
5678
  :rtype: :class:`~oci.response.Response`
5679
5679
 
5680
5680
  :example:
5681
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_policy.py.html>`__ to see an example of how to use delete_policy API.
5681
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_policy.py.html>`__ to see an example of how to use delete_policy API.
5682
5682
  """
5683
5683
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5684
5684
  required_arguments = ['policyId']
@@ -5779,7 +5779,7 @@ class IdentityClient(object):
5779
5779
  :rtype: :class:`~oci.response.Response`
5780
5780
 
5781
5781
  :example:
5782
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_smtp_credential.py.html>`__ to see an example of how to use delete_smtp_credential API.
5782
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_smtp_credential.py.html>`__ to see an example of how to use delete_smtp_credential API.
5783
5783
  """
5784
5784
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5785
5785
  required_arguments = ['userId', 'smtpCredentialId']
@@ -5883,7 +5883,7 @@ class IdentityClient(object):
5883
5883
  :rtype: :class:`~oci.response.Response`
5884
5884
 
5885
5885
  :example:
5886
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_swift_password.py.html>`__ to see an example of how to use delete_swift_password API.
5886
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_swift_password.py.html>`__ to see an example of how to use delete_swift_password API.
5887
5887
  """
5888
5888
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5889
5889
  required_arguments = ['userId', 'swiftPasswordId']
@@ -6007,7 +6007,7 @@ class IdentityClient(object):
6007
6007
  :rtype: :class:`~oci.response.Response`
6008
6008
 
6009
6009
  :example:
6010
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_tag.py.html>`__ to see an example of how to use delete_tag API.
6010
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_tag.py.html>`__ to see an example of how to use delete_tag API.
6011
6011
  """
6012
6012
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6013
6013
  required_arguments = ['tagNamespaceId', 'tagName']
@@ -6121,7 +6121,7 @@ class IdentityClient(object):
6121
6121
  :rtype: :class:`~oci.response.Response`
6122
6122
 
6123
6123
  :example:
6124
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_tag_default.py.html>`__ to see an example of how to use delete_tag_default API.
6124
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_tag_default.py.html>`__ to see an example of how to use delete_tag_default API.
6125
6125
  """
6126
6126
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6127
6127
  required_arguments = ['tagDefaultId']
@@ -6242,7 +6242,7 @@ class IdentityClient(object):
6242
6242
  :rtype: :class:`~oci.response.Response`
6243
6243
 
6244
6244
  :example:
6245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_tag_namespace.py.html>`__ to see an example of how to use delete_tag_namespace API.
6245
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_tag_namespace.py.html>`__ to see an example of how to use delete_tag_namespace API.
6246
6246
  """
6247
6247
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6248
6248
  required_arguments = ['tagNamespaceId']
@@ -6350,7 +6350,7 @@ class IdentityClient(object):
6350
6350
  :rtype: :class:`~oci.response.Response`
6351
6351
 
6352
6352
  :example:
6353
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/delete_user.py.html>`__ to see an example of how to use delete_user API.
6353
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/delete_user.py.html>`__ to see an example of how to use delete_user API.
6354
6354
  """
6355
6355
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6356
6356
  required_arguments = ['userId']
@@ -6471,7 +6471,7 @@ class IdentityClient(object):
6471
6471
  :rtype: :class:`~oci.response.Response`
6472
6472
 
6473
6473
  :example:
6474
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/enable_replication_to_region.py.html>`__ to see an example of how to use enable_replication_to_region API.
6474
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/enable_replication_to_region.py.html>`__ to see an example of how to use enable_replication_to_region API.
6475
6475
  """
6476
6476
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6477
6477
  required_arguments = ['domainId']
@@ -6579,7 +6579,7 @@ class IdentityClient(object):
6579
6579
  :rtype: :class:`~oci.response.Response`
6580
6580
 
6581
6581
  :example:
6582
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/generate_totp_seed.py.html>`__ to see an example of how to use generate_totp_seed API.
6582
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/generate_totp_seed.py.html>`__ to see an example of how to use generate_totp_seed API.
6583
6583
  """
6584
6584
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6585
6585
  required_arguments = ['userId', 'mfaTotpDeviceId']
@@ -6676,7 +6676,7 @@ class IdentityClient(object):
6676
6676
  :rtype: :class:`~oci.response.Response`
6677
6677
 
6678
6678
  :example:
6679
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_authentication_policy.py.html>`__ to see an example of how to use get_authentication_policy API.
6679
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_authentication_policy.py.html>`__ to see an example of how to use get_authentication_policy API.
6680
6680
  """
6681
6681
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6682
6682
  required_arguments = ['compartmentId']
@@ -6771,7 +6771,7 @@ class IdentityClient(object):
6771
6771
  :rtype: :class:`~oci.response.Response`
6772
6772
 
6773
6773
  :example:
6774
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_compartment.py.html>`__ to see an example of how to use get_compartment API.
6774
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_compartment.py.html>`__ to see an example of how to use get_compartment API.
6775
6775
  """
6776
6776
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6777
6777
  required_arguments = ['compartmentId']
@@ -6863,7 +6863,7 @@ class IdentityClient(object):
6863
6863
  :rtype: :class:`~oci.response.Response`
6864
6864
 
6865
6865
  :example:
6866
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_domain.py.html>`__ to see an example of how to use get_domain API.
6866
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_domain.py.html>`__ to see an example of how to use get_domain API.
6867
6867
  """
6868
6868
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6869
6869
  required_arguments = ['domainId']
@@ -6958,7 +6958,7 @@ class IdentityClient(object):
6958
6958
  :rtype: :class:`~oci.response.Response`
6959
6959
 
6960
6960
  :example:
6961
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_dynamic_group.py.html>`__ to see an example of how to use get_dynamic_group API.
6961
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_dynamic_group.py.html>`__ to see an example of how to use get_dynamic_group API.
6962
6962
  """
6963
6963
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6964
6964
  required_arguments = ['dynamicGroupId']
@@ -7050,7 +7050,7 @@ class IdentityClient(object):
7050
7050
  :rtype: :class:`~oci.response.Response`
7051
7051
 
7052
7052
  :example:
7053
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_group.py.html>`__ to see an example of how to use get_group API.
7053
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_group.py.html>`__ to see an example of how to use get_group API.
7054
7054
  """
7055
7055
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7056
7056
  required_arguments = ['groupId']
@@ -7142,7 +7142,7 @@ class IdentityClient(object):
7142
7142
  :rtype: :class:`~oci.response.Response`
7143
7143
 
7144
7144
  :example:
7145
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_iam_work_request.py.html>`__ to see an example of how to use get_iam_work_request API.
7145
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_iam_work_request.py.html>`__ to see an example of how to use get_iam_work_request API.
7146
7146
  """
7147
7147
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7148
7148
  required_arguments = ['iamWorkRequestId']
@@ -7241,7 +7241,7 @@ class IdentityClient(object):
7241
7241
  :rtype: :class:`~oci.response.Response`
7242
7242
 
7243
7243
  :example:
7244
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_identity_provider.py.html>`__ to see an example of how to use get_identity_provider API.
7244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_identity_provider.py.html>`__ to see an example of how to use get_identity_provider API.
7245
7245
  """
7246
7246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7247
7247
  required_arguments = ['identityProviderId']
@@ -7336,7 +7336,7 @@ class IdentityClient(object):
7336
7336
  :rtype: :class:`~oci.response.Response`
7337
7337
 
7338
7338
  :example:
7339
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_idp_group_mapping.py.html>`__ to see an example of how to use get_idp_group_mapping API.
7339
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_idp_group_mapping.py.html>`__ to see an example of how to use get_idp_group_mapping API.
7340
7340
  """
7341
7341
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7342
7342
  required_arguments = ['identityProviderId', 'mappingId']
@@ -7428,7 +7428,7 @@ class IdentityClient(object):
7428
7428
  :rtype: :class:`~oci.response.Response`
7429
7429
 
7430
7430
  :example:
7431
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_mfa_totp_device.py.html>`__ to see an example of how to use get_mfa_totp_device API.
7431
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_mfa_totp_device.py.html>`__ to see an example of how to use get_mfa_totp_device API.
7432
7432
  """
7433
7433
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7434
7434
  required_arguments = ['userId', 'mfaTotpDeviceId']
@@ -7517,7 +7517,7 @@ class IdentityClient(object):
7517
7517
  :rtype: :class:`~oci.response.Response`
7518
7518
 
7519
7519
  :example:
7520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_network_source.py.html>`__ to see an example of how to use get_network_source API.
7520
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_network_source.py.html>`__ to see an example of how to use get_network_source API.
7521
7521
  """
7522
7522
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7523
7523
  required_arguments = ['networkSourceId']
@@ -7605,7 +7605,7 @@ class IdentityClient(object):
7605
7605
  :rtype: :class:`~oci.response.Response`
7606
7606
 
7607
7607
  :example:
7608
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_policy.py.html>`__ to see an example of how to use get_policy API.
7608
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_policy.py.html>`__ to see an example of how to use get_policy API.
7609
7609
  """
7610
7610
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7611
7611
  required_arguments = ['policyId']
@@ -7696,7 +7696,7 @@ class IdentityClient(object):
7696
7696
  :rtype: :class:`~oci.response.Response`
7697
7697
 
7698
7698
  :example:
7699
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_standard_tag_template.py.html>`__ to see an example of how to use get_standard_tag_template API.
7699
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_standard_tag_template.py.html>`__ to see an example of how to use get_standard_tag_template API.
7700
7700
  """
7701
7701
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7702
7702
  required_arguments = ['standardTagNamespaceName', 'compartmentId']
@@ -7794,7 +7794,7 @@ class IdentityClient(object):
7794
7794
  :rtype: :class:`~oci.response.Response`
7795
7795
 
7796
7796
  :example:
7797
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_tag.py.html>`__ to see an example of how to use get_tag API.
7797
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_tag.py.html>`__ to see an example of how to use get_tag API.
7798
7798
  """
7799
7799
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7800
7800
  required_arguments = ['tagNamespaceId', 'tagName']
@@ -7883,7 +7883,7 @@ class IdentityClient(object):
7883
7883
  :rtype: :class:`~oci.response.Response`
7884
7884
 
7885
7885
  :example:
7886
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_tag_default.py.html>`__ to see an example of how to use get_tag_default API.
7886
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_tag_default.py.html>`__ to see an example of how to use get_tag_default API.
7887
7887
  """
7888
7888
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7889
7889
  required_arguments = ['tagDefaultId']
@@ -7971,7 +7971,7 @@ class IdentityClient(object):
7971
7971
  :rtype: :class:`~oci.response.Response`
7972
7972
 
7973
7973
  :example:
7974
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_tag_namespace.py.html>`__ to see an example of how to use get_tag_namespace API.
7974
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_tag_namespace.py.html>`__ to see an example of how to use get_tag_namespace API.
7975
7975
  """
7976
7976
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7977
7977
  required_arguments = ['tagNamespaceId']
@@ -8060,7 +8060,7 @@ class IdentityClient(object):
8060
8060
  :rtype: :class:`~oci.response.Response`
8061
8061
 
8062
8062
  :example:
8063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_tagging_work_request.py.html>`__ to see an example of how to use get_tagging_work_request API.
8063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_tagging_work_request.py.html>`__ to see an example of how to use get_tagging_work_request API.
8064
8064
  """
8065
8065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8066
8066
  required_arguments = ['workRequestId']
@@ -8148,7 +8148,7 @@ class IdentityClient(object):
8148
8148
  :rtype: :class:`~oci.response.Response`
8149
8149
 
8150
8150
  :example:
8151
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_tenancy.py.html>`__ to see an example of how to use get_tenancy API.
8151
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_tenancy.py.html>`__ to see an example of how to use get_tenancy API.
8152
8152
  """
8153
8153
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8154
8154
  required_arguments = ['tenancyId']
@@ -8236,7 +8236,7 @@ class IdentityClient(object):
8236
8236
  :rtype: :class:`~oci.response.Response`
8237
8237
 
8238
8238
  :example:
8239
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_user.py.html>`__ to see an example of how to use get_user API.
8239
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_user.py.html>`__ to see an example of how to use get_user API.
8240
8240
  """
8241
8241
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8242
8242
  required_arguments = ['userId']
@@ -8324,7 +8324,7 @@ class IdentityClient(object):
8324
8324
  :rtype: :class:`~oci.response.Response`
8325
8325
 
8326
8326
  :example:
8327
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_user_group_membership.py.html>`__ to see an example of how to use get_user_group_membership API.
8327
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_user_group_membership.py.html>`__ to see an example of how to use get_user_group_membership API.
8328
8328
  """
8329
8329
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8330
8330
  required_arguments = ['userGroupMembershipId']
@@ -8413,7 +8413,7 @@ class IdentityClient(object):
8413
8413
  :rtype: :class:`~oci.response.Response`
8414
8414
 
8415
8415
  :example:
8416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_user_ui_password_information.py.html>`__ to see an example of how to use get_user_ui_password_information API.
8416
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_user_ui_password_information.py.html>`__ to see an example of how to use get_user_ui_password_information API.
8417
8417
  """
8418
8418
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8419
8419
  required_arguments = ['userId']
@@ -8502,7 +8502,7 @@ class IdentityClient(object):
8502
8502
  :rtype: :class:`~oci.response.Response`
8503
8503
 
8504
8504
  :example:
8505
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
8505
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/get_work_request.py.html>`__ to see an example of how to use get_work_request API.
8506
8506
  """
8507
8507
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8508
8508
  required_arguments = ['workRequestId']
@@ -8602,7 +8602,7 @@ class IdentityClient(object):
8602
8602
  :rtype: :class:`~oci.response.Response`
8603
8603
 
8604
8604
  :example:
8605
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/import_standard_tags.py.html>`__ to see an example of how to use import_standard_tags API.
8605
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/import_standard_tags.py.html>`__ to see an example of how to use import_standard_tags API.
8606
8606
  """
8607
8607
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8608
8608
  required_arguments = []
@@ -8697,7 +8697,7 @@ class IdentityClient(object):
8697
8697
  :rtype: :class:`~oci.response.Response`
8698
8698
 
8699
8699
  :example:
8700
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_allowed_domain_license_types.py.html>`__ to see an example of how to use list_allowed_domain_license_types API.
8700
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_allowed_domain_license_types.py.html>`__ to see an example of how to use list_allowed_domain_license_types API.
8701
8701
  """
8702
8702
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8703
8703
  required_arguments = []
@@ -8791,7 +8791,7 @@ class IdentityClient(object):
8791
8791
  :rtype: :class:`~oci.response.Response`
8792
8792
 
8793
8793
  :example:
8794
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_api_keys.py.html>`__ to see an example of how to use list_api_keys API.
8794
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_api_keys.py.html>`__ to see an example of how to use list_api_keys API.
8795
8795
  """
8796
8796
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8797
8797
  required_arguments = ['userId']
@@ -8880,7 +8880,7 @@ class IdentityClient(object):
8880
8880
  :rtype: :class:`~oci.response.Response`
8881
8881
 
8882
8882
  :example:
8883
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_auth_tokens.py.html>`__ to see an example of how to use list_auth_tokens API.
8883
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_auth_tokens.py.html>`__ to see an example of how to use list_auth_tokens API.
8884
8884
  """
8885
8885
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8886
8886
  required_arguments = ['userId']
@@ -8974,7 +8974,7 @@ class IdentityClient(object):
8974
8974
  :rtype: :class:`~oci.response.Response`
8975
8975
 
8976
8976
  :example:
8977
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_availability_domains.py.html>`__ to see an example of how to use list_availability_domains API.
8977
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_availability_domains.py.html>`__ to see an example of how to use list_availability_domains API.
8978
8978
  """
8979
8979
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8980
8980
  required_arguments = ['compartmentId']
@@ -9073,7 +9073,7 @@ class IdentityClient(object):
9073
9073
  :rtype: :class:`~oci.response.Response`
9074
9074
 
9075
9075
  :example:
9076
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_bulk_action_resource_types.py.html>`__ to see an example of how to use list_bulk_action_resource_types API.
9076
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_bulk_action_resource_types.py.html>`__ to see an example of how to use list_bulk_action_resource_types API.
9077
9077
  """
9078
9078
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9079
9079
  required_arguments = ['bulkActionType']
@@ -9173,7 +9173,7 @@ class IdentityClient(object):
9173
9173
  :rtype: :class:`~oci.response.Response`
9174
9174
 
9175
9175
  :example:
9176
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_bulk_edit_tags_resource_types.py.html>`__ to see an example of how to use list_bulk_edit_tags_resource_types API.
9176
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_bulk_edit_tags_resource_types.py.html>`__ to see an example of how to use list_bulk_edit_tags_resource_types API.
9177
9177
  """
9178
9178
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9179
9179
  required_arguments = []
@@ -9332,7 +9332,7 @@ class IdentityClient(object):
9332
9332
  :rtype: :class:`~oci.response.Response`
9333
9333
 
9334
9334
  :example:
9335
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_compartments.py.html>`__ to see an example of how to use list_compartments API.
9335
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_compartments.py.html>`__ to see an example of how to use list_compartments API.
9336
9336
  """
9337
9337
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9338
9338
  required_arguments = ['compartmentId']
@@ -9472,7 +9472,7 @@ class IdentityClient(object):
9472
9472
  :rtype: :class:`~oci.response.Response`
9473
9473
 
9474
9474
  :example:
9475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_cost_tracking_tags.py.html>`__ to see an example of how to use list_cost_tracking_tags API.
9475
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_cost_tracking_tags.py.html>`__ to see an example of how to use list_cost_tracking_tags API.
9476
9476
  """
9477
9477
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9478
9478
  required_arguments = ['compartmentId']
@@ -9564,7 +9564,7 @@ class IdentityClient(object):
9564
9564
  :rtype: :class:`~oci.response.Response`
9565
9565
 
9566
9566
  :example:
9567
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_customer_secret_keys.py.html>`__ to see an example of how to use list_customer_secret_keys API.
9567
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_customer_secret_keys.py.html>`__ to see an example of how to use list_customer_secret_keys API.
9568
9568
  """
9569
9569
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9570
9570
  required_arguments = ['userId']
@@ -9688,7 +9688,7 @@ class IdentityClient(object):
9688
9688
  :rtype: :class:`~oci.response.Response`
9689
9689
 
9690
9690
  :example:
9691
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_db_credentials.py.html>`__ to see an example of how to use list_db_credentials API.
9691
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_db_credentials.py.html>`__ to see an example of how to use list_db_credentials API.
9692
9692
  """
9693
9693
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9694
9694
  required_arguments = ['userId']
@@ -9876,7 +9876,7 @@ class IdentityClient(object):
9876
9876
  :rtype: :class:`~oci.response.Response`
9877
9877
 
9878
9878
  :example:
9879
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_domains.py.html>`__ to see an example of how to use list_domains API.
9879
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_domains.py.html>`__ to see an example of how to use list_domains API.
9880
9880
  """
9881
9881
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9882
9882
  required_arguments = ['compartmentId']
@@ -10047,7 +10047,7 @@ class IdentityClient(object):
10047
10047
  :rtype: :class:`~oci.response.Response`
10048
10048
 
10049
10049
  :example:
10050
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_dynamic_groups.py.html>`__ to see an example of how to use list_dynamic_groups API.
10050
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_dynamic_groups.py.html>`__ to see an example of how to use list_dynamic_groups API.
10051
10051
  """
10052
10052
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10053
10053
  required_arguments = ['compartmentId']
@@ -10174,7 +10174,7 @@ class IdentityClient(object):
10174
10174
  :rtype: :class:`~oci.response.Response`
10175
10175
 
10176
10176
  :example:
10177
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_fault_domains.py.html>`__ to see an example of how to use list_fault_domains API.
10177
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_fault_domains.py.html>`__ to see an example of how to use list_fault_domains API.
10178
10178
  """
10179
10179
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10180
10180
  required_arguments = ['compartmentId', 'availabilityDomain']
@@ -10294,7 +10294,7 @@ class IdentityClient(object):
10294
10294
  :rtype: :class:`~oci.response.Response`
10295
10295
 
10296
10296
  :example:
10297
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_groups.py.html>`__ to see an example of how to use list_groups API.
10297
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_groups.py.html>`__ to see an example of how to use list_groups API.
10298
10298
  """
10299
10299
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10300
10300
  required_arguments = ['compartmentId']
@@ -10430,7 +10430,7 @@ class IdentityClient(object):
10430
10430
  :rtype: :class:`~oci.response.Response`
10431
10431
 
10432
10432
  :example:
10433
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_iam_work_request_errors.py.html>`__ to see an example of how to use list_iam_work_request_errors API.
10433
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_iam_work_request_errors.py.html>`__ to see an example of how to use list_iam_work_request_errors API.
10434
10434
  """
10435
10435
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10436
10436
  required_arguments = ['iamWorkRequestId']
@@ -10560,7 +10560,7 @@ class IdentityClient(object):
10560
10560
  :rtype: :class:`~oci.response.Response`
10561
10561
 
10562
10562
  :example:
10563
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_iam_work_request_logs.py.html>`__ to see an example of how to use list_iam_work_request_logs API.
10563
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_iam_work_request_logs.py.html>`__ to see an example of how to use list_iam_work_request_logs API.
10564
10564
  """
10565
10565
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10566
10566
  required_arguments = ['iamWorkRequestId']
@@ -10687,7 +10687,7 @@ class IdentityClient(object):
10687
10687
  :rtype: :class:`~oci.response.Response`
10688
10688
 
10689
10689
  :example:
10690
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_iam_work_requests.py.html>`__ to see an example of how to use list_iam_work_requests API.
10690
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_iam_work_requests.py.html>`__ to see an example of how to use list_iam_work_requests API.
10691
10691
  """
10692
10692
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10693
10693
  required_arguments = ['compartmentId']
@@ -10801,7 +10801,7 @@ class IdentityClient(object):
10801
10801
  :rtype: :class:`~oci.response.Response`
10802
10802
 
10803
10803
  :example:
10804
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_identity_provider_groups.py.html>`__ to see an example of how to use list_identity_provider_groups API.
10804
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_identity_provider_groups.py.html>`__ to see an example of how to use list_identity_provider_groups API.
10805
10805
  """
10806
10806
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10807
10807
  required_arguments = ['identityProviderId']
@@ -10959,7 +10959,7 @@ class IdentityClient(object):
10959
10959
  :rtype: :class:`~oci.response.Response`
10960
10960
 
10961
10961
  :example:
10962
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_identity_providers.py.html>`__ to see an example of how to use list_identity_providers API.
10962
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_identity_providers.py.html>`__ to see an example of how to use list_identity_providers API.
10963
10963
  """
10964
10964
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10965
10965
  required_arguments = ['protocol', 'compartmentId']
@@ -11090,7 +11090,7 @@ class IdentityClient(object):
11090
11090
  :rtype: :class:`~oci.response.Response`
11091
11091
 
11092
11092
  :example:
11093
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_idp_group_mappings.py.html>`__ to see an example of how to use list_idp_group_mappings API.
11093
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_idp_group_mappings.py.html>`__ to see an example of how to use list_idp_group_mappings API.
11094
11094
  """
11095
11095
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11096
11096
  required_arguments = ['identityProviderId']
@@ -11217,7 +11217,7 @@ class IdentityClient(object):
11217
11217
  :rtype: :class:`~oci.response.Response`
11218
11218
 
11219
11219
  :example:
11220
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_mfa_totp_devices.py.html>`__ to see an example of how to use list_mfa_totp_devices API.
11220
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_mfa_totp_devices.py.html>`__ to see an example of how to use list_mfa_totp_devices API.
11221
11221
  """
11222
11222
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11223
11223
  required_arguments = ['userId']
@@ -11373,7 +11373,7 @@ class IdentityClient(object):
11373
11373
  :rtype: :class:`~oci.response.Response`
11374
11374
 
11375
11375
  :example:
11376
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_network_sources.py.html>`__ to see an example of how to use list_network_sources API.
11376
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_network_sources.py.html>`__ to see an example of how to use list_network_sources API.
11377
11377
  """
11378
11378
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11379
11379
  required_arguments = ['compartmentId']
@@ -11504,7 +11504,7 @@ class IdentityClient(object):
11504
11504
  :rtype: :class:`~oci.response.Response`
11505
11505
 
11506
11506
  :example:
11507
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_o_auth_client_credentials.py.html>`__ to see an example of how to use list_o_auth_client_credentials API.
11507
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_o_auth_client_credentials.py.html>`__ to see an example of how to use list_o_auth_client_credentials API.
11508
11508
  """
11509
11509
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11510
11510
  required_arguments = ['userId']
@@ -11653,7 +11653,7 @@ class IdentityClient(object):
11653
11653
  :rtype: :class:`~oci.response.Response`
11654
11654
 
11655
11655
  :example:
11656
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_policies.py.html>`__ to see an example of how to use list_policies API.
11656
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_policies.py.html>`__ to see an example of how to use list_policies API.
11657
11657
  """
11658
11658
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11659
11659
  required_arguments = ['compartmentId']
@@ -11773,7 +11773,7 @@ class IdentityClient(object):
11773
11773
  :rtype: :class:`~oci.response.Response`
11774
11774
 
11775
11775
  :example:
11776
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_region_subscriptions.py.html>`__ to see an example of how to use list_region_subscriptions API.
11776
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_region_subscriptions.py.html>`__ to see an example of how to use list_region_subscriptions API.
11777
11777
  """
11778
11778
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11779
11779
  required_arguments = ['tenancyId']
@@ -11858,7 +11858,7 @@ class IdentityClient(object):
11858
11858
  :rtype: :class:`~oci.response.Response`
11859
11859
 
11860
11860
  :example:
11861
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_regions.py.html>`__ to see an example of how to use list_regions API.
11861
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_regions.py.html>`__ to see an example of how to use list_regions API.
11862
11862
  """
11863
11863
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11864
11864
  required_arguments = []
@@ -11935,7 +11935,7 @@ class IdentityClient(object):
11935
11935
  :rtype: :class:`~oci.response.Response`
11936
11936
 
11937
11937
  :example:
11938
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_smtp_credentials.py.html>`__ to see an example of how to use list_smtp_credentials API.
11938
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_smtp_credentials.py.html>`__ to see an example of how to use list_smtp_credentials API.
11939
11939
  """
11940
11940
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11941
11941
  required_arguments = ['userId']
@@ -12029,7 +12029,7 @@ class IdentityClient(object):
12029
12029
  :rtype: :class:`~oci.response.Response`
12030
12030
 
12031
12031
  :example:
12032
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_standard_tag_namespaces.py.html>`__ to see an example of how to use list_standard_tag_namespaces API.
12032
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_standard_tag_namespaces.py.html>`__ to see an example of how to use list_standard_tag_namespaces API.
12033
12033
  """
12034
12034
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12035
12035
  required_arguments = ['compartmentId']
@@ -12123,7 +12123,7 @@ class IdentityClient(object):
12123
12123
  :rtype: :class:`~oci.response.Response`
12124
12124
 
12125
12125
  :example:
12126
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_swift_passwords.py.html>`__ to see an example of how to use list_swift_passwords API.
12126
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_swift_passwords.py.html>`__ to see an example of how to use list_swift_passwords API.
12127
12127
  """
12128
12128
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12129
12129
  required_arguments = ['userId']
@@ -12228,7 +12228,7 @@ class IdentityClient(object):
12228
12228
  :rtype: :class:`~oci.response.Response`
12229
12229
 
12230
12230
  :example:
12231
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_tag_defaults.py.html>`__ to see an example of how to use list_tag_defaults API.
12231
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_tag_defaults.py.html>`__ to see an example of how to use list_tag_defaults API.
12232
12232
  """
12233
12233
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12234
12234
  required_arguments = []
@@ -12348,7 +12348,7 @@ class IdentityClient(object):
12348
12348
  :rtype: :class:`~oci.response.Response`
12349
12349
 
12350
12350
  :example:
12351
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_tag_namespaces.py.html>`__ to see an example of how to use list_tag_namespaces API.
12351
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_tag_namespaces.py.html>`__ to see an example of how to use list_tag_namespaces API.
12352
12352
  """
12353
12353
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12354
12354
  required_arguments = ['compartmentId']
@@ -12456,7 +12456,7 @@ class IdentityClient(object):
12456
12456
  :rtype: :class:`~oci.response.Response`
12457
12457
 
12458
12458
  :example:
12459
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_tagging_work_request_errors.py.html>`__ to see an example of how to use list_tagging_work_request_errors API.
12459
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_tagging_work_request_errors.py.html>`__ to see an example of how to use list_tagging_work_request_errors API.
12460
12460
  """
12461
12461
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12462
12462
  required_arguments = ['workRequestId']
@@ -12564,7 +12564,7 @@ class IdentityClient(object):
12564
12564
  :rtype: :class:`~oci.response.Response`
12565
12565
 
12566
12566
  :example:
12567
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_tagging_work_request_logs.py.html>`__ to see an example of how to use list_tagging_work_request_logs API.
12567
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_tagging_work_request_logs.py.html>`__ to see an example of how to use list_tagging_work_request_logs API.
12568
12568
  """
12569
12569
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12570
12570
  required_arguments = ['workRequestId']
@@ -12675,7 +12675,7 @@ class IdentityClient(object):
12675
12675
  :rtype: :class:`~oci.response.Response`
12676
12676
 
12677
12677
  :example:
12678
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_tagging_work_requests.py.html>`__ to see an example of how to use list_tagging_work_requests API.
12678
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_tagging_work_requests.py.html>`__ to see an example of how to use list_tagging_work_requests API.
12679
12679
  """
12680
12680
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12681
12681
  required_arguments = ['compartmentId']
@@ -12779,7 +12779,7 @@ class IdentityClient(object):
12779
12779
  :rtype: :class:`~oci.response.Response`
12780
12780
 
12781
12781
  :example:
12782
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_tags.py.html>`__ to see an example of how to use list_tags API.
12782
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_tags.py.html>`__ to see an example of how to use list_tags API.
12783
12783
  """
12784
12784
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12785
12785
  required_arguments = ['tagNamespaceId']
@@ -12913,7 +12913,7 @@ class IdentityClient(object):
12913
12913
  :rtype: :class:`~oci.response.Response`
12914
12914
 
12915
12915
  :example:
12916
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_user_group_memberships.py.html>`__ to see an example of how to use list_user_group_memberships API.
12916
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_user_group_memberships.py.html>`__ to see an example of how to use list_user_group_memberships API.
12917
12917
  """
12918
12918
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12919
12919
  required_arguments = ['compartmentId']
@@ -13050,7 +13050,7 @@ class IdentityClient(object):
13050
13050
  :rtype: :class:`~oci.response.Response`
13051
13051
 
13052
13052
  :example:
13053
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_users.py.html>`__ to see an example of how to use list_users API.
13053
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_users.py.html>`__ to see an example of how to use list_users API.
13054
13054
  """
13055
13055
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13056
13056
  required_arguments = ['compartmentId']
@@ -13183,7 +13183,7 @@ class IdentityClient(object):
13183
13183
  :rtype: :class:`~oci.response.Response`
13184
13184
 
13185
13185
  :example:
13186
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
13186
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/list_work_requests.py.html>`__ to see an example of how to use list_work_requests API.
13187
13187
  """
13188
13188
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13189
13189
  required_arguments = ['compartmentId']
@@ -13304,7 +13304,7 @@ class IdentityClient(object):
13304
13304
  :rtype: :class:`~oci.response.Response`
13305
13305
 
13306
13306
  :example:
13307
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/move_compartment.py.html>`__ to see an example of how to use move_compartment API.
13307
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/move_compartment.py.html>`__ to see an example of how to use move_compartment API.
13308
13308
  """
13309
13309
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13310
13310
  required_arguments = ['compartmentId']
@@ -13413,7 +13413,7 @@ class IdentityClient(object):
13413
13413
  :rtype: :class:`~oci.response.Response`
13414
13414
 
13415
13415
  :example:
13416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/recover_compartment.py.html>`__ to see an example of how to use recover_compartment API.
13416
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/recover_compartment.py.html>`__ to see an example of how to use recover_compartment API.
13417
13417
  """
13418
13418
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13419
13419
  required_arguments = ['compartmentId']
@@ -13529,7 +13529,7 @@ class IdentityClient(object):
13529
13529
  :rtype: :class:`~oci.response.Response`
13530
13530
 
13531
13531
  :example:
13532
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/remove_tag_default_lock.py.html>`__ to see an example of how to use remove_tag_default_lock API.
13532
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/remove_tag_default_lock.py.html>`__ to see an example of how to use remove_tag_default_lock API.
13533
13533
  """
13534
13534
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13535
13535
  required_arguments = ['tagDefaultId']
@@ -13650,7 +13650,7 @@ class IdentityClient(object):
13650
13650
  :rtype: :class:`~oci.response.Response`
13651
13651
 
13652
13652
  :example:
13653
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/remove_tag_namespace_lock.py.html>`__ to see an example of how to use remove_tag_namespace_lock API.
13653
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/remove_tag_namespace_lock.py.html>`__ to see an example of how to use remove_tag_namespace_lock API.
13654
13654
  """
13655
13655
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13656
13656
  required_arguments = ['tagNamespaceId']
@@ -13757,7 +13757,7 @@ class IdentityClient(object):
13757
13757
  :rtype: :class:`~oci.response.Response`
13758
13758
 
13759
13759
  :example:
13760
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/remove_user_from_group.py.html>`__ to see an example of how to use remove_user_from_group API.
13760
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/remove_user_from_group.py.html>`__ to see an example of how to use remove_user_from_group API.
13761
13761
  """
13762
13762
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13763
13763
  required_arguments = ['userGroupMembershipId']
@@ -13850,7 +13850,7 @@ class IdentityClient(object):
13850
13850
  :rtype: :class:`~oci.response.Response`
13851
13851
 
13852
13852
  :example:
13853
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/reset_idp_scim_client.py.html>`__ to see an example of how to use reset_idp_scim_client API.
13853
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/reset_idp_scim_client.py.html>`__ to see an example of how to use reset_idp_scim_client API.
13854
13854
  """
13855
13855
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13856
13856
  required_arguments = ['identityProviderId']
@@ -13949,7 +13949,7 @@ class IdentityClient(object):
13949
13949
  :rtype: :class:`~oci.response.Response`
13950
13950
 
13951
13951
  :example:
13952
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_auth_token.py.html>`__ to see an example of how to use update_auth_token API.
13952
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_auth_token.py.html>`__ to see an example of how to use update_auth_token API.
13953
13953
  """
13954
13954
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13955
13955
  required_arguments = ['userId', 'authTokenId']
@@ -14055,7 +14055,7 @@ class IdentityClient(object):
14055
14055
  :rtype: :class:`~oci.response.Response`
14056
14056
 
14057
14057
  :example:
14058
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_authentication_policy.py.html>`__ to see an example of how to use update_authentication_policy API.
14058
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_authentication_policy.py.html>`__ to see an example of how to use update_authentication_policy API.
14059
14059
  """
14060
14060
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14061
14061
  required_arguments = ['compartmentId']
@@ -14160,7 +14160,7 @@ class IdentityClient(object):
14160
14160
  :rtype: :class:`~oci.response.Response`
14161
14161
 
14162
14162
  :example:
14163
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_compartment.py.html>`__ to see an example of how to use update_compartment API.
14163
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_compartment.py.html>`__ to see an example of how to use update_compartment API.
14164
14164
  """
14165
14165
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14166
14166
  required_arguments = ['compartmentId']
@@ -14268,7 +14268,7 @@ class IdentityClient(object):
14268
14268
  :rtype: :class:`~oci.response.Response`
14269
14269
 
14270
14270
  :example:
14271
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_customer_secret_key.py.html>`__ to see an example of how to use update_customer_secret_key API.
14271
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_customer_secret_key.py.html>`__ to see an example of how to use update_customer_secret_key API.
14272
14272
  """
14273
14273
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14274
14274
  required_arguments = ['userId', 'customerSecretKeyId']
@@ -14381,7 +14381,7 @@ class IdentityClient(object):
14381
14381
  :rtype: :class:`~oci.response.Response`
14382
14382
 
14383
14383
  :example:
14384
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_domain.py.html>`__ to see an example of how to use update_domain API.
14384
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_domain.py.html>`__ to see an example of how to use update_domain API.
14385
14385
  """
14386
14386
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14387
14387
  required_arguments = ['domainId']
@@ -14486,7 +14486,7 @@ class IdentityClient(object):
14486
14486
  :rtype: :class:`~oci.response.Response`
14487
14487
 
14488
14488
  :example:
14489
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_dynamic_group.py.html>`__ to see an example of how to use update_dynamic_group API.
14489
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_dynamic_group.py.html>`__ to see an example of how to use update_dynamic_group API.
14490
14490
  """
14491
14491
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14492
14492
  required_arguments = ['dynamicGroupId']
@@ -14591,7 +14591,7 @@ class IdentityClient(object):
14591
14591
  :rtype: :class:`~oci.response.Response`
14592
14592
 
14593
14593
  :example:
14594
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_group.py.html>`__ to see an example of how to use update_group API.
14594
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_group.py.html>`__ to see an example of how to use update_group API.
14595
14595
  """
14596
14596
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14597
14597
  required_arguments = ['groupId']
@@ -14700,7 +14700,7 @@ class IdentityClient(object):
14700
14700
  :rtype: :class:`~oci.response.Response`
14701
14701
 
14702
14702
  :example:
14703
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_identity_provider.py.html>`__ to see an example of how to use update_identity_provider API.
14703
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_identity_provider.py.html>`__ to see an example of how to use update_identity_provider API.
14704
14704
  """
14705
14705
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14706
14706
  required_arguments = ['identityProviderId']
@@ -14812,7 +14812,7 @@ class IdentityClient(object):
14812
14812
  :rtype: :class:`~oci.response.Response`
14813
14813
 
14814
14814
  :example:
14815
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_idp_group_mapping.py.html>`__ to see an example of how to use update_idp_group_mapping API.
14815
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_idp_group_mapping.py.html>`__ to see an example of how to use update_idp_group_mapping API.
14816
14816
  """
14817
14817
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14818
14818
  required_arguments = ['identityProviderId', 'mappingId']
@@ -14918,7 +14918,7 @@ class IdentityClient(object):
14918
14918
  :rtype: :class:`~oci.response.Response`
14919
14919
 
14920
14920
  :example:
14921
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_network_source.py.html>`__ to see an example of how to use update_network_source API.
14921
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_network_source.py.html>`__ to see an example of how to use update_network_source API.
14922
14922
  """
14923
14923
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14924
14924
  required_arguments = ['networkSourceId']
@@ -15026,7 +15026,7 @@ class IdentityClient(object):
15026
15026
  :rtype: :class:`~oci.response.Response`
15027
15027
 
15028
15028
  :example:
15029
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_o_auth_client_credential.py.html>`__ to see an example of how to use update_o_auth_client_credential API.
15029
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_o_auth_client_credential.py.html>`__ to see an example of how to use update_o_auth_client_credential API.
15030
15030
  """
15031
15031
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15032
15032
  required_arguments = ['userId', 'oauth2ClientCredentialId']
@@ -15134,7 +15134,7 @@ class IdentityClient(object):
15134
15134
  :rtype: :class:`~oci.response.Response`
15135
15135
 
15136
15136
  :example:
15137
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_policy.py.html>`__ to see an example of how to use update_policy API.
15137
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_policy.py.html>`__ to see an example of how to use update_policy API.
15138
15138
  """
15139
15139
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15140
15140
  required_arguments = ['policyId']
@@ -15242,7 +15242,7 @@ class IdentityClient(object):
15242
15242
  :rtype: :class:`~oci.response.Response`
15243
15243
 
15244
15244
  :example:
15245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_smtp_credential.py.html>`__ to see an example of how to use update_smtp_credential API.
15245
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_smtp_credential.py.html>`__ to see an example of how to use update_smtp_credential API.
15246
15246
  """
15247
15247
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15248
15248
  required_arguments = ['userId', 'smtpCredentialId']
@@ -15353,7 +15353,7 @@ class IdentityClient(object):
15353
15353
  :rtype: :class:`~oci.response.Response`
15354
15354
 
15355
15355
  :example:
15356
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_swift_password.py.html>`__ to see an example of how to use update_swift_password API.
15356
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_swift_password.py.html>`__ to see an example of how to use update_swift_password API.
15357
15357
  """
15358
15358
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15359
15359
  required_arguments = ['userId', 'swiftPasswordId']
@@ -15474,7 +15474,7 @@ class IdentityClient(object):
15474
15474
  :rtype: :class:`~oci.response.Response`
15475
15475
 
15476
15476
  :example:
15477
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_tag.py.html>`__ to see an example of how to use update_tag API.
15477
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_tag.py.html>`__ to see an example of how to use update_tag API.
15478
15478
  """
15479
15479
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15480
15480
  required_arguments = ['tagNamespaceId', 'tagName']
@@ -15600,7 +15600,7 @@ class IdentityClient(object):
15600
15600
  :rtype: :class:`~oci.response.Response`
15601
15601
 
15602
15602
  :example:
15603
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_tag_default.py.html>`__ to see an example of how to use update_tag_default API.
15603
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_tag_default.py.html>`__ to see an example of how to use update_tag_default API.
15604
15604
  """
15605
15605
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15606
15606
  required_arguments = ['tagDefaultId']
@@ -15723,7 +15723,7 @@ class IdentityClient(object):
15723
15723
  :rtype: :class:`~oci.response.Response`
15724
15724
 
15725
15725
  :example:
15726
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_tag_namespace.py.html>`__ to see an example of how to use update_tag_namespace API.
15726
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_tag_namespace.py.html>`__ to see an example of how to use update_tag_namespace API.
15727
15727
  """
15728
15728
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15729
15729
  required_arguments = ['tagNamespaceId']
@@ -15833,7 +15833,7 @@ class IdentityClient(object):
15833
15833
  :rtype: :class:`~oci.response.Response`
15834
15834
 
15835
15835
  :example:
15836
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_user.py.html>`__ to see an example of how to use update_user API.
15836
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_user.py.html>`__ to see an example of how to use update_user API.
15837
15837
  """
15838
15838
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15839
15839
  required_arguments = ['userId']
@@ -15938,7 +15938,7 @@ class IdentityClient(object):
15938
15938
  :rtype: :class:`~oci.response.Response`
15939
15939
 
15940
15940
  :example:
15941
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_user_capabilities.py.html>`__ to see an example of how to use update_user_capabilities API.
15941
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_user_capabilities.py.html>`__ to see an example of how to use update_user_capabilities API.
15942
15942
  """
15943
15943
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15944
15944
  required_arguments = ['userId']
@@ -16043,7 +16043,7 @@ class IdentityClient(object):
16043
16043
  :rtype: :class:`~oci.response.Response`
16044
16044
 
16045
16045
  :example:
16046
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/update_user_state.py.html>`__ to see an example of how to use update_user_state API.
16046
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/update_user_state.py.html>`__ to see an example of how to use update_user_state API.
16047
16047
  """
16048
16048
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16049
16049
  required_arguments = ['userId']
@@ -16164,7 +16164,7 @@ class IdentityClient(object):
16164
16164
  :rtype: :class:`~oci.response.Response`
16165
16165
 
16166
16166
  :example:
16167
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/identity/upload_api_key.py.html>`__ to see an example of how to use upload_api_key API.
16167
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/identity/upload_api_key.py.html>`__ to see an example of how to use upload_api_key API.
16168
16168
  """
16169
16169
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16170
16170
  required_arguments = ['userId']