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
@@ -148,7 +148,7 @@ class VirtualNetworkClient(object):
148
148
  :rtype: :class:`~oci.response.Response`
149
149
 
150
150
  :example:
151
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_drg_route_distribution_statements.py.html>`__ to see an example of how to use add_drg_route_distribution_statements API.
151
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_drg_route_distribution_statements.py.html>`__ to see an example of how to use add_drg_route_distribution_statements API.
152
152
  """
153
153
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
154
154
  required_arguments = ['drgRouteDistributionId']
@@ -248,7 +248,7 @@ class VirtualNetworkClient(object):
248
248
  :rtype: :class:`~oci.response.Response`
249
249
 
250
250
  :example:
251
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_drg_route_rules.py.html>`__ to see an example of how to use add_drg_route_rules API.
251
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_drg_route_rules.py.html>`__ to see an example of how to use add_drg_route_rules API.
252
252
  """
253
253
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
254
254
  required_arguments = ['drgRouteTableId']
@@ -365,7 +365,7 @@ class VirtualNetworkClient(object):
365
365
  :rtype: :class:`~oci.response.Response`
366
366
 
367
367
  :example:
368
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_ipv6_subnet_cidr.py.html>`__ to see an example of how to use add_ipv6_subnet_cidr API.
368
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_ipv6_subnet_cidr.py.html>`__ to see an example of how to use add_ipv6_subnet_cidr API.
369
369
  """
370
370
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
371
371
  required_arguments = ['subnetId']
@@ -485,7 +485,7 @@ class VirtualNetworkClient(object):
485
485
  :rtype: :class:`~oci.response.Response`
486
486
 
487
487
  :example:
488
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_ipv6_vcn_cidr.py.html>`__ to see an example of how to use add_ipv6_vcn_cidr API.
488
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_ipv6_vcn_cidr.py.html>`__ to see an example of how to use add_ipv6_vcn_cidr API.
489
489
  """
490
490
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
491
491
  required_arguments = ['vcnId']
@@ -589,7 +589,7 @@ class VirtualNetworkClient(object):
589
589
  :rtype: :class:`~oci.response.Response`
590
590
 
591
591
  :example:
592
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_network_security_group_security_rules.py.html>`__ to see an example of how to use add_network_security_group_security_rules API.
592
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_network_security_group_security_rules.py.html>`__ to see an example of how to use add_network_security_group_security_rules API.
593
593
  """
594
594
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
595
595
  required_arguments = ['networkSecurityGroupId']
@@ -695,7 +695,7 @@ class VirtualNetworkClient(object):
695
695
  :rtype: :class:`~oci.response.Response`
696
696
 
697
697
  :example:
698
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_public_ip_pool_capacity.py.html>`__ to see an example of how to use add_public_ip_pool_capacity API.
698
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_public_ip_pool_capacity.py.html>`__ to see an example of how to use add_public_ip_pool_capacity API.
699
699
  """
700
700
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
701
701
  required_arguments = ['publicIpPoolId']
@@ -820,7 +820,7 @@ class VirtualNetworkClient(object):
820
820
  :rtype: :class:`~oci.response.Response`
821
821
 
822
822
  :example:
823
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/add_vcn_cidr.py.html>`__ to see an example of how to use add_vcn_cidr API.
823
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/add_vcn_cidr.py.html>`__ to see an example of how to use add_vcn_cidr API.
824
824
  """
825
825
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
826
826
  required_arguments = ['vcnId']
@@ -925,7 +925,7 @@ class VirtualNetworkClient(object):
925
925
  :rtype: :class:`~oci.response.Response`
926
926
 
927
927
  :example:
928
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/advertise_byoip_range.py.html>`__ to see an example of how to use advertise_byoip_range API.
928
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/advertise_byoip_range.py.html>`__ to see an example of how to use advertise_byoip_range API.
929
929
  """
930
930
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
931
931
  required_arguments = ['byoipRangeId']
@@ -1035,7 +1035,7 @@ class VirtualNetworkClient(object):
1035
1035
  :rtype: :class:`~oci.response.Response`
1036
1036
 
1037
1037
  :example:
1038
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/attach_service_id.py.html>`__ to see an example of how to use attach_service_id API.
1038
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/attach_service_id.py.html>`__ to see an example of how to use attach_service_id API.
1039
1039
  """
1040
1040
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1041
1041
  required_arguments = ['serviceGatewayId']
@@ -1138,7 +1138,7 @@ class VirtualNetworkClient(object):
1138
1138
  :rtype: :class:`~oci.response.Response`
1139
1139
 
1140
1140
  :example:
1141
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/bulk_add_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use bulk_add_virtual_circuit_public_prefixes API.
1141
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/bulk_add_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use bulk_add_virtual_circuit_public_prefixes API.
1142
1142
  """
1143
1143
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1144
1144
  required_arguments = ['virtualCircuitId']
@@ -1234,7 +1234,7 @@ class VirtualNetworkClient(object):
1234
1234
  :rtype: :class:`~oci.response.Response`
1235
1235
 
1236
1236
  :example:
1237
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/bulk_delete_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use bulk_delete_virtual_circuit_public_prefixes API.
1237
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/bulk_delete_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use bulk_delete_virtual_circuit_public_prefixes API.
1238
1238
  """
1239
1239
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1240
1240
  required_arguments = ['virtualCircuitId']
@@ -1342,7 +1342,7 @@ class VirtualNetworkClient(object):
1342
1342
  :rtype: :class:`~oci.response.Response`
1343
1343
 
1344
1344
  :example:
1345
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_byoip_range_compartment.py.html>`__ to see an example of how to use change_byoip_range_compartment API.
1345
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_byoip_range_compartment.py.html>`__ to see an example of how to use change_byoip_range_compartment API.
1346
1346
  """
1347
1347
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1348
1348
  required_arguments = ['byoipRangeId']
@@ -1463,7 +1463,7 @@ class VirtualNetworkClient(object):
1463
1463
  :rtype: :class:`~oci.response.Response`
1464
1464
 
1465
1465
  :example:
1466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_capture_filter_compartment.py.html>`__ to see an example of how to use change_capture_filter_compartment API.
1466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_capture_filter_compartment.py.html>`__ to see an example of how to use change_capture_filter_compartment API.
1467
1467
  """
1468
1468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1469
1469
  required_arguments = ['captureFilterId']
@@ -1581,7 +1581,7 @@ class VirtualNetworkClient(object):
1581
1581
  :rtype: :class:`~oci.response.Response`
1582
1582
 
1583
1583
  :example:
1584
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_cpe_compartment.py.html>`__ to see an example of how to use change_cpe_compartment API.
1584
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_cpe_compartment.py.html>`__ to see an example of how to use change_cpe_compartment API.
1585
1585
  """
1586
1586
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1587
1587
  required_arguments = ['cpeId']
@@ -1699,7 +1699,7 @@ class VirtualNetworkClient(object):
1699
1699
  :rtype: :class:`~oci.response.Response`
1700
1700
 
1701
1701
  :example:
1702
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_cross_connect_compartment.py.html>`__ to see an example of how to use change_cross_connect_compartment API.
1702
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_cross_connect_compartment.py.html>`__ to see an example of how to use change_cross_connect_compartment API.
1703
1703
  """
1704
1704
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1705
1705
  required_arguments = ['crossConnectId']
@@ -1817,7 +1817,7 @@ class VirtualNetworkClient(object):
1817
1817
  :rtype: :class:`~oci.response.Response`
1818
1818
 
1819
1819
  :example:
1820
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_cross_connect_group_compartment.py.html>`__ to see an example of how to use change_cross_connect_group_compartment API.
1820
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_cross_connect_group_compartment.py.html>`__ to see an example of how to use change_cross_connect_group_compartment API.
1821
1821
  """
1822
1822
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1823
1823
  required_arguments = ['crossConnectGroupId']
@@ -1935,7 +1935,7 @@ class VirtualNetworkClient(object):
1935
1935
  :rtype: :class:`~oci.response.Response`
1936
1936
 
1937
1937
  :example:
1938
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_dhcp_options_compartment.py.html>`__ to see an example of how to use change_dhcp_options_compartment API.
1938
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_dhcp_options_compartment.py.html>`__ to see an example of how to use change_dhcp_options_compartment API.
1939
1939
  """
1940
1940
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1941
1941
  required_arguments = ['dhcpId']
@@ -2051,7 +2051,7 @@ class VirtualNetworkClient(object):
2051
2051
  :rtype: :class:`~oci.response.Response`
2052
2052
 
2053
2053
  :example:
2054
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_drg_compartment.py.html>`__ to see an example of how to use change_drg_compartment API.
2054
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_drg_compartment.py.html>`__ to see an example of how to use change_drg_compartment API.
2055
2055
  """
2056
2056
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2057
2057
  required_arguments = ['drgId']
@@ -2167,7 +2167,7 @@ class VirtualNetworkClient(object):
2167
2167
  :rtype: :class:`~oci.response.Response`
2168
2168
 
2169
2169
  :example:
2170
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_internet_gateway_compartment.py.html>`__ to see an example of how to use change_internet_gateway_compartment API.
2170
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_internet_gateway_compartment.py.html>`__ to see an example of how to use change_internet_gateway_compartment API.
2171
2171
  """
2172
2172
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2173
2173
  required_arguments = ['igId']
@@ -2283,7 +2283,7 @@ class VirtualNetworkClient(object):
2283
2283
  :rtype: :class:`~oci.response.Response`
2284
2284
 
2285
2285
  :example:
2286
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_ip_sec_connection_compartment.py.html>`__ to see an example of how to use change_ip_sec_connection_compartment API.
2286
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_ip_sec_connection_compartment.py.html>`__ to see an example of how to use change_ip_sec_connection_compartment API.
2287
2287
  """
2288
2288
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2289
2289
  required_arguments = ['ipscId']
@@ -2401,7 +2401,7 @@ class VirtualNetworkClient(object):
2401
2401
  :rtype: :class:`~oci.response.Response`
2402
2402
 
2403
2403
  :example:
2404
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_local_peering_gateway_compartment.py.html>`__ to see an example of how to use change_local_peering_gateway_compartment API.
2404
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_local_peering_gateway_compartment.py.html>`__ to see an example of how to use change_local_peering_gateway_compartment API.
2405
2405
  """
2406
2406
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2407
2407
  required_arguments = ['localPeeringGatewayId']
@@ -2517,7 +2517,7 @@ class VirtualNetworkClient(object):
2517
2517
  :rtype: :class:`~oci.response.Response`
2518
2518
 
2519
2519
  :example:
2520
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_nat_gateway_compartment.py.html>`__ to see an example of how to use change_nat_gateway_compartment API.
2520
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_nat_gateway_compartment.py.html>`__ to see an example of how to use change_nat_gateway_compartment API.
2521
2521
  """
2522
2522
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2523
2523
  required_arguments = ['natGatewayId']
@@ -2632,7 +2632,7 @@ class VirtualNetworkClient(object):
2632
2632
  :rtype: :class:`~oci.response.Response`
2633
2633
 
2634
2634
  :example:
2635
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_network_security_group_compartment.py.html>`__ to see an example of how to use change_network_security_group_compartment API.
2635
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_network_security_group_compartment.py.html>`__ to see an example of how to use change_network_security_group_compartment API.
2636
2636
  """
2637
2637
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2638
2638
  required_arguments = ['networkSecurityGroupId']
@@ -2751,7 +2751,7 @@ class VirtualNetworkClient(object):
2751
2751
  :rtype: :class:`~oci.response.Response`
2752
2752
 
2753
2753
  :example:
2754
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_public_ip_compartment.py.html>`__ to see an example of how to use change_public_ip_compartment API.
2754
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_public_ip_compartment.py.html>`__ to see an example of how to use change_public_ip_compartment API.
2755
2755
  """
2756
2756
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2757
2757
  required_arguments = ['publicIpId']
@@ -2867,7 +2867,7 @@ class VirtualNetworkClient(object):
2867
2867
  :rtype: :class:`~oci.response.Response`
2868
2868
 
2869
2869
  :example:
2870
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_public_ip_pool_compartment.py.html>`__ to see an example of how to use change_public_ip_pool_compartment API.
2870
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_public_ip_pool_compartment.py.html>`__ to see an example of how to use change_public_ip_pool_compartment API.
2871
2871
  """
2872
2872
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2873
2873
  required_arguments = ['publicIpPoolId']
@@ -2983,7 +2983,7 @@ class VirtualNetworkClient(object):
2983
2983
  :rtype: :class:`~oci.response.Response`
2984
2984
 
2985
2985
  :example:
2986
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_remote_peering_connection_compartment.py.html>`__ to see an example of how to use change_remote_peering_connection_compartment API.
2986
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_remote_peering_connection_compartment.py.html>`__ to see an example of how to use change_remote_peering_connection_compartment API.
2987
2987
  """
2988
2988
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2989
2989
  required_arguments = ['remotePeeringConnectionId']
@@ -3101,7 +3101,7 @@ class VirtualNetworkClient(object):
3101
3101
  :rtype: :class:`~oci.response.Response`
3102
3102
 
3103
3103
  :example:
3104
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_route_table_compartment.py.html>`__ to see an example of how to use change_route_table_compartment API.
3104
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_route_table_compartment.py.html>`__ to see an example of how to use change_route_table_compartment API.
3105
3105
  """
3106
3106
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3107
3107
  required_arguments = ['rtId']
@@ -3217,7 +3217,7 @@ class VirtualNetworkClient(object):
3217
3217
  :rtype: :class:`~oci.response.Response`
3218
3218
 
3219
3219
  :example:
3220
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_security_list_compartment.py.html>`__ to see an example of how to use change_security_list_compartment API.
3220
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_security_list_compartment.py.html>`__ to see an example of how to use change_security_list_compartment API.
3221
3221
  """
3222
3222
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3223
3223
  required_arguments = ['securityListId']
@@ -3333,7 +3333,7 @@ class VirtualNetworkClient(object):
3333
3333
  :rtype: :class:`~oci.response.Response`
3334
3334
 
3335
3335
  :example:
3336
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_service_gateway_compartment.py.html>`__ to see an example of how to use change_service_gateway_compartment API.
3336
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_service_gateway_compartment.py.html>`__ to see an example of how to use change_service_gateway_compartment API.
3337
3337
  """
3338
3338
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3339
3339
  required_arguments = ['serviceGatewayId']
@@ -3449,7 +3449,7 @@ class VirtualNetworkClient(object):
3449
3449
  :rtype: :class:`~oci.response.Response`
3450
3450
 
3451
3451
  :example:
3452
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_subnet_compartment.py.html>`__ to see an example of how to use change_subnet_compartment API.
3452
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_subnet_compartment.py.html>`__ to see an example of how to use change_subnet_compartment API.
3453
3453
  """
3454
3454
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3455
3455
  required_arguments = ['subnetId']
@@ -3565,7 +3565,7 @@ class VirtualNetworkClient(object):
3565
3565
  :rtype: :class:`~oci.response.Response`
3566
3566
 
3567
3567
  :example:
3568
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_vcn_compartment.py.html>`__ to see an example of how to use change_vcn_compartment API.
3568
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_vcn_compartment.py.html>`__ to see an example of how to use change_vcn_compartment API.
3569
3569
  """
3570
3570
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3571
3571
  required_arguments = ['vcnId']
@@ -3681,7 +3681,7 @@ class VirtualNetworkClient(object):
3681
3681
  :rtype: :class:`~oci.response.Response`
3682
3682
 
3683
3683
  :example:
3684
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_virtual_circuit_compartment.py.html>`__ to see an example of how to use change_virtual_circuit_compartment API.
3684
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_virtual_circuit_compartment.py.html>`__ to see an example of how to use change_virtual_circuit_compartment API.
3685
3685
  """
3686
3686
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3687
3687
  required_arguments = ['virtualCircuitId']
@@ -3804,7 +3804,7 @@ class VirtualNetworkClient(object):
3804
3804
  :rtype: :class:`~oci.response.Response`
3805
3805
 
3806
3806
  :example:
3807
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_vlan_compartment.py.html>`__ to see an example of how to use change_vlan_compartment API.
3807
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_vlan_compartment.py.html>`__ to see an example of how to use change_vlan_compartment API.
3808
3808
  """
3809
3809
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3810
3810
  required_arguments = ['vlanId']
@@ -3927,7 +3927,7 @@ class VirtualNetworkClient(object):
3927
3927
  :rtype: :class:`~oci.response.Response`
3928
3928
 
3929
3929
  :example:
3930
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/change_vtap_compartment.py.html>`__ to see an example of how to use change_vtap_compartment API.
3930
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/change_vtap_compartment.py.html>`__ to see an example of how to use change_vtap_compartment API.
3931
3931
  """
3932
3932
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3933
3933
  required_arguments = ['vtapId']
@@ -4039,7 +4039,7 @@ class VirtualNetworkClient(object):
4039
4039
  :rtype: :class:`~oci.response.Response`
4040
4040
 
4041
4041
  :example:
4042
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/connect_local_peering_gateways.py.html>`__ to see an example of how to use connect_local_peering_gateways API.
4042
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/connect_local_peering_gateways.py.html>`__ to see an example of how to use connect_local_peering_gateways API.
4043
4043
  """
4044
4044
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4045
4045
  required_arguments = ['localPeeringGatewayId']
@@ -4139,7 +4139,7 @@ class VirtualNetworkClient(object):
4139
4139
  :rtype: :class:`~oci.response.Response`
4140
4140
 
4141
4141
  :example:
4142
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/connect_remote_peering_connections.py.html>`__ to see an example of how to use connect_remote_peering_connections API.
4142
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/connect_remote_peering_connections.py.html>`__ to see an example of how to use connect_remote_peering_connections API.
4143
4143
  """
4144
4144
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4145
4145
  required_arguments = ['remotePeeringConnectionId']
@@ -4238,7 +4238,7 @@ class VirtualNetworkClient(object):
4238
4238
  :rtype: :class:`~oci.response.Response`
4239
4239
 
4240
4240
  :example:
4241
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_byoip_range.py.html>`__ to see an example of how to use create_byoip_range API.
4241
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_byoip_range.py.html>`__ to see an example of how to use create_byoip_range API.
4242
4242
  """
4243
4243
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4244
4244
  required_arguments = []
@@ -4347,7 +4347,7 @@ class VirtualNetworkClient(object):
4347
4347
  :rtype: :class:`~oci.response.Response`
4348
4348
 
4349
4349
  :example:
4350
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_capture_filter.py.html>`__ to see an example of how to use create_capture_filter API.
4350
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_capture_filter.py.html>`__ to see an example of how to use create_capture_filter API.
4351
4351
  """
4352
4352
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4353
4353
  required_arguments = []
@@ -4460,7 +4460,7 @@ class VirtualNetworkClient(object):
4460
4460
  :rtype: :class:`~oci.response.Response`
4461
4461
 
4462
4462
  :example:
4463
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_cpe.py.html>`__ to see an example of how to use create_cpe API.
4463
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_cpe.py.html>`__ to see an example of how to use create_cpe API.
4464
4464
  """
4465
4465
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4466
4466
  required_arguments = []
@@ -4576,7 +4576,7 @@ class VirtualNetworkClient(object):
4576
4576
  :rtype: :class:`~oci.response.Response`
4577
4577
 
4578
4578
  :example:
4579
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_cross_connect.py.html>`__ to see an example of how to use create_cross_connect API.
4579
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_cross_connect.py.html>`__ to see an example of how to use create_cross_connect API.
4580
4580
  """
4581
4581
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4582
4582
  required_arguments = []
@@ -4688,7 +4688,7 @@ class VirtualNetworkClient(object):
4688
4688
  :rtype: :class:`~oci.response.Response`
4689
4689
 
4690
4690
  :example:
4691
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_cross_connect_group.py.html>`__ to see an example of how to use create_cross_connect_group API.
4691
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_cross_connect_group.py.html>`__ to see an example of how to use create_cross_connect_group API.
4692
4692
  """
4693
4693
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4694
4694
  required_arguments = []
@@ -4796,7 +4796,7 @@ class VirtualNetworkClient(object):
4796
4796
  :rtype: :class:`~oci.response.Response`
4797
4797
 
4798
4798
  :example:
4799
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_dhcp_options.py.html>`__ to see an example of how to use create_dhcp_options API.
4799
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_dhcp_options.py.html>`__ to see an example of how to use create_dhcp_options API.
4800
4800
  """
4801
4801
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4802
4802
  required_arguments = []
@@ -4903,7 +4903,7 @@ class VirtualNetworkClient(object):
4903
4903
  :rtype: :class:`~oci.response.Response`
4904
4904
 
4905
4905
  :example:
4906
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_drg.py.html>`__ to see an example of how to use create_drg API.
4906
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_drg.py.html>`__ to see an example of how to use create_drg API.
4907
4907
  """
4908
4908
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4909
4909
  required_arguments = []
@@ -5008,7 +5008,7 @@ class VirtualNetworkClient(object):
5008
5008
  :rtype: :class:`~oci.response.Response`
5009
5009
 
5010
5010
  :example:
5011
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_drg_attachment.py.html>`__ to see an example of how to use create_drg_attachment API.
5011
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_drg_attachment.py.html>`__ to see an example of how to use create_drg_attachment API.
5012
5012
  """
5013
5013
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5014
5014
  required_arguments = []
@@ -5102,7 +5102,7 @@ class VirtualNetworkClient(object):
5102
5102
  :rtype: :class:`~oci.response.Response`
5103
5103
 
5104
5104
  :example:
5105
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_drg_route_distribution.py.html>`__ to see an example of how to use create_drg_route_distribution API.
5105
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_drg_route_distribution.py.html>`__ to see an example of how to use create_drg_route_distribution API.
5106
5106
  """
5107
5107
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5108
5108
  required_arguments = []
@@ -5194,7 +5194,7 @@ class VirtualNetworkClient(object):
5194
5194
  :rtype: :class:`~oci.response.Response`
5195
5195
 
5196
5196
  :example:
5197
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_drg_route_table.py.html>`__ to see an example of how to use create_drg_route_table API.
5197
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_drg_route_table.py.html>`__ to see an example of how to use create_drg_route_table API.
5198
5198
  """
5199
5199
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5200
5200
  required_arguments = []
@@ -5308,7 +5308,7 @@ class VirtualNetworkClient(object):
5308
5308
  :rtype: :class:`~oci.response.Response`
5309
5309
 
5310
5310
  :example:
5311
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_internet_gateway.py.html>`__ to see an example of how to use create_internet_gateway API.
5311
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_internet_gateway.py.html>`__ to see an example of how to use create_internet_gateway API.
5312
5312
  """
5313
5313
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5314
5314
  required_arguments = []
@@ -5431,7 +5431,7 @@ class VirtualNetworkClient(object):
5431
5431
  :rtype: :class:`~oci.response.Response`
5432
5432
 
5433
5433
  :example:
5434
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_ip_sec_connection.py.html>`__ to see an example of how to use create_ip_sec_connection API.
5434
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_ip_sec_connection.py.html>`__ to see an example of how to use create_ip_sec_connection API.
5435
5435
  """
5436
5436
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5437
5437
  required_arguments = []
@@ -5528,7 +5528,7 @@ class VirtualNetworkClient(object):
5528
5528
  :rtype: :class:`~oci.response.Response`
5529
5529
 
5530
5530
  :example:
5531
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_ipv6.py.html>`__ to see an example of how to use create_ipv6 API.
5531
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_ipv6.py.html>`__ to see an example of how to use create_ipv6 API.
5532
5532
  """
5533
5533
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5534
5534
  required_arguments = []
@@ -5621,7 +5621,7 @@ class VirtualNetworkClient(object):
5621
5621
  :rtype: :class:`~oci.response.Response`
5622
5622
 
5623
5623
  :example:
5624
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_local_peering_gateway.py.html>`__ to see an example of how to use create_local_peering_gateway API.
5624
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_local_peering_gateway.py.html>`__ to see an example of how to use create_local_peering_gateway API.
5625
5625
  """
5626
5626
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5627
5627
  required_arguments = []
@@ -5713,7 +5713,7 @@ class VirtualNetworkClient(object):
5713
5713
  :rtype: :class:`~oci.response.Response`
5714
5714
 
5715
5715
  :example:
5716
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_nat_gateway.py.html>`__ to see an example of how to use create_nat_gateway API.
5716
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_nat_gateway.py.html>`__ to see an example of how to use create_nat_gateway API.
5717
5717
  """
5718
5718
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5719
5719
  required_arguments = []
@@ -5804,7 +5804,7 @@ class VirtualNetworkClient(object):
5804
5804
  :rtype: :class:`~oci.response.Response`
5805
5805
 
5806
5806
  :example:
5807
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_network_security_group.py.html>`__ to see an example of how to use create_network_security_group API.
5807
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_network_security_group.py.html>`__ to see an example of how to use create_network_security_group API.
5808
5808
  """
5809
5809
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5810
5810
  required_arguments = []
@@ -5899,7 +5899,7 @@ class VirtualNetworkClient(object):
5899
5899
  :rtype: :class:`~oci.response.Response`
5900
5900
 
5901
5901
  :example:
5902
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_private_ip.py.html>`__ to see an example of how to use create_private_ip API.
5902
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_private_ip.py.html>`__ to see an example of how to use create_private_ip API.
5903
5903
  """
5904
5904
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5905
5905
  required_arguments = []
@@ -6013,7 +6013,7 @@ class VirtualNetworkClient(object):
6013
6013
  :rtype: :class:`~oci.response.Response`
6014
6014
 
6015
6015
  :example:
6016
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_public_ip.py.html>`__ to see an example of how to use create_public_ip API.
6016
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_public_ip.py.html>`__ to see an example of how to use create_public_ip API.
6017
6017
  """
6018
6018
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6019
6019
  required_arguments = []
@@ -6108,7 +6108,7 @@ class VirtualNetworkClient(object):
6108
6108
  :rtype: :class:`~oci.response.Response`
6109
6109
 
6110
6110
  :example:
6111
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_public_ip_pool.py.html>`__ to see an example of how to use create_public_ip_pool API.
6111
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_public_ip_pool.py.html>`__ to see an example of how to use create_public_ip_pool API.
6112
6112
  """
6113
6113
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6114
6114
  required_arguments = []
@@ -6201,7 +6201,7 @@ class VirtualNetworkClient(object):
6201
6201
  :rtype: :class:`~oci.response.Response`
6202
6202
 
6203
6203
  :example:
6204
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_remote_peering_connection.py.html>`__ to see an example of how to use create_remote_peering_connection API.
6204
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_remote_peering_connection.py.html>`__ to see an example of how to use create_remote_peering_connection API.
6205
6205
  """
6206
6206
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6207
6207
  required_arguments = []
@@ -6314,7 +6314,7 @@ class VirtualNetworkClient(object):
6314
6314
  :rtype: :class:`~oci.response.Response`
6315
6315
 
6316
6316
  :example:
6317
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_route_table.py.html>`__ to see an example of how to use create_route_table API.
6317
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_route_table.py.html>`__ to see an example of how to use create_route_table API.
6318
6318
  """
6319
6319
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6320
6320
  required_arguments = []
@@ -6424,7 +6424,7 @@ class VirtualNetworkClient(object):
6424
6424
  :rtype: :class:`~oci.response.Response`
6425
6425
 
6426
6426
  :example:
6427
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_security_list.py.html>`__ to see an example of how to use create_security_list API.
6427
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_security_list.py.html>`__ to see an example of how to use create_security_list API.
6428
6428
  """
6429
6429
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6430
6430
  required_arguments = []
@@ -6527,7 +6527,7 @@ class VirtualNetworkClient(object):
6527
6527
  :rtype: :class:`~oci.response.Response`
6528
6528
 
6529
6529
  :example:
6530
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_service_gateway.py.html>`__ to see an example of how to use create_service_gateway API.
6530
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_service_gateway.py.html>`__ to see an example of how to use create_service_gateway API.
6531
6531
  """
6532
6532
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6533
6533
  required_arguments = []
@@ -6658,7 +6658,7 @@ class VirtualNetworkClient(object):
6658
6658
  :rtype: :class:`~oci.response.Response`
6659
6659
 
6660
6660
  :example:
6661
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_subnet.py.html>`__ to see an example of how to use create_subnet API.
6661
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_subnet.py.html>`__ to see an example of how to use create_subnet API.
6662
6662
  """
6663
6663
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6664
6664
  required_arguments = []
@@ -6790,7 +6790,7 @@ class VirtualNetworkClient(object):
6790
6790
  :rtype: :class:`~oci.response.Response`
6791
6791
 
6792
6792
  :example:
6793
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_vcn.py.html>`__ to see an example of how to use create_vcn API.
6793
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_vcn.py.html>`__ to see an example of how to use create_vcn API.
6794
6794
  """
6795
6795
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6796
6796
  required_arguments = []
@@ -6907,7 +6907,7 @@ class VirtualNetworkClient(object):
6907
6907
  :rtype: :class:`~oci.response.Response`
6908
6908
 
6909
6909
  :example:
6910
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_virtual_circuit.py.html>`__ to see an example of how to use create_virtual_circuit API.
6910
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_virtual_circuit.py.html>`__ to see an example of how to use create_virtual_circuit API.
6911
6911
  """
6912
6912
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6913
6913
  required_arguments = []
@@ -7004,7 +7004,7 @@ class VirtualNetworkClient(object):
7004
7004
  :rtype: :class:`~oci.response.Response`
7005
7005
 
7006
7006
  :example:
7007
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_vlan.py.html>`__ to see an example of how to use create_vlan API.
7007
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_vlan.py.html>`__ to see an example of how to use create_vlan API.
7008
7008
  """
7009
7009
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7010
7010
  required_arguments = []
@@ -7113,7 +7113,7 @@ class VirtualNetworkClient(object):
7113
7113
  :rtype: :class:`~oci.response.Response`
7114
7114
 
7115
7115
  :example:
7116
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/create_vtap.py.html>`__ to see an example of how to use create_vtap API.
7116
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/create_vtap.py.html>`__ to see an example of how to use create_vtap API.
7117
7117
  """
7118
7118
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7119
7119
  required_arguments = []
@@ -7216,7 +7216,7 @@ class VirtualNetworkClient(object):
7216
7216
  :rtype: :class:`~oci.response.Response`
7217
7217
 
7218
7218
  :example:
7219
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_byoip_range.py.html>`__ to see an example of how to use delete_byoip_range API.
7219
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_byoip_range.py.html>`__ to see an example of how to use delete_byoip_range API.
7220
7220
  """
7221
7221
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7222
7222
  required_arguments = ['byoipRangeId']
@@ -7321,7 +7321,7 @@ class VirtualNetworkClient(object):
7321
7321
  :rtype: :class:`~oci.response.Response`
7322
7322
 
7323
7323
  :example:
7324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_capture_filter.py.html>`__ to see an example of how to use delete_capture_filter API.
7324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_capture_filter.py.html>`__ to see an example of how to use delete_capture_filter API.
7325
7325
  """
7326
7326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7327
7327
  required_arguments = ['captureFilterId']
@@ -7423,7 +7423,7 @@ class VirtualNetworkClient(object):
7423
7423
  :rtype: :class:`~oci.response.Response`
7424
7424
 
7425
7425
  :example:
7426
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_cpe.py.html>`__ to see an example of how to use delete_cpe API.
7426
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_cpe.py.html>`__ to see an example of how to use delete_cpe API.
7427
7427
  """
7428
7428
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7429
7429
  required_arguments = ['cpeId']
@@ -7524,7 +7524,7 @@ class VirtualNetworkClient(object):
7524
7524
  :rtype: :class:`~oci.response.Response`
7525
7525
 
7526
7526
  :example:
7527
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_cross_connect.py.html>`__ to see an example of how to use delete_cross_connect API.
7527
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_cross_connect.py.html>`__ to see an example of how to use delete_cross_connect API.
7528
7528
  """
7529
7529
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7530
7530
  required_arguments = ['crossConnectId']
@@ -7626,7 +7626,7 @@ class VirtualNetworkClient(object):
7626
7626
  :rtype: :class:`~oci.response.Response`
7627
7627
 
7628
7628
  :example:
7629
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_cross_connect_group.py.html>`__ to see an example of how to use delete_cross_connect_group API.
7629
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_cross_connect_group.py.html>`__ to see an example of how to use delete_cross_connect_group API.
7630
7630
  """
7631
7631
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7632
7632
  required_arguments = ['crossConnectGroupId']
@@ -7730,7 +7730,7 @@ class VirtualNetworkClient(object):
7730
7730
  :rtype: :class:`~oci.response.Response`
7731
7731
 
7732
7732
  :example:
7733
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_dhcp_options.py.html>`__ to see an example of how to use delete_dhcp_options API.
7733
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_dhcp_options.py.html>`__ to see an example of how to use delete_dhcp_options API.
7734
7734
  """
7735
7735
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7736
7736
  required_arguments = ['dhcpId']
@@ -7831,7 +7831,7 @@ class VirtualNetworkClient(object):
7831
7831
  :rtype: :class:`~oci.response.Response`
7832
7832
 
7833
7833
  :example:
7834
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_drg.py.html>`__ to see an example of how to use delete_drg API.
7834
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_drg.py.html>`__ to see an example of how to use delete_drg API.
7835
7835
  """
7836
7836
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7837
7837
  required_arguments = ['drgId']
@@ -7931,7 +7931,7 @@ class VirtualNetworkClient(object):
7931
7931
  :rtype: :class:`~oci.response.Response`
7932
7932
 
7933
7933
  :example:
7934
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_drg_attachment.py.html>`__ to see an example of how to use delete_drg_attachment API.
7934
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_drg_attachment.py.html>`__ to see an example of how to use delete_drg_attachment API.
7935
7935
  """
7936
7936
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7937
7937
  required_arguments = ['drgAttachmentId']
@@ -8031,7 +8031,7 @@ class VirtualNetworkClient(object):
8031
8031
  :rtype: :class:`~oci.response.Response`
8032
8032
 
8033
8033
  :example:
8034
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_drg_route_distribution.py.html>`__ to see an example of how to use delete_drg_route_distribution API.
8034
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_drg_route_distribution.py.html>`__ to see an example of how to use delete_drg_route_distribution API.
8035
8035
  """
8036
8036
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8037
8037
  required_arguments = ['drgRouteDistributionId']
@@ -8129,7 +8129,7 @@ class VirtualNetworkClient(object):
8129
8129
  :rtype: :class:`~oci.response.Response`
8130
8130
 
8131
8131
  :example:
8132
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_drg_route_table.py.html>`__ to see an example of how to use delete_drg_route_table API.
8132
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_drg_route_table.py.html>`__ to see an example of how to use delete_drg_route_table API.
8133
8133
  """
8134
8134
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8135
8135
  required_arguments = ['drgRouteTableId']
@@ -8231,7 +8231,7 @@ class VirtualNetworkClient(object):
8231
8231
  :rtype: :class:`~oci.response.Response`
8232
8232
 
8233
8233
  :example:
8234
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_internet_gateway.py.html>`__ to see an example of how to use delete_internet_gateway API.
8234
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_internet_gateway.py.html>`__ to see an example of how to use delete_internet_gateway API.
8235
8235
  """
8236
8236
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8237
8237
  required_arguments = ['igId']
@@ -8336,7 +8336,7 @@ class VirtualNetworkClient(object):
8336
8336
  :rtype: :class:`~oci.response.Response`
8337
8337
 
8338
8338
  :example:
8339
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_ip_sec_connection.py.html>`__ to see an example of how to use delete_ip_sec_connection API.
8339
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_ip_sec_connection.py.html>`__ to see an example of how to use delete_ip_sec_connection API.
8340
8340
  """
8341
8341
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8342
8342
  required_arguments = ['ipscId']
@@ -8443,7 +8443,7 @@ class VirtualNetworkClient(object):
8443
8443
  :rtype: :class:`~oci.response.Response`
8444
8444
 
8445
8445
  :example:
8446
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_ipv6.py.html>`__ to see an example of how to use delete_ipv6 API.
8446
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_ipv6.py.html>`__ to see an example of how to use delete_ipv6 API.
8447
8447
  """
8448
8448
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8449
8449
  required_arguments = ['ipv6Id']
@@ -8546,7 +8546,7 @@ class VirtualNetworkClient(object):
8546
8546
  :rtype: :class:`~oci.response.Response`
8547
8547
 
8548
8548
  :example:
8549
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_local_peering_gateway.py.html>`__ to see an example of how to use delete_local_peering_gateway API.
8549
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_local_peering_gateway.py.html>`__ to see an example of how to use delete_local_peering_gateway API.
8550
8550
  """
8551
8551
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8552
8552
  required_arguments = ['localPeeringGatewayId']
@@ -8648,7 +8648,7 @@ class VirtualNetworkClient(object):
8648
8648
  :rtype: :class:`~oci.response.Response`
8649
8649
 
8650
8650
  :example:
8651
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_nat_gateway.py.html>`__ to see an example of how to use delete_nat_gateway API.
8651
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_nat_gateway.py.html>`__ to see an example of how to use delete_nat_gateway API.
8652
8652
  """
8653
8653
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8654
8654
  required_arguments = ['natGatewayId']
@@ -8755,7 +8755,7 @@ class VirtualNetworkClient(object):
8755
8755
  :rtype: :class:`~oci.response.Response`
8756
8756
 
8757
8757
  :example:
8758
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_network_security_group.py.html>`__ to see an example of how to use delete_network_security_group API.
8758
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_network_security_group.py.html>`__ to see an example of how to use delete_network_security_group API.
8759
8759
  """
8760
8760
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8761
8761
  required_arguments = ['networkSecurityGroupId']
@@ -8866,7 +8866,7 @@ class VirtualNetworkClient(object):
8866
8866
  :rtype: :class:`~oci.response.Response`
8867
8867
 
8868
8868
  :example:
8869
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_private_ip.py.html>`__ to see an example of how to use delete_private_ip API.
8869
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_private_ip.py.html>`__ to see an example of how to use delete_private_ip API.
8870
8870
  """
8871
8871
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8872
8872
  required_arguments = ['privateIpId']
@@ -8980,7 +8980,7 @@ class VirtualNetworkClient(object):
8980
8980
  :rtype: :class:`~oci.response.Response`
8981
8981
 
8982
8982
  :example:
8983
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_public_ip.py.html>`__ to see an example of how to use delete_public_ip API.
8983
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_public_ip.py.html>`__ to see an example of how to use delete_public_ip API.
8984
8984
  """
8985
8985
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8986
8986
  required_arguments = ['publicIpId']
@@ -9086,7 +9086,7 @@ class VirtualNetworkClient(object):
9086
9086
  :rtype: :class:`~oci.response.Response`
9087
9087
 
9088
9088
  :example:
9089
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_public_ip_pool.py.html>`__ to see an example of how to use delete_public_ip_pool API.
9089
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_public_ip_pool.py.html>`__ to see an example of how to use delete_public_ip_pool API.
9090
9090
  """
9091
9091
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9092
9092
  required_arguments = ['publicIpPoolId']
@@ -9189,7 +9189,7 @@ class VirtualNetworkClient(object):
9189
9189
  :rtype: :class:`~oci.response.Response`
9190
9190
 
9191
9191
  :example:
9192
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_remote_peering_connection.py.html>`__ to see an example of how to use delete_remote_peering_connection API.
9192
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_remote_peering_connection.py.html>`__ to see an example of how to use delete_remote_peering_connection API.
9193
9193
  """
9194
9194
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9195
9195
  required_arguments = ['remotePeeringConnectionId']
@@ -9293,7 +9293,7 @@ class VirtualNetworkClient(object):
9293
9293
  :rtype: :class:`~oci.response.Response`
9294
9294
 
9295
9295
  :example:
9296
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_route_table.py.html>`__ to see an example of how to use delete_route_table API.
9296
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_route_table.py.html>`__ to see an example of how to use delete_route_table API.
9297
9297
  """
9298
9298
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9299
9299
  required_arguments = ['rtId']
@@ -9395,7 +9395,7 @@ class VirtualNetworkClient(object):
9395
9395
  :rtype: :class:`~oci.response.Response`
9396
9396
 
9397
9397
  :example:
9398
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_security_list.py.html>`__ to see an example of how to use delete_security_list API.
9398
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_security_list.py.html>`__ to see an example of how to use delete_security_list API.
9399
9399
  """
9400
9400
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9401
9401
  required_arguments = ['securityListId']
@@ -9494,7 +9494,7 @@ class VirtualNetworkClient(object):
9494
9494
  :rtype: :class:`~oci.response.Response`
9495
9495
 
9496
9496
  :example:
9497
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_service_gateway.py.html>`__ to see an example of how to use delete_service_gateway API.
9497
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_service_gateway.py.html>`__ to see an example of how to use delete_service_gateway API.
9498
9498
  """
9499
9499
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9500
9500
  required_arguments = ['serviceGatewayId']
@@ -9594,7 +9594,7 @@ class VirtualNetworkClient(object):
9594
9594
  :rtype: :class:`~oci.response.Response`
9595
9595
 
9596
9596
  :example:
9597
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_subnet.py.html>`__ to see an example of how to use delete_subnet API.
9597
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_subnet.py.html>`__ to see an example of how to use delete_subnet API.
9598
9598
  """
9599
9599
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9600
9600
  required_arguments = ['subnetId']
@@ -9697,7 +9697,7 @@ class VirtualNetworkClient(object):
9697
9697
  :rtype: :class:`~oci.response.Response`
9698
9698
 
9699
9699
  :example:
9700
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_vcn.py.html>`__ to see an example of how to use delete_vcn API.
9700
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_vcn.py.html>`__ to see an example of how to use delete_vcn API.
9701
9701
  """
9702
9702
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9703
9703
  required_arguments = ['vcnId']
@@ -9799,7 +9799,7 @@ class VirtualNetworkClient(object):
9799
9799
  :rtype: :class:`~oci.response.Response`
9800
9800
 
9801
9801
  :example:
9802
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_virtual_circuit.py.html>`__ to see an example of how to use delete_virtual_circuit API.
9802
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_virtual_circuit.py.html>`__ to see an example of how to use delete_virtual_circuit API.
9803
9803
  """
9804
9804
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9805
9805
  required_arguments = ['virtualCircuitId']
@@ -9903,7 +9903,7 @@ class VirtualNetworkClient(object):
9903
9903
  :rtype: :class:`~oci.response.Response`
9904
9904
 
9905
9905
  :example:
9906
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_vlan.py.html>`__ to see an example of how to use delete_vlan API.
9906
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_vlan.py.html>`__ to see an example of how to use delete_vlan API.
9907
9907
  """
9908
9908
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9909
9909
  required_arguments = ['vlanId']
@@ -10008,7 +10008,7 @@ class VirtualNetworkClient(object):
10008
10008
  :rtype: :class:`~oci.response.Response`
10009
10009
 
10010
10010
  :example:
10011
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/delete_vtap.py.html>`__ to see an example of how to use delete_vtap API.
10011
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/delete_vtap.py.html>`__ to see an example of how to use delete_vtap API.
10012
10012
  """
10013
10013
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10014
10014
  required_arguments = ['vtapId']
@@ -10122,7 +10122,7 @@ class VirtualNetworkClient(object):
10122
10122
  :rtype: :class:`~oci.response.Response`
10123
10123
 
10124
10124
  :example:
10125
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/detach_service_id.py.html>`__ to see an example of how to use detach_service_id API.
10125
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/detach_service_id.py.html>`__ to see an example of how to use detach_service_id API.
10126
10126
  """
10127
10127
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10128
10128
  required_arguments = ['serviceGatewayId']
@@ -10247,7 +10247,7 @@ class VirtualNetworkClient(object):
10247
10247
  :rtype: :class:`~oci.response.Response`
10248
10248
 
10249
10249
  :example:
10250
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_all_drg_attachments.py.html>`__ to see an example of how to use get_all_drg_attachments API.
10250
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_all_drg_attachments.py.html>`__ to see an example of how to use get_all_drg_attachments API.
10251
10251
  """
10252
10252
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10253
10253
  required_arguments = ['drgId']
@@ -10362,7 +10362,7 @@ class VirtualNetworkClient(object):
10362
10362
  :rtype: :class:`~oci.response.Response`
10363
10363
 
10364
10364
  :example:
10365
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_allowed_ike_ip_sec_parameters.py.html>`__ to see an example of how to use get_allowed_ike_ip_sec_parameters API.
10365
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_allowed_ike_ip_sec_parameters.py.html>`__ to see an example of how to use get_allowed_ike_ip_sec_parameters API.
10366
10366
  """
10367
10367
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10368
10368
  required_arguments = []
@@ -10453,7 +10453,7 @@ class VirtualNetworkClient(object):
10453
10453
  :rtype: :class:`~oci.response.Response`
10454
10454
 
10455
10455
  :example:
10456
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_byoip_range.py.html>`__ to see an example of how to use get_byoip_range API.
10456
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_byoip_range.py.html>`__ to see an example of how to use get_byoip_range API.
10457
10457
  """
10458
10458
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10459
10459
  required_arguments = ['byoipRangeId']
@@ -10552,7 +10552,7 @@ class VirtualNetworkClient(object):
10552
10552
  :rtype: :class:`~oci.response.Response`
10553
10553
 
10554
10554
  :example:
10555
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_capture_filter.py.html>`__ to see an example of how to use get_capture_filter API.
10555
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_capture_filter.py.html>`__ to see an example of how to use get_capture_filter API.
10556
10556
  """
10557
10557
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10558
10558
  required_arguments = ['captureFilterId']
@@ -10647,7 +10647,7 @@ class VirtualNetworkClient(object):
10647
10647
  :rtype: :class:`~oci.response.Response`
10648
10648
 
10649
10649
  :example:
10650
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_cpe.py.html>`__ to see an example of how to use get_cpe API.
10650
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_cpe.py.html>`__ to see an example of how to use get_cpe API.
10651
10651
  """
10652
10652
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10653
10653
  required_arguments = ['cpeId']
@@ -10758,7 +10758,7 @@ class VirtualNetworkClient(object):
10758
10758
  :rtype: :class:`~oci.response.Response`
10759
10759
 
10760
10760
  :example:
10761
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_cpe_device_config_content.py.html>`__ to see an example of how to use get_cpe_device_config_content API.
10761
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_cpe_device_config_content.py.html>`__ to see an example of how to use get_cpe_device_config_content API.
10762
10762
  """
10763
10763
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10764
10764
  required_arguments = ['cpeId']
@@ -10867,7 +10867,7 @@ class VirtualNetworkClient(object):
10867
10867
  :rtype: :class:`~oci.response.Response`
10868
10868
 
10869
10869
  :example:
10870
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_cpe_device_shape.py.html>`__ to see an example of how to use get_cpe_device_shape API.
10870
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_cpe_device_shape.py.html>`__ to see an example of how to use get_cpe_device_shape API.
10871
10871
  """
10872
10872
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10873
10873
  required_arguments = ['cpeDeviceShapeId']
@@ -10964,7 +10964,7 @@ class VirtualNetworkClient(object):
10964
10964
  :rtype: :class:`~oci.response.Response`
10965
10965
 
10966
10966
  :example:
10967
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_cross_connect.py.html>`__ to see an example of how to use get_cross_connect API.
10967
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_cross_connect.py.html>`__ to see an example of how to use get_cross_connect API.
10968
10968
  """
10969
10969
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10970
10970
  required_arguments = ['crossConnectId']
@@ -11054,7 +11054,7 @@ class VirtualNetworkClient(object):
11054
11054
  :rtype: :class:`~oci.response.Response`
11055
11055
 
11056
11056
  :example:
11057
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_cross_connect_group.py.html>`__ to see an example of how to use get_cross_connect_group API.
11057
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_cross_connect_group.py.html>`__ to see an example of how to use get_cross_connect_group API.
11058
11058
  """
11059
11059
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11060
11060
  required_arguments = ['crossConnectGroupId']
@@ -11144,7 +11144,7 @@ class VirtualNetworkClient(object):
11144
11144
  :rtype: :class:`~oci.response.Response`
11145
11145
 
11146
11146
  :example:
11147
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_cross_connect_letter_of_authority.py.html>`__ to see an example of how to use get_cross_connect_letter_of_authority API.
11147
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_cross_connect_letter_of_authority.py.html>`__ to see an example of how to use get_cross_connect_letter_of_authority API.
11148
11148
  """
11149
11149
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11150
11150
  required_arguments = ['crossConnectId']
@@ -11234,7 +11234,7 @@ class VirtualNetworkClient(object):
11234
11234
  :rtype: :class:`~oci.response.Response`
11235
11235
 
11236
11236
  :example:
11237
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_cross_connect_status.py.html>`__ to see an example of how to use get_cross_connect_status API.
11237
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_cross_connect_status.py.html>`__ to see an example of how to use get_cross_connect_status API.
11238
11238
  """
11239
11239
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11240
11240
  required_arguments = ['crossConnectId']
@@ -11324,7 +11324,7 @@ class VirtualNetworkClient(object):
11324
11324
  :rtype: :class:`~oci.response.Response`
11325
11325
 
11326
11326
  :example:
11327
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_dhcp_options.py.html>`__ to see an example of how to use get_dhcp_options API.
11327
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_dhcp_options.py.html>`__ to see an example of how to use get_dhcp_options API.
11328
11328
  """
11329
11329
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11330
11330
  required_arguments = ['dhcpId']
@@ -11412,7 +11412,7 @@ class VirtualNetworkClient(object):
11412
11412
  :rtype: :class:`~oci.response.Response`
11413
11413
 
11414
11414
  :example:
11415
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_drg.py.html>`__ to see an example of how to use get_drg API.
11415
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_drg.py.html>`__ to see an example of how to use get_drg API.
11416
11416
  """
11417
11417
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11418
11418
  required_arguments = ['drgId']
@@ -11500,7 +11500,7 @@ class VirtualNetworkClient(object):
11500
11500
  :rtype: :class:`~oci.response.Response`
11501
11501
 
11502
11502
  :example:
11503
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_drg_attachment.py.html>`__ to see an example of how to use get_drg_attachment API.
11503
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_drg_attachment.py.html>`__ to see an example of how to use get_drg_attachment API.
11504
11504
  """
11505
11505
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11506
11506
  required_arguments = ['drgAttachmentId']
@@ -11595,7 +11595,7 @@ class VirtualNetworkClient(object):
11595
11595
  :rtype: :class:`~oci.response.Response`
11596
11596
 
11597
11597
  :example:
11598
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_drg_redundancy_status.py.html>`__ to see an example of how to use get_drg_redundancy_status API.
11598
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_drg_redundancy_status.py.html>`__ to see an example of how to use get_drg_redundancy_status API.
11599
11599
  """
11600
11600
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11601
11601
  required_arguments = ['drgId']
@@ -11692,7 +11692,7 @@ class VirtualNetworkClient(object):
11692
11692
  :rtype: :class:`~oci.response.Response`
11693
11693
 
11694
11694
  :example:
11695
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_drg_route_distribution.py.html>`__ to see an example of how to use get_drg_route_distribution API.
11695
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_drg_route_distribution.py.html>`__ to see an example of how to use get_drg_route_distribution API.
11696
11696
  """
11697
11697
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11698
11698
  required_arguments = ['drgRouteDistributionId']
@@ -11780,7 +11780,7 @@ class VirtualNetworkClient(object):
11780
11780
  :rtype: :class:`~oci.response.Response`
11781
11781
 
11782
11782
  :example:
11783
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_drg_route_table.py.html>`__ to see an example of how to use get_drg_route_table API.
11783
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_drg_route_table.py.html>`__ to see an example of how to use get_drg_route_table API.
11784
11784
  """
11785
11785
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11786
11786
  required_arguments = ['drgRouteTableId']
@@ -11871,7 +11871,7 @@ class VirtualNetworkClient(object):
11871
11871
  :rtype: :class:`~oci.response.Response`
11872
11872
 
11873
11873
  :example:
11874
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_fast_connect_provider_service.py.html>`__ to see an example of how to use get_fast_connect_provider_service API.
11874
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_fast_connect_provider_service.py.html>`__ to see an example of how to use get_fast_connect_provider_service API.
11875
11875
  """
11876
11876
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11877
11877
  required_arguments = ['providerServiceId']
@@ -11968,7 +11968,7 @@ class VirtualNetworkClient(object):
11968
11968
  :rtype: :class:`~oci.response.Response`
11969
11969
 
11970
11970
  :example:
11971
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_fast_connect_provider_service_key.py.html>`__ to see an example of how to use get_fast_connect_provider_service_key API.
11971
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_fast_connect_provider_service_key.py.html>`__ to see an example of how to use get_fast_connect_provider_service_key API.
11972
11972
  """
11973
11973
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11974
11974
  required_arguments = ['providerServiceId', 'providerServiceKeyName']
@@ -12059,7 +12059,7 @@ class VirtualNetworkClient(object):
12059
12059
  :rtype: :class:`~oci.response.Response`
12060
12060
 
12061
12061
  :example:
12062
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_internet_gateway.py.html>`__ to see an example of how to use get_internet_gateway API.
12062
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_internet_gateway.py.html>`__ to see an example of how to use get_internet_gateway API.
12063
12063
  """
12064
12064
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12065
12065
  required_arguments = ['igId']
@@ -12149,7 +12149,7 @@ class VirtualNetworkClient(object):
12149
12149
  :rtype: :class:`~oci.response.Response`
12150
12150
 
12151
12151
  :example:
12152
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ip_sec_connection.py.html>`__ to see an example of how to use get_ip_sec_connection API.
12152
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ip_sec_connection.py.html>`__ to see an example of how to use get_ip_sec_connection API.
12153
12153
  """
12154
12154
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12155
12155
  required_arguments = ['ipscId']
@@ -12242,7 +12242,7 @@ class VirtualNetworkClient(object):
12242
12242
  :rtype: :class:`~oci.response.Response`
12243
12243
 
12244
12244
  :example:
12245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ip_sec_connection_device_config.py.html>`__ to see an example of how to use get_ip_sec_connection_device_config API.
12245
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ip_sec_connection_device_config.py.html>`__ to see an example of how to use get_ip_sec_connection_device_config API.
12246
12246
  """
12247
12247
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12248
12248
  required_arguments = ['ipscId']
@@ -12333,7 +12333,7 @@ class VirtualNetworkClient(object):
12333
12333
  :rtype: :class:`~oci.response.Response`
12334
12334
 
12335
12335
  :example:
12336
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ip_sec_connection_device_status.py.html>`__ to see an example of how to use get_ip_sec_connection_device_status API.
12336
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ip_sec_connection_device_status.py.html>`__ to see an example of how to use get_ip_sec_connection_device_status API.
12337
12337
  """
12338
12338
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12339
12339
  required_arguments = ['ipscId']
@@ -12430,7 +12430,7 @@ class VirtualNetworkClient(object):
12430
12430
  :rtype: :class:`~oci.response.Response`
12431
12431
 
12432
12432
  :example:
12433
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel API.
12433
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel API.
12434
12434
  """
12435
12435
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12436
12436
  required_arguments = ['ipscId', 'tunnelId']
@@ -12526,7 +12526,7 @@ class VirtualNetworkClient(object):
12526
12526
  :rtype: :class:`~oci.response.Response`
12527
12527
 
12528
12528
  :example:
12529
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ip_sec_connection_tunnel_error.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel_error API.
12529
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ip_sec_connection_tunnel_error.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel_error API.
12530
12530
  """
12531
12531
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12532
12532
  required_arguments = ['ipscId', 'tunnelId']
@@ -12623,7 +12623,7 @@ class VirtualNetworkClient(object):
12623
12623
  :rtype: :class:`~oci.response.Response`
12624
12624
 
12625
12625
  :example:
12626
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ip_sec_connection_tunnel_shared_secret.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel_shared_secret API.
12626
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ip_sec_connection_tunnel_shared_secret.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel_shared_secret API.
12627
12627
  """
12628
12628
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12629
12629
  required_arguments = ['ipscId', 'tunnelId']
@@ -12736,7 +12736,7 @@ class VirtualNetworkClient(object):
12736
12736
  :rtype: :class:`~oci.response.Response`
12737
12737
 
12738
12738
  :example:
12739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ipsec_cpe_device_config_content.py.html>`__ to see an example of how to use get_ipsec_cpe_device_config_content API.
12739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ipsec_cpe_device_config_content.py.html>`__ to see an example of how to use get_ipsec_cpe_device_config_content API.
12740
12740
  """
12741
12741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12742
12742
  required_arguments = ['ipscId']
@@ -12843,7 +12843,7 @@ class VirtualNetworkClient(object):
12843
12843
  :rtype: :class:`~oci.response.Response`
12844
12844
 
12845
12845
  :example:
12846
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_ipv6.py.html>`__ to see an example of how to use get_ipv6 API.
12846
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_ipv6.py.html>`__ to see an example of how to use get_ipv6 API.
12847
12847
  """
12848
12848
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12849
12849
  required_arguments = ['ipv6Id']
@@ -12938,7 +12938,7 @@ class VirtualNetworkClient(object):
12938
12938
  :rtype: :class:`~oci.response.Response`
12939
12939
 
12940
12940
  :example:
12941
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_local_peering_gateway.py.html>`__ to see an example of how to use get_local_peering_gateway API.
12941
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_local_peering_gateway.py.html>`__ to see an example of how to use get_local_peering_gateway API.
12942
12942
  """
12943
12943
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12944
12944
  required_arguments = ['localPeeringGatewayId']
@@ -13026,7 +13026,7 @@ class VirtualNetworkClient(object):
13026
13026
  :rtype: :class:`~oci.response.Response`
13027
13027
 
13028
13028
  :example:
13029
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_nat_gateway.py.html>`__ to see an example of how to use get_nat_gateway API.
13029
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_nat_gateway.py.html>`__ to see an example of how to use get_nat_gateway API.
13030
13030
  """
13031
13031
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13032
13032
  required_arguments = ['natGatewayId']
@@ -13120,7 +13120,7 @@ class VirtualNetworkClient(object):
13120
13120
  :rtype: :class:`~oci.response.Response`
13121
13121
 
13122
13122
  :example:
13123
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_network_security_group.py.html>`__ to see an example of how to use get_network_security_group API.
13123
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_network_security_group.py.html>`__ to see an example of how to use get_network_security_group API.
13124
13124
  """
13125
13125
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13126
13126
  required_arguments = ['networkSecurityGroupId']
@@ -13240,7 +13240,7 @@ class VirtualNetworkClient(object):
13240
13240
  :rtype: :class:`~oci.response.Response`
13241
13241
 
13242
13242
  :example:
13243
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_networking_topology.py.html>`__ to see an example of how to use get_networking_topology API.
13243
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_networking_topology.py.html>`__ to see an example of how to use get_networking_topology API.
13244
13244
  """
13245
13245
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13246
13246
  required_arguments = ['compartmentId']
@@ -13351,7 +13351,7 @@ class VirtualNetworkClient(object):
13351
13351
  :rtype: :class:`~oci.response.Response`
13352
13352
 
13353
13353
  :example:
13354
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_private_ip.py.html>`__ to see an example of how to use get_private_ip API.
13354
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_private_ip.py.html>`__ to see an example of how to use get_private_ip API.
13355
13355
  """
13356
13356
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13357
13357
  required_arguments = ['privateIpId']
@@ -13453,7 +13453,7 @@ class VirtualNetworkClient(object):
13453
13453
  :rtype: :class:`~oci.response.Response`
13454
13454
 
13455
13455
  :example:
13456
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_public_ip.py.html>`__ to see an example of how to use get_public_ip API.
13456
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_public_ip.py.html>`__ to see an example of how to use get_public_ip API.
13457
13457
  """
13458
13458
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13459
13459
  required_arguments = ['publicIpId']
@@ -13545,7 +13545,7 @@ class VirtualNetworkClient(object):
13545
13545
  :rtype: :class:`~oci.response.Response`
13546
13546
 
13547
13547
  :example:
13548
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_public_ip_by_ip_address.py.html>`__ to see an example of how to use get_public_ip_by_ip_address API.
13548
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_public_ip_by_ip_address.py.html>`__ to see an example of how to use get_public_ip_by_ip_address API.
13549
13549
  """
13550
13550
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13551
13551
  required_arguments = []
@@ -13635,7 +13635,7 @@ class VirtualNetworkClient(object):
13635
13635
  :rtype: :class:`~oci.response.Response`
13636
13636
 
13637
13637
  :example:
13638
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_public_ip_by_private_ip_id.py.html>`__ to see an example of how to use get_public_ip_by_private_ip_id API.
13638
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_public_ip_by_private_ip_id.py.html>`__ to see an example of how to use get_public_ip_by_private_ip_id API.
13639
13639
  """
13640
13640
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13641
13641
  required_arguments = []
@@ -13719,7 +13719,7 @@ class VirtualNetworkClient(object):
13719
13719
  :rtype: :class:`~oci.response.Response`
13720
13720
 
13721
13721
  :example:
13722
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_public_ip_pool.py.html>`__ to see an example of how to use get_public_ip_pool API.
13722
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_public_ip_pool.py.html>`__ to see an example of how to use get_public_ip_pool API.
13723
13723
  """
13724
13724
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13725
13725
  required_arguments = ['publicIpPoolId']
@@ -13814,7 +13814,7 @@ class VirtualNetworkClient(object):
13814
13814
  :rtype: :class:`~oci.response.Response`
13815
13815
 
13816
13816
  :example:
13817
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_remote_peering_connection.py.html>`__ to see an example of how to use get_remote_peering_connection API.
13817
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_remote_peering_connection.py.html>`__ to see an example of how to use get_remote_peering_connection API.
13818
13818
  """
13819
13819
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13820
13820
  required_arguments = ['remotePeeringConnectionId']
@@ -13904,7 +13904,7 @@ class VirtualNetworkClient(object):
13904
13904
  :rtype: :class:`~oci.response.Response`
13905
13905
 
13906
13906
  :example:
13907
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_route_table.py.html>`__ to see an example of how to use get_route_table API.
13907
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_route_table.py.html>`__ to see an example of how to use get_route_table API.
13908
13908
  """
13909
13909
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13910
13910
  required_arguments = ['rtId']
@@ -13992,7 +13992,7 @@ class VirtualNetworkClient(object):
13992
13992
  :rtype: :class:`~oci.response.Response`
13993
13993
 
13994
13994
  :example:
13995
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_security_list.py.html>`__ to see an example of how to use get_security_list API.
13995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_security_list.py.html>`__ to see an example of how to use get_security_list API.
13996
13996
  """
13997
13997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13998
13998
  required_arguments = ['securityListId']
@@ -14080,7 +14080,7 @@ class VirtualNetworkClient(object):
14080
14080
  :rtype: :class:`~oci.response.Response`
14081
14081
 
14082
14082
  :example:
14083
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_service.py.html>`__ to see an example of how to use get_service API.
14083
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_service.py.html>`__ to see an example of how to use get_service API.
14084
14084
  """
14085
14085
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14086
14086
  required_arguments = ['serviceId']
@@ -14168,7 +14168,7 @@ class VirtualNetworkClient(object):
14168
14168
  :rtype: :class:`~oci.response.Response`
14169
14169
 
14170
14170
  :example:
14171
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_service_gateway.py.html>`__ to see an example of how to use get_service_gateway API.
14171
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_service_gateway.py.html>`__ to see an example of how to use get_service_gateway API.
14172
14172
  """
14173
14173
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14174
14174
  required_arguments = ['serviceGatewayId']
@@ -14256,7 +14256,7 @@ class VirtualNetworkClient(object):
14256
14256
  :rtype: :class:`~oci.response.Response`
14257
14257
 
14258
14258
  :example:
14259
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_subnet.py.html>`__ to see an example of how to use get_subnet API.
14259
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_subnet.py.html>`__ to see an example of how to use get_subnet API.
14260
14260
  """
14261
14261
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14262
14262
  required_arguments = ['subnetId']
@@ -14381,7 +14381,7 @@ class VirtualNetworkClient(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/core/get_subnet_topology.py.html>`__ to see an example of how to use get_subnet_topology API.
14384
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_subnet_topology.py.html>`__ to see an example of how to use get_subnet_topology API.
14385
14385
  """
14386
14386
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14387
14387
  required_arguments = ['compartmentId', 'subnetId']
@@ -14500,7 +14500,7 @@ class VirtualNetworkClient(object):
14500
14500
  :rtype: :class:`~oci.response.Response`
14501
14501
 
14502
14502
  :example:
14503
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_tunnel_cpe_device_config.py.html>`__ to see an example of how to use get_tunnel_cpe_device_config API.
14503
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_tunnel_cpe_device_config.py.html>`__ to see an example of how to use get_tunnel_cpe_device_config API.
14504
14504
  """
14505
14505
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14506
14506
  required_arguments = ['ipscId', 'tunnelId']
@@ -14624,7 +14624,7 @@ class VirtualNetworkClient(object):
14624
14624
  :rtype: :class:`~oci.response.Response`
14625
14625
 
14626
14626
  :example:
14627
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_tunnel_cpe_device_config_content.py.html>`__ to see an example of how to use get_tunnel_cpe_device_config_content API.
14627
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_tunnel_cpe_device_config_content.py.html>`__ to see an example of how to use get_tunnel_cpe_device_config_content API.
14628
14628
  """
14629
14629
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14630
14630
  required_arguments = ['ipscId', 'tunnelId']
@@ -14726,7 +14726,7 @@ class VirtualNetworkClient(object):
14726
14726
  :rtype: :class:`~oci.response.Response`
14727
14727
 
14728
14728
  :example:
14729
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_upgrade_status.py.html>`__ to see an example of how to use get_upgrade_status API.
14729
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_upgrade_status.py.html>`__ to see an example of how to use get_upgrade_status API.
14730
14730
  """
14731
14731
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14732
14732
  required_arguments = ['drgId']
@@ -14821,7 +14821,7 @@ class VirtualNetworkClient(object):
14821
14821
  :rtype: :class:`~oci.response.Response`
14822
14822
 
14823
14823
  :example:
14824
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_vcn.py.html>`__ to see an example of how to use get_vcn API.
14824
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_vcn.py.html>`__ to see an example of how to use get_vcn API.
14825
14825
  """
14826
14826
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14827
14827
  required_arguments = ['vcnId']
@@ -14913,7 +14913,7 @@ class VirtualNetworkClient(object):
14913
14913
  :rtype: :class:`~oci.response.Response`
14914
14914
 
14915
14915
  :example:
14916
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_vcn_dns_resolver_association.py.html>`__ to see an example of how to use get_vcn_dns_resolver_association API.
14916
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_vcn_dns_resolver_association.py.html>`__ to see an example of how to use get_vcn_dns_resolver_association API.
14917
14917
  """
14918
14918
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14919
14919
  required_arguments = ['vcnId']
@@ -15045,7 +15045,7 @@ class VirtualNetworkClient(object):
15045
15045
  :rtype: :class:`~oci.response.Response`
15046
15046
 
15047
15047
  :example:
15048
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_vcn_topology.py.html>`__ to see an example of how to use get_vcn_topology API.
15048
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_vcn_topology.py.html>`__ to see an example of how to use get_vcn_topology API.
15049
15049
  """
15050
15050
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15051
15051
  required_arguments = ['compartmentId', 'vcnId']
@@ -15151,7 +15151,7 @@ class VirtualNetworkClient(object):
15151
15151
  :rtype: :class:`~oci.response.Response`
15152
15152
 
15153
15153
  :example:
15154
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_virtual_circuit.py.html>`__ to see an example of how to use get_virtual_circuit API.
15154
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_virtual_circuit.py.html>`__ to see an example of how to use get_virtual_circuit API.
15155
15155
  """
15156
15156
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15157
15157
  required_arguments = ['virtualCircuitId']
@@ -15245,7 +15245,7 @@ class VirtualNetworkClient(object):
15245
15245
  :rtype: :class:`~oci.response.Response`
15246
15246
 
15247
15247
  :example:
15248
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_vlan.py.html>`__ to see an example of how to use get_vlan API.
15248
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_vlan.py.html>`__ to see an example of how to use get_vlan API.
15249
15249
  """
15250
15250
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15251
15251
  required_arguments = ['vlanId']
@@ -15345,7 +15345,7 @@ class VirtualNetworkClient(object):
15345
15345
  :rtype: :class:`~oci.response.Response`
15346
15346
 
15347
15347
  :example:
15348
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_vnic.py.html>`__ to see an example of how to use get_vnic API.
15348
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_vnic.py.html>`__ to see an example of how to use get_vnic API.
15349
15349
  """
15350
15350
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15351
15351
  required_arguments = ['vnicId']
@@ -15437,7 +15437,7 @@ class VirtualNetworkClient(object):
15437
15437
  :rtype: :class:`~oci.response.Response`
15438
15438
 
15439
15439
  :example:
15440
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/get_vtap.py.html>`__ to see an example of how to use get_vtap API.
15440
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/get_vtap.py.html>`__ to see an example of how to use get_vtap API.
15441
15441
  """
15442
15442
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15443
15443
  required_arguments = ['vtapId']
@@ -15530,7 +15530,7 @@ class VirtualNetworkClient(object):
15530
15530
  :rtype: :class:`~oci.response.Response`
15531
15531
 
15532
15532
  :example:
15533
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_allowed_peer_regions_for_remote_peering.py.html>`__ to see an example of how to use list_allowed_peer_regions_for_remote_peering API.
15533
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_allowed_peer_regions_for_remote_peering.py.html>`__ to see an example of how to use list_allowed_peer_regions_for_remote_peering API.
15534
15534
  """
15535
15535
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15536
15536
  required_arguments = []
@@ -15629,7 +15629,7 @@ class VirtualNetworkClient(object):
15629
15629
  :rtype: :class:`~oci.response.Response`
15630
15630
 
15631
15631
  :example:
15632
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_byoip_allocated_ranges.py.html>`__ to see an example of how to use list_byoip_allocated_ranges API.
15632
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_byoip_allocated_ranges.py.html>`__ to see an example of how to use list_byoip_allocated_ranges API.
15633
15633
  """
15634
15634
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15635
15635
  required_arguments = ['byoipRangeId']
@@ -15779,7 +15779,7 @@ class VirtualNetworkClient(object):
15779
15779
  :rtype: :class:`~oci.response.Response`
15780
15780
 
15781
15781
  :example:
15782
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_byoip_ranges.py.html>`__ to see an example of how to use list_byoip_ranges API.
15782
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_byoip_ranges.py.html>`__ to see an example of how to use list_byoip_ranges API.
15783
15783
  """
15784
15784
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15785
15785
  required_arguments = ['compartmentId']
@@ -15942,7 +15942,7 @@ class VirtualNetworkClient(object):
15942
15942
  :rtype: :class:`~oci.response.Response`
15943
15943
 
15944
15944
  :example:
15945
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_capture_filters.py.html>`__ to see an example of how to use list_capture_filters API.
15945
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_capture_filters.py.html>`__ to see an example of how to use list_capture_filters API.
15946
15946
  """
15947
15947
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15948
15948
  required_arguments = ['compartmentId']
@@ -16094,7 +16094,7 @@ class VirtualNetworkClient(object):
16094
16094
  :rtype: :class:`~oci.response.Response`
16095
16095
 
16096
16096
  :example:
16097
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_cpe_device_shapes.py.html>`__ to see an example of how to use list_cpe_device_shapes API.
16097
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_cpe_device_shapes.py.html>`__ to see an example of how to use list_cpe_device_shapes API.
16098
16098
  """
16099
16099
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16100
16100
  required_arguments = []
@@ -16205,7 +16205,7 @@ class VirtualNetworkClient(object):
16205
16205
  :rtype: :class:`~oci.response.Response`
16206
16206
 
16207
16207
  :example:
16208
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_cpes.py.html>`__ to see an example of how to use list_cpes API.
16208
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_cpes.py.html>`__ to see an example of how to use list_cpes API.
16209
16209
  """
16210
16210
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16211
16211
  required_arguments = ['compartmentId']
@@ -16341,7 +16341,7 @@ class VirtualNetworkClient(object):
16341
16341
  :rtype: :class:`~oci.response.Response`
16342
16342
 
16343
16343
  :example:
16344
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_cross_connect_groups.py.html>`__ to see an example of how to use list_cross_connect_groups API.
16344
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_cross_connect_groups.py.html>`__ to see an example of how to use list_cross_connect_groups API.
16345
16345
  """
16346
16346
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16347
16347
  required_arguments = ['compartmentId']
@@ -16480,7 +16480,7 @@ class VirtualNetworkClient(object):
16480
16480
  :rtype: :class:`~oci.response.Response`
16481
16481
 
16482
16482
  :example:
16483
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_cross_connect_locations.py.html>`__ to see an example of how to use list_cross_connect_locations API.
16483
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_cross_connect_locations.py.html>`__ to see an example of how to use list_cross_connect_locations API.
16484
16484
  """
16485
16485
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16486
16486
  required_arguments = ['compartmentId']
@@ -16578,7 +16578,7 @@ class VirtualNetworkClient(object):
16578
16578
  :rtype: :class:`~oci.response.Response`
16579
16579
 
16580
16580
  :example:
16581
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_cross_connect_mappings.py.html>`__ to see an example of how to use list_cross_connect_mappings API.
16581
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_cross_connect_mappings.py.html>`__ to see an example of how to use list_cross_connect_mappings API.
16582
16582
  """
16583
16583
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16584
16584
  required_arguments = ['virtualCircuitId']
@@ -16726,7 +16726,7 @@ class VirtualNetworkClient(object):
16726
16726
  :rtype: :class:`~oci.response.Response`
16727
16727
 
16728
16728
  :example:
16729
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_cross_connects.py.html>`__ to see an example of how to use list_cross_connects API.
16729
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_cross_connects.py.html>`__ to see an example of how to use list_cross_connects API.
16730
16730
  """
16731
16731
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16732
16732
  required_arguments = ['compartmentId']
@@ -16868,7 +16868,7 @@ class VirtualNetworkClient(object):
16868
16868
  :rtype: :class:`~oci.response.Response`
16869
16869
 
16870
16870
  :example:
16871
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_crossconnect_port_speed_shapes.py.html>`__ to see an example of how to use list_crossconnect_port_speed_shapes API.
16871
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_crossconnect_port_speed_shapes.py.html>`__ to see an example of how to use list_crossconnect_port_speed_shapes API.
16872
16872
  """
16873
16873
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16874
16874
  required_arguments = ['compartmentId']
@@ -17012,7 +17012,7 @@ class VirtualNetworkClient(object):
17012
17012
  :rtype: :class:`~oci.response.Response`
17013
17013
 
17014
17014
  :example:
17015
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_dhcp_options.py.html>`__ to see an example of how to use list_dhcp_options API.
17015
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_dhcp_options.py.html>`__ to see an example of how to use list_dhcp_options API.
17016
17016
  """
17017
17017
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17018
17018
  required_arguments = ['compartmentId']
@@ -17207,7 +17207,7 @@ class VirtualNetworkClient(object):
17207
17207
  :rtype: :class:`~oci.response.Response`
17208
17208
 
17209
17209
  :example:
17210
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_drg_attachments.py.html>`__ to see an example of how to use list_drg_attachments API.
17210
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_drg_attachments.py.html>`__ to see an example of how to use list_drg_attachments API.
17211
17211
  """
17212
17212
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17213
17213
  required_arguments = ['compartmentId']
@@ -17371,7 +17371,7 @@ class VirtualNetworkClient(object):
17371
17371
  :rtype: :class:`~oci.response.Response`
17372
17372
 
17373
17373
  :example:
17374
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_drg_route_distribution_statements.py.html>`__ to see an example of how to use list_drg_route_distribution_statements API.
17374
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_drg_route_distribution_statements.py.html>`__ to see an example of how to use list_drg_route_distribution_statements API.
17375
17375
  """
17376
17376
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17377
17377
  required_arguments = ['drgRouteDistributionId']
@@ -17537,7 +17537,7 @@ class VirtualNetworkClient(object):
17537
17537
  :rtype: :class:`~oci.response.Response`
17538
17538
 
17539
17539
  :example:
17540
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_drg_route_distributions.py.html>`__ to see an example of how to use list_drg_route_distributions API.
17540
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_drg_route_distributions.py.html>`__ to see an example of how to use list_drg_route_distributions API.
17541
17541
  """
17542
17542
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17543
17543
  required_arguments = ['drgId']
@@ -17679,7 +17679,7 @@ class VirtualNetworkClient(object):
17679
17679
  :rtype: :class:`~oci.response.Response`
17680
17680
 
17681
17681
  :example:
17682
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_drg_route_rules.py.html>`__ to see an example of how to use list_drg_route_rules API.
17682
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_drg_route_rules.py.html>`__ to see an example of how to use list_drg_route_rules API.
17683
17683
  """
17684
17684
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17685
17685
  required_arguments = ['drgRouteTableId']
@@ -17840,7 +17840,7 @@ class VirtualNetworkClient(object):
17840
17840
  :rtype: :class:`~oci.response.Response`
17841
17841
 
17842
17842
  :example:
17843
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_drg_route_tables.py.html>`__ to see an example of how to use list_drg_route_tables API.
17843
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_drg_route_tables.py.html>`__ to see an example of how to use list_drg_route_tables API.
17844
17844
  """
17845
17845
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17846
17846
  required_arguments = ['drgId']
@@ -17978,7 +17978,7 @@ class VirtualNetworkClient(object):
17978
17978
  :rtype: :class:`~oci.response.Response`
17979
17979
 
17980
17980
  :example:
17981
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_drgs.py.html>`__ to see an example of how to use list_drgs API.
17981
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_drgs.py.html>`__ to see an example of how to use list_drgs API.
17982
17982
  """
17983
17983
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17984
17984
  required_arguments = ['compartmentId']
@@ -18094,7 +18094,7 @@ class VirtualNetworkClient(object):
18094
18094
  :rtype: :class:`~oci.response.Response`
18095
18095
 
18096
18096
  :example:
18097
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_fast_connect_provider_services.py.html>`__ to see an example of how to use list_fast_connect_provider_services API.
18097
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_fast_connect_provider_services.py.html>`__ to see an example of how to use list_fast_connect_provider_services API.
18098
18098
  """
18099
18099
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18100
18100
  required_arguments = ['compartmentId']
@@ -18208,7 +18208,7 @@ class VirtualNetworkClient(object):
18208
18208
  :rtype: :class:`~oci.response.Response`
18209
18209
 
18210
18210
  :example:
18211
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_fast_connect_provider_virtual_circuit_bandwidth_shapes.py.html>`__ to see an example of how to use list_fast_connect_provider_virtual_circuit_bandwidth_shapes API.
18211
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_fast_connect_provider_virtual_circuit_bandwidth_shapes.py.html>`__ to see an example of how to use list_fast_connect_provider_virtual_circuit_bandwidth_shapes API.
18212
18212
  """
18213
18213
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18214
18214
  required_arguments = ['providerServiceId']
@@ -18361,7 +18361,7 @@ class VirtualNetworkClient(object):
18361
18361
  :rtype: :class:`~oci.response.Response`
18362
18362
 
18363
18363
  :example:
18364
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_internet_gateways.py.html>`__ to see an example of how to use list_internet_gateways API.
18364
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_internet_gateways.py.html>`__ to see an example of how to use list_internet_gateways API.
18365
18365
  """
18366
18366
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18367
18367
  required_arguments = ['compartmentId']
@@ -18511,7 +18511,7 @@ class VirtualNetworkClient(object):
18511
18511
  :rtype: :class:`~oci.response.Response`
18512
18512
 
18513
18513
  :example:
18514
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_ip_sec_connection_tunnel_routes.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnel_routes API.
18514
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_ip_sec_connection_tunnel_routes.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnel_routes API.
18515
18515
  """
18516
18516
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18517
18517
  required_arguments = ['ipscId', 'tunnelId']
@@ -18646,7 +18646,7 @@ class VirtualNetworkClient(object):
18646
18646
  :rtype: :class:`~oci.response.Response`
18647
18647
 
18648
18648
  :example:
18649
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_ip_sec_connection_tunnel_security_associations.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnel_security_associations API.
18649
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_ip_sec_connection_tunnel_security_associations.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnel_security_associations API.
18650
18650
  """
18651
18651
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18652
18652
  required_arguments = ['ipscId', 'tunnelId']
@@ -18767,7 +18767,7 @@ class VirtualNetworkClient(object):
18767
18767
  :rtype: :class:`~oci.response.Response`
18768
18768
 
18769
18769
  :example:
18770
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_ip_sec_connection_tunnels.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnels API.
18770
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_ip_sec_connection_tunnels.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnels API.
18771
18771
  """
18772
18772
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18773
18773
  required_arguments = ['ipscId']
@@ -18898,7 +18898,7 @@ class VirtualNetworkClient(object):
18898
18898
  :rtype: :class:`~oci.response.Response`
18899
18899
 
18900
18900
  :example:
18901
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_ip_sec_connections.py.html>`__ to see an example of how to use list_ip_sec_connections API.
18901
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_ip_sec_connections.py.html>`__ to see an example of how to use list_ip_sec_connections API.
18902
18902
  """
18903
18903
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18904
18904
  required_arguments = ['compartmentId']
@@ -19034,7 +19034,7 @@ class VirtualNetworkClient(object):
19034
19034
  :rtype: :class:`~oci.response.Response`
19035
19035
 
19036
19036
  :example:
19037
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_ipv6s.py.html>`__ to see an example of how to use list_ipv6s API.
19037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_ipv6s.py.html>`__ to see an example of how to use list_ipv6s API.
19038
19038
  """
19039
19039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19040
19040
  required_arguments = []
@@ -19155,7 +19155,7 @@ class VirtualNetworkClient(object):
19155
19155
  :rtype: :class:`~oci.response.Response`
19156
19156
 
19157
19157
  :example:
19158
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_local_peering_gateways.py.html>`__ to see an example of how to use list_local_peering_gateways API.
19158
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_local_peering_gateways.py.html>`__ to see an example of how to use list_local_peering_gateways API.
19159
19159
  """
19160
19160
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19161
19161
  required_arguments = ['compartmentId']
@@ -19297,7 +19297,7 @@ class VirtualNetworkClient(object):
19297
19297
  :rtype: :class:`~oci.response.Response`
19298
19298
 
19299
19299
  :example:
19300
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_nat_gateways.py.html>`__ to see an example of how to use list_nat_gateways API.
19300
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_nat_gateways.py.html>`__ to see an example of how to use list_nat_gateways API.
19301
19301
  """
19302
19302
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19303
19303
  required_arguments = ['compartmentId']
@@ -19452,7 +19452,7 @@ class VirtualNetworkClient(object):
19452
19452
  :rtype: :class:`~oci.response.Response`
19453
19453
 
19454
19454
  :example:
19455
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_network_security_group_security_rules.py.html>`__ to see an example of how to use list_network_security_group_security_rules API.
19455
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_network_security_group_security_rules.py.html>`__ to see an example of how to use list_network_security_group_security_rules API.
19456
19456
  """
19457
19457
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19458
19458
  required_arguments = ['networkSecurityGroupId']
@@ -19608,7 +19608,7 @@ class VirtualNetworkClient(object):
19608
19608
  :rtype: :class:`~oci.response.Response`
19609
19609
 
19610
19610
  :example:
19611
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_network_security_group_vnics.py.html>`__ to see an example of how to use list_network_security_group_vnics API.
19611
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_network_security_group_vnics.py.html>`__ to see an example of how to use list_network_security_group_vnics API.
19612
19612
  """
19613
19613
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19614
19614
  required_arguments = ['networkSecurityGroupId']
@@ -19782,7 +19782,7 @@ class VirtualNetworkClient(object):
19782
19782
  :rtype: :class:`~oci.response.Response`
19783
19783
 
19784
19784
  :example:
19785
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_network_security_groups.py.html>`__ to see an example of how to use list_network_security_groups API.
19785
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_network_security_groups.py.html>`__ to see an example of how to use list_network_security_groups API.
19786
19786
  """
19787
19787
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19788
19788
  required_arguments = []
@@ -19956,7 +19956,7 @@ class VirtualNetworkClient(object):
19956
19956
  :rtype: :class:`~oci.response.Response`
19957
19957
 
19958
19958
  :example:
19959
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_private_ips.py.html>`__ to see an example of how to use list_private_ips API.
19959
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_private_ips.py.html>`__ to see an example of how to use list_private_ips API.
19960
19960
  """
19961
19961
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19962
19962
  required_arguments = []
@@ -20099,7 +20099,7 @@ class VirtualNetworkClient(object):
20099
20099
  :rtype: :class:`~oci.response.Response`
20100
20100
 
20101
20101
  :example:
20102
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_public_ip_pools.py.html>`__ to see an example of how to use list_public_ip_pools API.
20102
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_public_ip_pools.py.html>`__ to see an example of how to use list_public_ip_pools API.
20103
20103
  """
20104
20104
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20105
20105
  required_arguments = ['compartmentId']
@@ -20277,7 +20277,7 @@ class VirtualNetworkClient(object):
20277
20277
  :rtype: :class:`~oci.response.Response`
20278
20278
 
20279
20279
  :example:
20280
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_public_ips.py.html>`__ to see an example of how to use list_public_ips API.
20280
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_public_ips.py.html>`__ to see an example of how to use list_public_ips API.
20281
20281
  """
20282
20282
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20283
20283
  required_arguments = ['scope', 'compartmentId']
@@ -20410,7 +20410,7 @@ class VirtualNetworkClient(object):
20410
20410
  :rtype: :class:`~oci.response.Response`
20411
20411
 
20412
20412
  :example:
20413
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_remote_peering_connections.py.html>`__ to see an example of how to use list_remote_peering_connections API.
20413
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_remote_peering_connections.py.html>`__ to see an example of how to use list_remote_peering_connections API.
20414
20414
  """
20415
20415
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20416
20416
  required_arguments = ['compartmentId']
@@ -20556,7 +20556,7 @@ class VirtualNetworkClient(object):
20556
20556
  :rtype: :class:`~oci.response.Response`
20557
20557
 
20558
20558
  :example:
20559
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_route_tables.py.html>`__ to see an example of how to use list_route_tables API.
20559
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_route_tables.py.html>`__ to see an example of how to use list_route_tables API.
20560
20560
  """
20561
20561
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20562
20562
  required_arguments = ['compartmentId']
@@ -20727,7 +20727,7 @@ class VirtualNetworkClient(object):
20727
20727
  :rtype: :class:`~oci.response.Response`
20728
20728
 
20729
20729
  :example:
20730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_security_lists.py.html>`__ to see an example of how to use list_security_lists API.
20730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_security_lists.py.html>`__ to see an example of how to use list_security_lists API.
20731
20731
  """
20732
20732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20733
20733
  required_arguments = ['compartmentId']
@@ -20895,7 +20895,7 @@ class VirtualNetworkClient(object):
20895
20895
  :rtype: :class:`~oci.response.Response`
20896
20896
 
20897
20897
  :example:
20898
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_service_gateways.py.html>`__ to see an example of how to use list_service_gateways API.
20898
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_service_gateways.py.html>`__ to see an example of how to use list_service_gateways API.
20899
20899
  """
20900
20900
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20901
20901
  required_arguments = ['compartmentId']
@@ -21027,7 +21027,7 @@ class VirtualNetworkClient(object):
21027
21027
  :rtype: :class:`~oci.response.Response`
21028
21028
 
21029
21029
  :example:
21030
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_services.py.html>`__ to see an example of how to use list_services API.
21030
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_services.py.html>`__ to see an example of how to use list_services API.
21031
21031
  """
21032
21032
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21033
21033
  required_arguments = []
@@ -21166,7 +21166,7 @@ class VirtualNetworkClient(object):
21166
21166
  :rtype: :class:`~oci.response.Response`
21167
21167
 
21168
21168
  :example:
21169
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_subnets.py.html>`__ to see an example of how to use list_subnets API.
21169
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_subnets.py.html>`__ to see an example of how to use list_subnets API.
21170
21170
  """
21171
21171
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21172
21172
  required_arguments = ['compartmentId']
@@ -21331,7 +21331,7 @@ class VirtualNetworkClient(object):
21331
21331
  :rtype: :class:`~oci.response.Response`
21332
21332
 
21333
21333
  :example:
21334
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_vcns.py.html>`__ to see an example of how to use list_vcns API.
21334
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_vcns.py.html>`__ to see an example of how to use list_vcns API.
21335
21335
  """
21336
21336
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21337
21337
  required_arguments = ['compartmentId']
@@ -21425,6 +21425,126 @@ class VirtualNetworkClient(object):
21425
21425
  api_reference_link=api_reference_link,
21426
21426
  required_arguments=required_arguments)
21427
21427
 
21428
+ def list_virtual_circuit_associated_tunnels(self, virtual_circuit_id, **kwargs):
21429
+ """
21430
+ Gets the specified virtual circuit's associatedTunnelsInfo.
21431
+
21432
+
21433
+ :param str virtual_circuit_id: (required)
21434
+ The `OCID`__ of the virtual circuit.
21435
+
21436
+ __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
21437
+
21438
+ :param int limit: (optional)
21439
+ For list pagination. The maximum number of results per page, or items to return in a paginated
21440
+ \"List\" call. For important details about how pagination works, see
21441
+ `List Pagination`__.
21442
+
21443
+ Example: `50`
21444
+
21445
+ __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine
21446
+
21447
+ :param str page: (optional)
21448
+ For list pagination. The value of the `opc-next-page` response header from the previous \"List\"
21449
+ call. For important details about how pagination works, see
21450
+ `List Pagination`__.
21451
+
21452
+ __ https://docs.cloud.oracle.com/iaas/Content/API/Concepts/usingapi.htm#nine
21453
+
21454
+ :param obj retry_strategy: (optional)
21455
+ A retry strategy to apply to this specific operation/call. This will override any retry strategy set at the client-level.
21456
+
21457
+ This should be one of the strategies available in the :py:mod:`~oci.retry` module. This operation uses :py:data:`~oci.retry.DEFAULT_RETRY_STRATEGY` as default if no retry strategy is provided.
21458
+ The specifics of the default retry strategy are described `here <https://docs.oracle.com/en-us/iaas/tools/python/latest/sdk_behaviors/retries.html>`__.
21459
+
21460
+ To have this operation explicitly not perform any retries, pass an instance of :py:class:`~oci.retry.NoneRetryStrategy`.
21461
+
21462
+ :param bool allow_control_chars: (optional)
21463
+ allow_control_chars is a boolean to indicate whether or not this request should allow control characters in the response object.
21464
+ By default, the response will not allow control characters in strings
21465
+
21466
+ :return: A :class:`~oci.response.Response` object with data of type list of :class:`~oci.core.models.VirtualCircuitAssociatedTunnelDetails`
21467
+ :rtype: :class:`~oci.response.Response`
21468
+
21469
+ :example:
21470
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_virtual_circuit_associated_tunnels.py.html>`__ to see an example of how to use list_virtual_circuit_associated_tunnels API.
21471
+ """
21472
+ # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21473
+ required_arguments = ['virtualCircuitId']
21474
+ resource_path = "/virtualCircuits/{virtualCircuitId}/associatedTunnels"
21475
+ method = "GET"
21476
+ operation_name = "list_virtual_circuit_associated_tunnels"
21477
+ api_reference_link = "https://docs.oracle.com/iaas/api/#/en/iaas/20160918/VirtualCircuitAssociatedTunnelDetails/ListVirtualCircuitAssociatedTunnels"
21478
+
21479
+ # Don't accept unknown kwargs
21480
+ expected_kwargs = [
21481
+ "allow_control_chars",
21482
+ "retry_strategy",
21483
+ "limit",
21484
+ "page"
21485
+ ]
21486
+ extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs]
21487
+ if extra_kwargs:
21488
+ raise ValueError(
21489
+ "list_virtual_circuit_associated_tunnels got unknown kwargs: {!r}".format(extra_kwargs))
21490
+
21491
+ path_params = {
21492
+ "virtualCircuitId": virtual_circuit_id
21493
+ }
21494
+
21495
+ path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing}
21496
+
21497
+ for (k, v) in six.iteritems(path_params):
21498
+ if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0):
21499
+ raise ValueError('Parameter {} cannot be None, whitespace or empty string'.format(k))
21500
+
21501
+ query_params = {
21502
+ "limit": kwargs.get("limit", missing),
21503
+ "page": kwargs.get("page", missing)
21504
+ }
21505
+ query_params = {k: v for (k, v) in six.iteritems(query_params) if v is not missing and v is not None}
21506
+
21507
+ header_params = {
21508
+ "accept": "application/json",
21509
+ "content-type": "application/json"
21510
+ }
21511
+
21512
+ retry_strategy = self.base_client.get_preferred_retry_strategy(
21513
+ operation_retry_strategy=kwargs.get('retry_strategy'),
21514
+ client_retry_strategy=self.retry_strategy
21515
+ )
21516
+ if retry_strategy is None:
21517
+ retry_strategy = retry.DEFAULT_RETRY_STRATEGY
21518
+
21519
+ if retry_strategy:
21520
+ if not isinstance(retry_strategy, retry.NoneRetryStrategy):
21521
+ self.base_client.add_opc_client_retries_header(header_params)
21522
+ retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback)
21523
+ return retry_strategy.make_retrying_call(
21524
+ self.base_client.call_api,
21525
+ resource_path=resource_path,
21526
+ method=method,
21527
+ path_params=path_params,
21528
+ query_params=query_params,
21529
+ header_params=header_params,
21530
+ response_type="list[VirtualCircuitAssociatedTunnelDetails]",
21531
+ allow_control_chars=kwargs.get('allow_control_chars'),
21532
+ operation_name=operation_name,
21533
+ api_reference_link=api_reference_link,
21534
+ required_arguments=required_arguments)
21535
+ else:
21536
+ return self.base_client.call_api(
21537
+ resource_path=resource_path,
21538
+ method=method,
21539
+ path_params=path_params,
21540
+ query_params=query_params,
21541
+ header_params=header_params,
21542
+ response_type="list[VirtualCircuitAssociatedTunnelDetails]",
21543
+ allow_control_chars=kwargs.get('allow_control_chars'),
21544
+ operation_name=operation_name,
21545
+ api_reference_link=api_reference_link,
21546
+ required_arguments=required_arguments)
21547
+
21428
21548
  def list_virtual_circuit_bandwidth_shapes(self, compartment_id, **kwargs):
21429
21549
  """
21430
21550
  The deprecated operation lists available bandwidth levels for virtual circuits. For the compartment ID, provide the `OCID`__ of your tenancy (the root compartment).
@@ -21469,7 +21589,7 @@ class VirtualNetworkClient(object):
21469
21589
  :rtype: :class:`~oci.response.Response`
21470
21590
 
21471
21591
  :example:
21472
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_virtual_circuit_bandwidth_shapes.py.html>`__ to see an example of how to use list_virtual_circuit_bandwidth_shapes API.
21592
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_virtual_circuit_bandwidth_shapes.py.html>`__ to see an example of how to use list_virtual_circuit_bandwidth_shapes API.
21473
21593
  """
21474
21594
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21475
21595
  required_arguments = ['compartmentId']
@@ -21571,7 +21691,7 @@ class VirtualNetworkClient(object):
21571
21691
  :rtype: :class:`~oci.response.Response`
21572
21692
 
21573
21693
  :example:
21574
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use list_virtual_circuit_public_prefixes API.
21694
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use list_virtual_circuit_public_prefixes API.
21575
21695
  """
21576
21696
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21577
21697
  required_arguments = ['virtualCircuitId']
@@ -21723,7 +21843,7 @@ class VirtualNetworkClient(object):
21723
21843
  :rtype: :class:`~oci.response.Response`
21724
21844
 
21725
21845
  :example:
21726
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_virtual_circuits.py.html>`__ to see an example of how to use list_virtual_circuits API.
21846
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_virtual_circuits.py.html>`__ to see an example of how to use list_virtual_circuits API.
21727
21847
  """
21728
21848
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21729
21849
  required_arguments = ['compartmentId']
@@ -21897,7 +22017,7 @@ class VirtualNetworkClient(object):
21897
22017
  :rtype: :class:`~oci.response.Response`
21898
22018
 
21899
22019
  :example:
21900
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_vlans.py.html>`__ to see an example of how to use list_vlans API.
22020
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_vlans.py.html>`__ to see an example of how to use list_vlans API.
21901
22021
  """
21902
22022
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21903
22023
  required_arguments = ['compartmentId']
@@ -22093,7 +22213,7 @@ class VirtualNetworkClient(object):
22093
22213
  :rtype: :class:`~oci.response.Response`
22094
22214
 
22095
22215
  :example:
22096
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/list_vtaps.py.html>`__ to see an example of how to use list_vtaps API.
22216
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/list_vtaps.py.html>`__ to see an example of how to use list_vtaps API.
22097
22217
  """
22098
22218
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22099
22219
  required_arguments = ['compartmentId']
@@ -22253,7 +22373,7 @@ class VirtualNetworkClient(object):
22253
22373
  :rtype: :class:`~oci.response.Response`
22254
22374
 
22255
22375
  :example:
22256
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/modify_vcn_cidr.py.html>`__ to see an example of how to use modify_vcn_cidr API.
22376
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/modify_vcn_cidr.py.html>`__ to see an example of how to use modify_vcn_cidr API.
22257
22377
  """
22258
22378
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22259
22379
  required_arguments = ['vcnId']
@@ -22356,7 +22476,7 @@ class VirtualNetworkClient(object):
22356
22476
  :rtype: :class:`~oci.response.Response`
22357
22477
 
22358
22478
  :example:
22359
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_drg_route_distribution_statements.py.html>`__ to see an example of how to use remove_drg_route_distribution_statements API.
22479
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_drg_route_distribution_statements.py.html>`__ to see an example of how to use remove_drg_route_distribution_statements API.
22360
22480
  """
22361
22481
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22362
22482
  required_arguments = ['drgRouteDistributionId']
@@ -22447,7 +22567,7 @@ class VirtualNetworkClient(object):
22447
22567
  :rtype: :class:`~oci.response.Response`
22448
22568
 
22449
22569
  :example:
22450
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_drg_route_rules.py.html>`__ to see an example of how to use remove_drg_route_rules API.
22570
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_drg_route_rules.py.html>`__ to see an example of how to use remove_drg_route_rules API.
22451
22571
  """
22452
22572
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22453
22573
  required_arguments = ['drgRouteTableId']
@@ -22544,7 +22664,7 @@ class VirtualNetworkClient(object):
22544
22664
  :rtype: :class:`~oci.response.Response`
22545
22665
 
22546
22666
  :example:
22547
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_export_drg_route_distribution.py.html>`__ to see an example of how to use remove_export_drg_route_distribution API.
22667
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_export_drg_route_distribution.py.html>`__ to see an example of how to use remove_export_drg_route_distribution API.
22548
22668
  """
22549
22669
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22550
22670
  required_arguments = ['drgAttachmentId']
@@ -22651,7 +22771,7 @@ class VirtualNetworkClient(object):
22651
22771
  :rtype: :class:`~oci.response.Response`
22652
22772
 
22653
22773
  :example:
22654
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_import_drg_route_distribution.py.html>`__ to see an example of how to use remove_import_drg_route_distribution API.
22774
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_import_drg_route_distribution.py.html>`__ to see an example of how to use remove_import_drg_route_distribution API.
22655
22775
  """
22656
22776
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22657
22777
  required_arguments = ['drgRouteTableId']
@@ -22767,7 +22887,7 @@ class VirtualNetworkClient(object):
22767
22887
  :rtype: :class:`~oci.response.Response`
22768
22888
 
22769
22889
  :example:
22770
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_ipv6_subnet_cidr.py.html>`__ to see an example of how to use remove_ipv6_subnet_cidr API.
22890
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_ipv6_subnet_cidr.py.html>`__ to see an example of how to use remove_ipv6_subnet_cidr API.
22771
22891
  """
22772
22892
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22773
22893
  required_arguments = ['subnetId']
@@ -22886,7 +23006,7 @@ class VirtualNetworkClient(object):
22886
23006
  :rtype: :class:`~oci.response.Response`
22887
23007
 
22888
23008
  :example:
22889
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_ipv6_vcn_cidr.py.html>`__ to see an example of how to use remove_ipv6_vcn_cidr API.
23009
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_ipv6_vcn_cidr.py.html>`__ to see an example of how to use remove_ipv6_vcn_cidr API.
22890
23010
  """
22891
23011
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22892
23012
  required_arguments = ['vcnId']
@@ -22991,7 +23111,7 @@ class VirtualNetworkClient(object):
22991
23111
  :rtype: :class:`~oci.response.Response`
22992
23112
 
22993
23113
  :example:
22994
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_network_security_group_security_rules.py.html>`__ to see an example of how to use remove_network_security_group_security_rules API.
23114
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_network_security_group_security_rules.py.html>`__ to see an example of how to use remove_network_security_group_security_rules API.
22995
23115
  """
22996
23116
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22997
23117
  required_arguments = ['networkSecurityGroupId']
@@ -23093,7 +23213,7 @@ class VirtualNetworkClient(object):
23093
23213
  :rtype: :class:`~oci.response.Response`
23094
23214
 
23095
23215
  :example:
23096
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_public_ip_pool_capacity.py.html>`__ to see an example of how to use remove_public_ip_pool_capacity API.
23216
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_public_ip_pool_capacity.py.html>`__ to see an example of how to use remove_public_ip_pool_capacity API.
23097
23217
  """
23098
23218
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23099
23219
  required_arguments = ['publicIpPoolId']
@@ -23216,7 +23336,7 @@ class VirtualNetworkClient(object):
23216
23336
  :rtype: :class:`~oci.response.Response`
23217
23337
 
23218
23338
  :example:
23219
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/remove_vcn_cidr.py.html>`__ to see an example of how to use remove_vcn_cidr API.
23339
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/remove_vcn_cidr.py.html>`__ to see an example of how to use remove_vcn_cidr API.
23220
23340
  """
23221
23341
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23222
23342
  required_arguments = ['vcnId']
@@ -23328,7 +23448,7 @@ class VirtualNetworkClient(object):
23328
23448
  :rtype: :class:`~oci.response.Response`
23329
23449
 
23330
23450
  :example:
23331
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_byoip_range.py.html>`__ to see an example of how to use update_byoip_range API.
23451
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_byoip_range.py.html>`__ to see an example of how to use update_byoip_range API.
23332
23452
  """
23333
23453
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23334
23454
  required_arguments = ['byoipRangeId']
@@ -23439,7 +23559,7 @@ class VirtualNetworkClient(object):
23439
23559
  :rtype: :class:`~oci.response.Response`
23440
23560
 
23441
23561
  :example:
23442
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_capture_filter.py.html>`__ to see an example of how to use update_capture_filter API.
23562
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_capture_filter.py.html>`__ to see an example of how to use update_capture_filter API.
23443
23563
  """
23444
23564
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23445
23565
  required_arguments = ['captureFilterId']
@@ -23547,7 +23667,7 @@ class VirtualNetworkClient(object):
23547
23667
  :rtype: :class:`~oci.response.Response`
23548
23668
 
23549
23669
  :example:
23550
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_cpe.py.html>`__ to see an example of how to use update_cpe API.
23670
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_cpe.py.html>`__ to see an example of how to use update_cpe API.
23551
23671
  """
23552
23672
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23553
23673
  required_arguments = ['cpeId']
@@ -23654,7 +23774,7 @@ class VirtualNetworkClient(object):
23654
23774
  :rtype: :class:`~oci.response.Response`
23655
23775
 
23656
23776
  :example:
23657
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_cross_connect.py.html>`__ to see an example of how to use update_cross_connect API.
23777
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_cross_connect.py.html>`__ to see an example of how to use update_cross_connect API.
23658
23778
  """
23659
23779
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23660
23780
  required_arguments = ['crossConnectId']
@@ -23762,7 +23882,7 @@ class VirtualNetworkClient(object):
23762
23882
  :rtype: :class:`~oci.response.Response`
23763
23883
 
23764
23884
  :example:
23765
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_cross_connect_group.py.html>`__ to see an example of how to use update_cross_connect_group API.
23885
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_cross_connect_group.py.html>`__ to see an example of how to use update_cross_connect_group API.
23766
23886
  """
23767
23887
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23768
23888
  required_arguments = ['crossConnectGroupId']
@@ -23872,7 +23992,7 @@ class VirtualNetworkClient(object):
23872
23992
  :rtype: :class:`~oci.response.Response`
23873
23993
 
23874
23994
  :example:
23875
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_dhcp_options.py.html>`__ to see an example of how to use update_dhcp_options API.
23995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_dhcp_options.py.html>`__ to see an example of how to use update_dhcp_options API.
23876
23996
  """
23877
23997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23878
23998
  required_arguments = ['dhcpId']
@@ -23977,7 +24097,7 @@ class VirtualNetworkClient(object):
23977
24097
  :rtype: :class:`~oci.response.Response`
23978
24098
 
23979
24099
  :example:
23980
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_drg.py.html>`__ to see an example of how to use update_drg API.
24100
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_drg.py.html>`__ to see an example of how to use update_drg API.
23981
24101
  """
23982
24102
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23983
24103
  required_arguments = ['drgId']
@@ -24083,7 +24203,7 @@ class VirtualNetworkClient(object):
24083
24203
  :rtype: :class:`~oci.response.Response`
24084
24204
 
24085
24205
  :example:
24086
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_drg_attachment.py.html>`__ to see an example of how to use update_drg_attachment API.
24206
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_drg_attachment.py.html>`__ to see an example of how to use update_drg_attachment API.
24087
24207
  """
24088
24208
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24089
24209
  required_arguments = ['drgAttachmentId']
@@ -24188,7 +24308,7 @@ class VirtualNetworkClient(object):
24188
24308
  :rtype: :class:`~oci.response.Response`
24189
24309
 
24190
24310
  :example:
24191
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_drg_route_distribution.py.html>`__ to see an example of how to use update_drg_route_distribution API.
24311
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_drg_route_distribution.py.html>`__ to see an example of how to use update_drg_route_distribution API.
24192
24312
  """
24193
24313
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24194
24314
  required_arguments = ['drgRouteDistributionId']
@@ -24288,7 +24408,7 @@ class VirtualNetworkClient(object):
24288
24408
  :rtype: :class:`~oci.response.Response`
24289
24409
 
24290
24410
  :example:
24291
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_drg_route_distribution_statements.py.html>`__ to see an example of how to use update_drg_route_distribution_statements API.
24411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_drg_route_distribution_statements.py.html>`__ to see an example of how to use update_drg_route_distribution_statements API.
24292
24412
  """
24293
24413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24294
24414
  required_arguments = ['drgRouteDistributionId']
@@ -24381,7 +24501,7 @@ class VirtualNetworkClient(object):
24381
24501
  :rtype: :class:`~oci.response.Response`
24382
24502
 
24383
24503
  :example:
24384
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_drg_route_rules.py.html>`__ to see an example of how to use update_drg_route_rules API.
24504
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_drg_route_rules.py.html>`__ to see an example of how to use update_drg_route_rules API.
24385
24505
  """
24386
24506
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24387
24507
  required_arguments = ['drgRouteTableId']
@@ -24479,7 +24599,7 @@ class VirtualNetworkClient(object):
24479
24599
  :rtype: :class:`~oci.response.Response`
24480
24600
 
24481
24601
  :example:
24482
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_drg_route_table.py.html>`__ to see an example of how to use update_drg_route_table API.
24602
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_drg_route_table.py.html>`__ to see an example of how to use update_drg_route_table API.
24483
24603
  """
24484
24604
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24485
24605
  required_arguments = ['drgRouteTableId']
@@ -24588,7 +24708,7 @@ class VirtualNetworkClient(object):
24588
24708
  :rtype: :class:`~oci.response.Response`
24589
24709
 
24590
24710
  :example:
24591
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_internet_gateway.py.html>`__ to see an example of how to use update_internet_gateway API.
24711
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_internet_gateway.py.html>`__ to see an example of how to use update_internet_gateway API.
24592
24712
  """
24593
24713
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24594
24714
  required_arguments = ['igId']
@@ -24696,7 +24816,7 @@ class VirtualNetworkClient(object):
24696
24816
  :rtype: :class:`~oci.response.Response`
24697
24817
 
24698
24818
  :example:
24699
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_ip_sec_connection.py.html>`__ to see an example of how to use update_ip_sec_connection API.
24819
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_ip_sec_connection.py.html>`__ to see an example of how to use update_ip_sec_connection API.
24700
24820
  """
24701
24821
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24702
24822
  required_arguments = ['ipscId']
@@ -24823,7 +24943,7 @@ class VirtualNetworkClient(object):
24823
24943
  :rtype: :class:`~oci.response.Response`
24824
24944
 
24825
24945
  :example:
24826
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use update_ip_sec_connection_tunnel API.
24946
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use update_ip_sec_connection_tunnel API.
24827
24947
  """
24828
24948
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24829
24949
  required_arguments = ['ipscId', 'tunnelId']
@@ -24940,7 +25060,7 @@ class VirtualNetworkClient(object):
24940
25060
  :rtype: :class:`~oci.response.Response`
24941
25061
 
24942
25062
  :example:
24943
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_ip_sec_connection_tunnel_shared_secret.py.html>`__ to see an example of how to use update_ip_sec_connection_tunnel_shared_secret API.
25063
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_ip_sec_connection_tunnel_shared_secret.py.html>`__ to see an example of how to use update_ip_sec_connection_tunnel_shared_secret API.
24944
25064
  """
24945
25065
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24946
25066
  required_arguments = ['ipscId', 'tunnelId']
@@ -25060,7 +25180,7 @@ class VirtualNetworkClient(object):
25060
25180
  :rtype: :class:`~oci.response.Response`
25061
25181
 
25062
25182
  :example:
25063
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_ipv6.py.html>`__ to see an example of how to use update_ipv6 API.
25183
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_ipv6.py.html>`__ to see an example of how to use update_ipv6 API.
25064
25184
  """
25065
25185
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25066
25186
  required_arguments = ['ipv6Id']
@@ -25167,7 +25287,7 @@ class VirtualNetworkClient(object):
25167
25287
  :rtype: :class:`~oci.response.Response`
25168
25288
 
25169
25289
  :example:
25170
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_local_peering_gateway.py.html>`__ to see an example of how to use update_local_peering_gateway API.
25290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_local_peering_gateway.py.html>`__ to see an example of how to use update_local_peering_gateway API.
25171
25291
  """
25172
25292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25173
25293
  required_arguments = ['localPeeringGatewayId']
@@ -25272,7 +25392,7 @@ class VirtualNetworkClient(object):
25272
25392
  :rtype: :class:`~oci.response.Response`
25273
25393
 
25274
25394
  :example:
25275
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_nat_gateway.py.html>`__ to see an example of how to use update_nat_gateway API.
25395
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_nat_gateway.py.html>`__ to see an example of how to use update_nat_gateway API.
25276
25396
  """
25277
25397
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25278
25398
  required_arguments = ['natGatewayId']
@@ -25393,7 +25513,7 @@ class VirtualNetworkClient(object):
25393
25513
  :rtype: :class:`~oci.response.Response`
25394
25514
 
25395
25515
  :example:
25396
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_network_security_group.py.html>`__ to see an example of how to use update_network_security_group API.
25516
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_network_security_group.py.html>`__ to see an example of how to use update_network_security_group API.
25397
25517
  """
25398
25518
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25399
25519
  required_arguments = ['networkSecurityGroupId']
@@ -25494,7 +25614,7 @@ class VirtualNetworkClient(object):
25494
25614
  :rtype: :class:`~oci.response.Response`
25495
25615
 
25496
25616
  :example:
25497
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_network_security_group_security_rules.py.html>`__ to see an example of how to use update_network_security_group_security_rules API.
25617
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_network_security_group_security_rules.py.html>`__ to see an example of how to use update_network_security_group_security_rules API.
25498
25618
  """
25499
25619
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25500
25620
  required_arguments = ['networkSecurityGroupId']
@@ -25603,7 +25723,7 @@ class VirtualNetworkClient(object):
25603
25723
  :rtype: :class:`~oci.response.Response`
25604
25724
 
25605
25725
  :example:
25606
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_private_ip.py.html>`__ to see an example of how to use update_private_ip API.
25726
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_private_ip.py.html>`__ to see an example of how to use update_private_ip API.
25607
25727
  """
25608
25728
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25609
25729
  required_arguments = ['privateIpId']
@@ -25749,7 +25869,7 @@ class VirtualNetworkClient(object):
25749
25869
  :rtype: :class:`~oci.response.Response`
25750
25870
 
25751
25871
  :example:
25752
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_public_ip.py.html>`__ to see an example of how to use update_public_ip API.
25872
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_public_ip.py.html>`__ to see an example of how to use update_public_ip API.
25753
25873
  """
25754
25874
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25755
25875
  required_arguments = ['publicIpId']
@@ -25858,7 +25978,7 @@ class VirtualNetworkClient(object):
25858
25978
  :rtype: :class:`~oci.response.Response`
25859
25979
 
25860
25980
  :example:
25861
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_public_ip_pool.py.html>`__ to see an example of how to use update_public_ip_pool API.
25981
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_public_ip_pool.py.html>`__ to see an example of how to use update_public_ip_pool API.
25862
25982
  """
25863
25983
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25864
25984
  required_arguments = ['publicIpPoolId']
@@ -25965,7 +26085,7 @@ class VirtualNetworkClient(object):
25965
26085
  :rtype: :class:`~oci.response.Response`
25966
26086
 
25967
26087
  :example:
25968
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_remote_peering_connection.py.html>`__ to see an example of how to use update_remote_peering_connection API.
26088
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_remote_peering_connection.py.html>`__ to see an example of how to use update_remote_peering_connection API.
25969
26089
  """
25970
26090
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25971
26091
  required_arguments = ['remotePeeringConnectionId']
@@ -26075,7 +26195,7 @@ class VirtualNetworkClient(object):
26075
26195
  :rtype: :class:`~oci.response.Response`
26076
26196
 
26077
26197
  :example:
26078
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_route_table.py.html>`__ to see an example of how to use update_route_table API.
26198
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_route_table.py.html>`__ to see an example of how to use update_route_table API.
26079
26199
  """
26080
26200
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26081
26201
  required_arguments = ['rtId']
@@ -26184,7 +26304,7 @@ class VirtualNetworkClient(object):
26184
26304
  :rtype: :class:`~oci.response.Response`
26185
26305
 
26186
26306
  :example:
26187
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_security_list.py.html>`__ to see an example of how to use update_security_list API.
26307
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_security_list.py.html>`__ to see an example of how to use update_security_list API.
26188
26308
  """
26189
26309
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26190
26310
  required_arguments = ['securityListId']
@@ -26290,7 +26410,7 @@ class VirtualNetworkClient(object):
26290
26410
  :rtype: :class:`~oci.response.Response`
26291
26411
 
26292
26412
  :example:
26293
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_service_gateway.py.html>`__ to see an example of how to use update_service_gateway API.
26413
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_service_gateway.py.html>`__ to see an example of how to use update_service_gateway API.
26294
26414
  """
26295
26415
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26296
26416
  required_arguments = ['serviceGatewayId']
@@ -26395,7 +26515,7 @@ class VirtualNetworkClient(object):
26395
26515
  :rtype: :class:`~oci.response.Response`
26396
26516
 
26397
26517
  :example:
26398
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_subnet.py.html>`__ to see an example of how to use update_subnet API.
26518
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_subnet.py.html>`__ to see an example of how to use update_subnet API.
26399
26519
  """
26400
26520
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26401
26521
  required_arguments = ['subnetId']
@@ -26518,7 +26638,7 @@ class VirtualNetworkClient(object):
26518
26638
  :rtype: :class:`~oci.response.Response`
26519
26639
 
26520
26640
  :example:
26521
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_tunnel_cpe_device_config.py.html>`__ to see an example of how to use update_tunnel_cpe_device_config API.
26641
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_tunnel_cpe_device_config.py.html>`__ to see an example of how to use update_tunnel_cpe_device_config API.
26522
26642
  """
26523
26643
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26524
26644
  required_arguments = ['ipscId', 'tunnelId']
@@ -26631,7 +26751,7 @@ class VirtualNetworkClient(object):
26631
26751
  :rtype: :class:`~oci.response.Response`
26632
26752
 
26633
26753
  :example:
26634
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_vcn.py.html>`__ to see an example of how to use update_vcn API.
26754
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_vcn.py.html>`__ to see an example of how to use update_vcn API.
26635
26755
  """
26636
26756
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26637
26757
  required_arguments = ['vcnId']
@@ -26761,7 +26881,7 @@ class VirtualNetworkClient(object):
26761
26881
  :rtype: :class:`~oci.response.Response`
26762
26882
 
26763
26883
  :example:
26764
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_virtual_circuit.py.html>`__ to see an example of how to use update_virtual_circuit API.
26884
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_virtual_circuit.py.html>`__ to see an example of how to use update_virtual_circuit API.
26765
26885
  """
26766
26886
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26767
26887
  required_arguments = ['virtualCircuitId']
@@ -26873,7 +26993,7 @@ class VirtualNetworkClient(object):
26873
26993
  :rtype: :class:`~oci.response.Response`
26874
26994
 
26875
26995
  :example:
26876
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_vlan.py.html>`__ to see an example of how to use update_vlan API.
26996
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_vlan.py.html>`__ to see an example of how to use update_vlan API.
26877
26997
  """
26878
26998
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26879
26999
  required_arguments = ['vlanId']
@@ -26980,7 +27100,7 @@ class VirtualNetworkClient(object):
26980
27100
  :rtype: :class:`~oci.response.Response`
26981
27101
 
26982
27102
  :example:
26983
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_vnic.py.html>`__ to see an example of how to use update_vnic API.
27103
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_vnic.py.html>`__ to see an example of how to use update_vnic API.
26984
27104
  """
26985
27105
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26986
27106
  required_arguments = ['vnicId']
@@ -27089,7 +27209,7 @@ class VirtualNetworkClient(object):
27089
27209
  :rtype: :class:`~oci.response.Response`
27090
27210
 
27091
27211
  :example:
27092
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/update_vtap.py.html>`__ to see an example of how to use update_vtap API.
27212
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/update_vtap.py.html>`__ to see an example of how to use update_vtap API.
27093
27213
  """
27094
27214
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27095
27215
  required_arguments = ['vtapId']
@@ -27200,7 +27320,7 @@ class VirtualNetworkClient(object):
27200
27320
  :rtype: :class:`~oci.response.Response`
27201
27321
 
27202
27322
  :example:
27203
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/upgrade_drg.py.html>`__ to see an example of how to use upgrade_drg API.
27323
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/upgrade_drg.py.html>`__ to see an example of how to use upgrade_drg API.
27204
27324
  """
27205
27325
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27206
27326
  required_arguments = ['drgId']
@@ -27303,7 +27423,7 @@ class VirtualNetworkClient(object):
27303
27423
  :rtype: :class:`~oci.response.Response`
27304
27424
 
27305
27425
  :example:
27306
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/validate_byoip_range.py.html>`__ to see an example of how to use validate_byoip_range API.
27426
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/validate_byoip_range.py.html>`__ to see an example of how to use validate_byoip_range API.
27307
27427
  """
27308
27428
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27309
27429
  required_arguments = ['byoipRangeId']
@@ -27400,7 +27520,7 @@ class VirtualNetworkClient(object):
27400
27520
  :rtype: :class:`~oci.response.Response`
27401
27521
 
27402
27522
  :example:
27403
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.110.2/core/withdraw_byoip_range.py.html>`__ to see an example of how to use withdraw_byoip_range API.
27523
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.112.0/core/withdraw_byoip_range.py.html>`__ to see an example of how to use withdraw_byoip_range API.
27404
27524
  """
27405
27525
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27406
27526
  required_arguments = ['byoipRangeId']