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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (520) hide show
  1. oci/__init__.py +2 -2
  2. oci/access_governance_cp/access_governance_cp_client.py +8 -8
  3. oci/addons/adk/agent.py +82 -32
  4. oci/addons/adk/mcp/__init__.py +11 -0
  5. oci/addons/adk/mcp/mcp_client.py +420 -0
  6. oci/addons/adk/tool/function_tool.py +7 -3
  7. oci/addons/adk/tool/tool.py +11 -1
  8. oci/addons/adk/tool/toolkit.py +11 -2
  9. oci/adm/application_dependency_management_client.py +36 -36
  10. oci/ai_anomaly_detection/anomaly_detection_client.py +72 -72
  11. oci/ai_document/ai_service_document_client.py +26 -26
  12. oci/ai_language/ai_service_language_client.py +44 -44
  13. oci/ai_speech/ai_service_speech_client.py +19 -19
  14. oci/ai_vision/ai_service_vision_client.py +28 -28
  15. oci/analytics/analytics_client.py +24 -24
  16. oci/announcements_service/announcement_client.py +5 -5
  17. oci/announcements_service/announcement_subscription_client.py +9 -9
  18. oci/announcements_service/announcements_preferences_client.py +4 -4
  19. oci/announcements_service/service_client.py +1 -1
  20. oci/apiaccesscontrol/api_metadata_client.py +6 -6
  21. oci/apiaccesscontrol/privileged_api_control_client.py +12 -12
  22. oci/apiaccesscontrol/privileged_api_requests_client.py +14 -14
  23. oci/apiaccesscontrol/privileged_api_work_request_client.py +10 -10
  24. oci/apigateway/api_gateway_client.py +21 -21
  25. oci/apigateway/deployment_client.py +6 -6
  26. oci/apigateway/gateway_client.py +6 -6
  27. oci/apigateway/subscribers_client.py +6 -6
  28. oci/apigateway/usage_plans_client.py +6 -6
  29. oci/apigateway/work_requests_client.py +5 -5
  30. oci/apm_config/config_client.py +12 -12
  31. oci/apm_control_plane/apm_domain_client.py +14 -14
  32. oci/apm_synthetics/apm_synthetic_client.py +28 -28
  33. oci/apm_traces/__init__.py +3 -1
  34. oci/apm_traces/attributes_client.py +12 -12
  35. oci/apm_traces/models/__init__.py +25 -1
  36. oci/apm_traces/models/attribute.py +101 -0
  37. oci/apm_traces/models/attribute_metadata.py +149 -0
  38. oci/apm_traces/models/attribute_response.py +2 -2
  39. oci/apm_traces/models/attribute_update_response.py +2 -2
  40. oci/apm_traces/models/auto_activate_status.py +16 -0
  41. oci/apm_traces/models/auto_activate_toggle_status.py +16 -0
  42. oci/apm_traces/models/bulk_activate_attribute_detail.py +47 -8
  43. oci/apm_traces/models/bulk_de_activate_attribute_detail.py +7 -3
  44. oci/apm_traces/models/bulk_pin_attribute_detail.py +7 -3
  45. oci/apm_traces/models/bulk_unpin_attribute_detail.py +7 -3
  46. oci/apm_traces/models/bulk_update_attribute_detail.py +9 -5
  47. oci/apm_traces/models/bulk_update_attribute_notes_detail.py +7 -3
  48. oci/apm_traces/models/create_scheduled_query_details.py +471 -0
  49. oci/apm_traces/models/custom_metric.py +295 -0
  50. oci/apm_traces/models/log.py +475 -0
  51. oci/apm_traces/models/object_storage.py +132 -0
  52. oci/apm_traces/models/scheduled_query.py +666 -0
  53. oci/apm_traces/models/scheduled_query_collection.py +70 -0
  54. oci/apm_traces/models/scheduled_query_processing_config.py +120 -0
  55. oci/apm_traces/models/scheduled_query_summary.py +573 -0
  56. oci/apm_traces/models/streaming.py +70 -0
  57. oci/apm_traces/models/tag_metadata.py +2 -2
  58. oci/apm_traces/models/update_scheduled_query_details.py +471 -0
  59. oci/apm_traces/query_client.py +8 -6
  60. oci/apm_traces/scheduled_query_client.py +755 -0
  61. oci/apm_traces/scheduled_query_client_composite_operations.py +181 -0
  62. oci/apm_traces/trace_client.py +131 -6
  63. oci/appmgmt_control/appmgmt_control_client.py +8 -8
  64. oci/artifacts/artifacts_client.py +32 -32
  65. oci/audit/audit_client.py +3 -3
  66. oci/autoscaling/auto_scaling_client.py +11 -11
  67. oci/base_client.py +3 -0
  68. oci/bastion/bastion_client.py +15 -15
  69. oci/bds/bds_client.py +88 -88
  70. oci/blockchain/blockchain_platform_client.py +27 -27
  71. oci/budget/budget_client.py +10 -10
  72. oci/capacity_management/capacity_management_client.py +32 -32
  73. oci/capacity_management/demand_signal_client.py +13 -13
  74. oci/capacity_management/internal_demand_signal_client.py +12 -12
  75. oci/certificates/certificates_client.py +5 -5
  76. oci/certificates_management/certificates_management_client.py +32 -32
  77. oci/cims/incident_client.py +6 -6
  78. oci/cloud_bridge/common_client.py +5 -5
  79. oci/cloud_bridge/discovery_client.py +15 -15
  80. oci/cloud_bridge/inventory_client.py +16 -16
  81. oci/cloud_bridge/ocb_agent_svc_client.py +23 -23
  82. oci/cloud_guard/cloud_guard_client.py +155 -155
  83. oci/cloud_migrations/migration_client.py +43 -43
  84. oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +13 -13
  85. oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +12 -12
  86. oci/compute_instance_agent/compute_instance_agent_client.py +6 -6
  87. oci/compute_instance_agent/plugin_client.py +2 -2
  88. oci/compute_instance_agent/pluginconfig_client.py +1 -1
  89. oci/container_engine/container_engine_client.py +46 -46
  90. oci/container_instances/container_instance_client.py +18 -18
  91. oci/core/blockstorage_client.py +60 -60
  92. oci/core/compute_client.py +125 -125
  93. oci/core/compute_management_client.py +32 -32
  94. oci/core/virtual_network_client.py +258 -258
  95. oci/dashboard_service/dashboard_client.py +6 -6
  96. oci/dashboard_service/dashboard_group_client.py +6 -6
  97. oci/data_catalog/data_catalog_client.py +149 -149
  98. oci/data_flow/data_flow_client.py +45 -45
  99. oci/data_integration/data_integration_client.py +163 -163
  100. oci/data_labeling_service/data_labeling_management_client.py +17 -17
  101. oci/data_labeling_service_dataplane/data_labeling_client.py +15 -15
  102. oci/data_safe/data_safe_client.py +317 -317
  103. oci/data_science/data_science_client.py +145 -145
  104. oci/database/database_client.py +901 -421
  105. oci/database/database_client_composite_operations.py +123 -0
  106. oci/database/models/__init__.py +14 -0
  107. oci/database/models/autonomous_container_database.py +37 -0
  108. oci/database/models/autonomous_container_database_summary.py +37 -0
  109. oci/database/models/autonomous_database_software_image.py +37 -0
  110. oci/database/models/autonomous_database_software_image_summary.py +37 -0
  111. oci/database/models/autonomous_vm_cluster.py +37 -0
  112. oci/database/models/autonomous_vm_cluster_summary.py +37 -0
  113. oci/database/models/azure_encryption_key_details.py +80 -0
  114. oci/database/models/backup.py +7 -3
  115. oci/database/models/backup_destination.py +37 -0
  116. oci/database/models/backup_destination_configuration_summary.py +7 -3
  117. oci/database/models/backup_destination_details.py +7 -3
  118. oci/database/models/backup_destination_details_summary.py +7 -3
  119. oci/database/models/backup_destination_summary.py +37 -0
  120. oci/database/models/backup_summary.py +7 -3
  121. oci/database/models/change_cloud_autonomous_vm_cluster_subscription_details.py +105 -0
  122. oci/database/models/cloud_autonomous_vm_cluster.py +74 -2
  123. oci/database/models/cloud_autonomous_vm_cluster_summary.py +74 -2
  124. oci/database/models/cloud_vm_cluster.py +80 -2
  125. oci/database/models/cloud_vm_cluster_summary.py +80 -2
  126. oci/database/models/create_cloud_autonomous_vm_cluster_details.py +37 -2
  127. oci/database/models/create_cloud_vm_cluster_details.py +17 -17
  128. oci/database/models/create_database_base.py +1 -1
  129. oci/database/models/create_vm_cluster_details.py +2 -2
  130. oci/database/models/database.py +37 -0
  131. oci/database/models/database_software_image.py +37 -0
  132. oci/database/models/database_software_image_summary.py +37 -0
  133. oci/database/models/database_summary.py +37 -0
  134. oci/database/models/db_home.py +37 -0
  135. oci/database/models/db_home_from_agent_resource_id.py +37 -0
  136. oci/database/models/db_home_summary.py +37 -0
  137. oci/database/models/db_node.py +37 -0
  138. oci/database/models/db_node_summary.py +37 -0
  139. oci/database/models/db_server.py +37 -0
  140. oci/database/models/db_server_summary.py +37 -0
  141. oci/database/models/db_system.py +37 -0
  142. oci/database/models/db_system_summary.py +37 -0
  143. oci/database/models/encryption_key_location_details.py +15 -5
  144. oci/database/models/exadata_infrastructure.py +37 -0
  145. oci/database/models/exadata_infrastructure_summary.py +37 -0
  146. oci/database/models/execution_action.py +39 -2
  147. oci/database/models/execution_action_summary.py +39 -2
  148. oci/database/models/execution_window.py +39 -2
  149. oci/database/models/execution_window_summary.py +39 -2
  150. oci/database/models/external_container_database.py +37 -0
  151. oci/database/models/external_container_database_summary.py +37 -0
  152. oci/database/models/external_database_base.py +37 -0
  153. oci/database/models/external_database_connector.py +37 -0
  154. oci/database/models/external_database_connector_summary.py +37 -0
  155. oci/database/models/external_hsm_encryption_details.py +1 -1
  156. oci/database/models/external_macs_connector.py +7 -0
  157. oci/database/models/external_macs_connector_summary.py +7 -0
  158. oci/database/models/external_non_container_database.py +37 -0
  159. oci/database/models/external_non_container_database_summary.py +37 -0
  160. oci/database/models/external_pluggable_database.py +37 -0
  161. oci/database/models/external_pluggable_database_summary.py +37 -0
  162. oci/database/models/identity_connector_details.py +113 -0
  163. oci/database/models/key_store.py +39 -2
  164. oci/database/models/key_store_summary.py +39 -2
  165. oci/database/models/maintenance_run.py +37 -0
  166. oci/database/models/maintenance_run_history.py +39 -2
  167. oci/database/models/maintenance_run_history_summary.py +39 -2
  168. oci/database/models/maintenance_run_summary.py +37 -0
  169. oci/database/models/oneoff_patch.py +39 -2
  170. oci/database/models/oneoff_patch_summary.py +39 -2
  171. oci/database/models/pluggable_database.py +37 -0
  172. oci/database/models/pluggable_database_summary.py +37 -0
  173. oci/database/models/register_cloud_vm_cluster_pkcs_details.py +86 -0
  174. oci/database/models/resource_pool_member_collection.py +70 -0
  175. oci/database/models/resource_pool_member_summary.py +74 -0
  176. oci/database/models/scheduling_policy.py +39 -2
  177. oci/database/models/scheduling_policy_summary.py +39 -2
  178. oci/database/models/scheduling_window.py +39 -2
  179. oci/database/models/scheduling_window_summary.py +39 -2
  180. oci/database/models/unregister_cloud_vm_cluster_pkcs_details.py +86 -0
  181. oci/database/models/vm_cluster.py +37 -0
  182. oci/database/models/vm_cluster_network.py +39 -2
  183. oci/database/models/vm_cluster_network_summary.py +39 -2
  184. oci/database/models/vm_cluster_summary.py +37 -0
  185. oci/database_management/db_management_client.py +229 -229
  186. oci/database_management/diagnosability_client.py +4 -4
  187. oci/database_management/managed_my_sql_databases_client.py +15 -15
  188. oci/database_management/perfhub_client.py +1 -1
  189. oci/database_management/sql_tuning_client.py +17 -17
  190. oci/database_migration/database_migration_client.py +155 -42
  191. oci/database_migration/database_migration_client_composite_operations.py +42 -0
  192. oci/database_migration/models/__init__.py +4 -0
  193. oci/database_migration/models/collect_traces_data.py +183 -0
  194. oci/database_migration/models/collect_traces_details.py +132 -0
  195. oci/database_migration/models/job.py +27 -0
  196. oci/database_tools/database_tools_client.py +23 -23
  197. oci/dblm/db_life_cycle_management_client.py +14 -14
  198. oci/dbmulticloud/__init__.py +28 -0
  199. oci/dbmulticloud/models/__init__.py +112 -0
  200. oci/dbmulticloud/models/arc_agent_nodes.py +218 -0
  201. oci/dbmulticloud/models/change_multi_cloud_resource_discovery_compartment_details.py +191 -0
  202. oci/dbmulticloud/models/change_oracle_db_azure_blob_container_compartment_details.py +187 -0
  203. oci/dbmulticloud/models/change_oracle_db_azure_blob_mount_compartment_details.py +187 -0
  204. oci/dbmulticloud/models/change_oracle_db_azure_connector_compartment_details.py +187 -0
  205. oci/dbmulticloud/models/change_oracle_db_azure_vault_association_compartment_details.py +191 -0
  206. oci/dbmulticloud/models/change_oracle_db_azure_vault_compartment_details.py +191 -0
  207. oci/dbmulticloud/models/create_multi_cloud_resource_discovery_details.py +253 -0
  208. oci/dbmulticloud/models/create_oracle_db_azure_blob_container_details.py +307 -0
  209. oci/dbmulticloud/models/create_oracle_db_azure_blob_mount_details.py +245 -0
  210. oci/dbmulticloud/models/create_oracle_db_azure_connector_details.py +431 -0
  211. oci/dbmulticloud/models/create_oracle_db_azure_vault_association_details.py +257 -0
  212. oci/dbmulticloud/models/create_oracle_db_azure_vault_details.py +377 -0
  213. oci/dbmulticloud/models/multi_cloud_resource_discovery.py +577 -0
  214. oci/dbmulticloud/models/multi_cloud_resource_discovery_summary.py +517 -0
  215. oci/dbmulticloud/models/multi_cloud_resource_discovery_summary_collection.py +70 -0
  216. oci/dbmulticloud/models/oracle_db_azure_blob_container.py +568 -0
  217. oci/dbmulticloud/models/oracle_db_azure_blob_container_summary.py +536 -0
  218. oci/dbmulticloud/models/oracle_db_azure_blob_container_summary_collection.py +70 -0
  219. oci/dbmulticloud/models/oracle_db_azure_blob_mount.py +537 -0
  220. oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary.py +505 -0
  221. oci/dbmulticloud/models/oracle_db_azure_blob_mount_summary_collection.py +70 -0
  222. oci/dbmulticloud/models/oracle_db_azure_connector.py +739 -0
  223. oci/dbmulticloud/models/oracle_db_azure_connector_summary.py +660 -0
  224. oci/dbmulticloud/models/oracle_db_azure_connector_summary_collection.py +70 -0
  225. oci/dbmulticloud/models/oracle_db_azure_key.py +518 -0
  226. oci/dbmulticloud/models/oracle_db_azure_key_summary.py +486 -0
  227. oci/dbmulticloud/models/oracle_db_azure_key_summary_collection.py +70 -0
  228. oci/dbmulticloud/models/oracle_db_azure_vault.py +642 -0
  229. oci/dbmulticloud/models/oracle_db_azure_vault_association.py +553 -0
  230. oci/dbmulticloud/models/oracle_db_azure_vault_association_summary.py +521 -0
  231. oci/dbmulticloud/models/oracle_db_azure_vault_association_summary_collection.py +70 -0
  232. oci/dbmulticloud/models/oracle_db_azure_vault_summary.py +610 -0
  233. oci/dbmulticloud/models/oracle_db_azure_vault_summary_collection.py +70 -0
  234. oci/dbmulticloud/models/patch_oracle_db_azure_connector_details.py +187 -0
  235. oci/dbmulticloud/models/resources.py +229 -0
  236. oci/dbmulticloud/models/update_multi_cloud_resource_discovery_details.py +253 -0
  237. oci/dbmulticloud/models/update_oracle_db_azure_blob_container_details.py +307 -0
  238. oci/dbmulticloud/models/update_oracle_db_azure_blob_mount_details.py +245 -0
  239. oci/dbmulticloud/models/update_oracle_db_azure_connector_details.py +431 -0
  240. oci/dbmulticloud/models/update_oracle_db_azure_vault_association_details.py +257 -0
  241. oci/dbmulticloud/models/update_oracle_db_azure_vault_details.py +377 -0
  242. oci/dbmulticloud/models/work_request.py +496 -0
  243. oci/dbmulticloud/models/work_request_error.py +134 -0
  244. oci/dbmulticloud/models/work_request_error_collection.py +70 -0
  245. oci/dbmulticloud/models/work_request_log_entry.py +101 -0
  246. oci/dbmulticloud/models/work_request_log_entry_collection.py +70 -0
  247. oci/dbmulticloud/models/work_request_resource.py +232 -0
  248. oci/dbmulticloud/models/work_request_summary.py +496 -0
  249. oci/dbmulticloud/models/work_request_summary_collection.py +70 -0
  250. oci/dbmulticloud/multi_cloud_resource_discovery_client.py +883 -0
  251. oci/dbmulticloud/multi_cloud_resource_discovery_client_composite_operations.py +202 -0
  252. oci/dbmulticloud/oracle_db_azure_blob_container_client.py +864 -0
  253. oci/dbmulticloud/oracle_db_azure_blob_container_client_composite_operations.py +196 -0
  254. oci/dbmulticloud/oracle_db_azure_blob_mount_client.py +865 -0
  255. oci/dbmulticloud/oracle_db_azure_blob_mount_client_composite_operations.py +196 -0
  256. oci/dbmulticloud/oracle_db_azure_connector_client.py +963 -0
  257. oci/dbmulticloud/oracle_db_azure_connector_client_composite_operations.py +239 -0
  258. oci/dbmulticloud/oracle_db_azure_key_client.py +419 -0
  259. oci/dbmulticloud/oracle_db_azure_key_client_composite_operations.py +26 -0
  260. oci/dbmulticloud/oracle_db_azure_vault_association_client.py +979 -0
  261. oci/dbmulticloud/oracle_db_azure_vault_association_client_composite_operations.py +235 -0
  262. oci/dbmulticloud/oracle_db_azure_vault_client.py +979 -0
  263. oci/dbmulticloud/oracle_db_azure_vault_client_composite_operations.py +235 -0
  264. oci/dbmulticloud/work_request_client.py +770 -0
  265. oci/dbmulticloud/work_request_client_composite_operations.py +26 -0
  266. oci/delegate_access_control/delegate_access_control_client.py +26 -26
  267. oci/delegate_access_control/work_request_client.py +4 -4
  268. oci/demand_signal/occ_demand_signal_client.py +7 -7
  269. oci/desktops/desktop_service_client.py +21 -21
  270. oci/devops/devops_client.py +141 -141
  271. oci/disaster_recovery/disaster_recovery_client.py +31 -31
  272. oci/distributed_database/distributed_autonomous_db_service_client.py +18 -18
  273. oci/distributed_database/distributed_db_private_endpoint_service_client.py +7 -7
  274. oci/distributed_database/distributed_db_service_client.py +19 -19
  275. oci/distributed_database/distributed_db_work_request_service_client.py +4 -4
  276. oci/dns/dns_client.py +54 -54
  277. oci/dts/appliance_export_job_client.py +6 -6
  278. oci/dts/shipping_vendors_client.py +1 -1
  279. oci/dts/transfer_appliance_client.py +8 -8
  280. oci/dts/transfer_appliance_entitlement_client.py +3 -3
  281. oci/dts/transfer_device_client.py +5 -5
  282. oci/dts/transfer_job_client.py +6 -6
  283. oci/dts/transfer_package_client.py +7 -7
  284. oci/em_warehouse/em_warehouse_client.py +13 -13
  285. oci/email/email_client.py +31 -31
  286. oci/email_data_plane/email_dp_client.py +1 -1
  287. oci/events/events_client.py +6 -6
  288. oci/file_storage/file_storage_client.py +74 -74
  289. oci/fleet_apps_management/fleet_apps_management_admin_client.py +27 -27
  290. oci/fleet_apps_management/fleet_apps_management_catalog_client.py +7 -7
  291. oci/fleet_apps_management/fleet_apps_management_client.py +32 -32
  292. oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +5 -5
  293. oci/fleet_apps_management/fleet_apps_management_operations_client.py +29 -29
  294. oci/fleet_apps_management/fleet_apps_management_provision_client.py +6 -6
  295. oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +19 -19
  296. oci/fleet_apps_management/fleet_apps_management_work_request_client.py +4 -4
  297. oci/fleet_software_update/fleet_software_update_client.py +46 -46
  298. oci/fleet_software_update/models/__init__.py +12 -0
  299. oci/fleet_software_update/models/create_fsu_cycle_details.py +11 -3
  300. oci/fleet_software_update/models/create_patch_fsu_cycle.py +1 -1
  301. oci/fleet_software_update/models/create_upgrade_fsu_cycle.py +147 -0
  302. oci/fleet_software_update/models/fsu_cycle.py +11 -3
  303. oci/fleet_software_update/models/fsu_cycle_summary.py +7 -3
  304. oci/fleet_software_update/models/patch_fsu_cycle.py +1 -1
  305. oci/fleet_software_update/models/update_fsu_cycle_details.py +11 -3
  306. oci/fleet_software_update/models/update_patch_fsu_cycle.py +1 -1
  307. oci/fleet_software_update/models/update_upgrade_fsu_cycle.py +118 -0
  308. oci/fleet_software_update/models/upgrade_db_collection_details.py +142 -0
  309. oci/fleet_software_update/models/upgrade_details.py +107 -0
  310. oci/fleet_software_update/models/upgrade_fsu_cycle.py +241 -0
  311. oci/fleet_software_update/models/upgrade_gi_collection_details.py +111 -0
  312. oci/functions/functions_invoke_client.py +1 -1
  313. oci/functions/functions_management_client.py +16 -16
  314. oci/fusion_apps/fusion_applications_client.py +41 -41
  315. oci/generative_ai/generative_ai_client.py +22 -22
  316. oci/generative_ai_agent/generative_ai_agent_client.py +38 -38
  317. oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +6 -6
  318. oci/generative_ai_inference/generative_ai_inference_client.py +6 -6
  319. oci/generic_artifacts_content/generic_artifacts_content_client.py +3 -3
  320. oci/globally_distributed_database/sharded_database_service_client.py +30 -30
  321. oci/golden_gate/golden_gate_client.py +89 -89
  322. oci/governance_rules_control_plane/governance_rule_client.py +15 -15
  323. oci/governance_rules_control_plane/work_request_client.py +5 -5
  324. oci/healthchecks/health_checks_client.py +17 -17
  325. oci/identity/identity_client.py +145 -145
  326. oci/identity_data_plane/dataplane_client.py +2 -2
  327. oci/identity_domains/identity_domains_client.py +311 -311
  328. oci/integration/integration_instance_client.py +19 -19
  329. oci/jms/java_management_service_client.py +79 -79
  330. oci/jms_java_downloads/java_download_client.py +25 -25
  331. oci/key_management/ekm_client.py +5 -5
  332. oci/key_management/kms_crypto_client.py +6 -6
  333. oci/key_management/kms_hsm_cluster_client.py +12 -12
  334. oci/key_management/kms_management_client.py +21 -21
  335. oci/key_management/kms_vault_client.py +14 -14
  336. oci/license_manager/license_manager_client.py +18 -18
  337. oci/limits/limits_client.py +4 -4
  338. oci/limits/quotas_client.py +7 -7
  339. oci/load_balancer/load_balancer_client.py +61 -61
  340. oci/load_balancer/models/backend.py +4 -4
  341. oci/load_balancer/models/backend_details.py +10 -4
  342. oci/load_balancer/models/backend_set.py +6 -4
  343. oci/load_balancer/models/backend_set_details.py +12 -4
  344. oci/load_balancer/models/create_backend_details.py +10 -4
  345. oci/load_balancer/models/create_backend_set_details.py +12 -4
  346. oci/load_balancer/models/create_listener_details.py +6 -4
  347. oci/load_balancer/models/create_load_balancer_details.py +39 -0
  348. oci/load_balancer/models/listener.py +6 -4
  349. oci/load_balancer/models/listener_details.py +6 -4
  350. oci/load_balancer/models/load_balancer.py +61 -2
  351. oci/load_balancer/models/reserved_ip.py +4 -0
  352. oci/load_balancer/models/update_backend_details.py +10 -4
  353. oci/load_balancer/models/update_backend_set_details.py +12 -4
  354. oci/load_balancer/models/update_listener_details.py +6 -4
  355. oci/load_balancer/models/update_load_balancer_details.py +59 -0
  356. oci/lockbox/lockbox_client.py +24 -24
  357. oci/log_analytics/log_analytics_client.py +200 -200
  358. oci/logging/logging_management_client.py +30 -30
  359. oci/loggingingestion/logging_client.py +1 -1
  360. oci/loggingsearch/log_search_client.py +1 -1
  361. oci/lustre_file_storage/lustre_file_storage_client.py +11 -11
  362. oci/management_agent/management_agent_client.py +28 -28
  363. oci/management_dashboard/dashx_apis_client.py +18 -18
  364. oci/marketplace/account_client.py +2 -2
  365. oci/marketplace/marketplace_client.py +30 -30
  366. oci/marketplace_private_offer/attachment_client.py +5 -5
  367. oci/marketplace_private_offer/offer_client.py +6 -6
  368. oci/marketplace_publisher/attachment_client.py +5 -5
  369. oci/marketplace_publisher/marketplace_publisher_client.py +71 -71
  370. oci/marketplace_publisher/offer_client.py +6 -6
  371. oci/media_services/media_services_client.py +60 -60
  372. oci/media_services/media_stream_client.py +2 -2
  373. oci/mngdmac/mac_device_client.py +3 -3
  374. oci/mngdmac/mac_order_client.py +11 -11
  375. oci/model_deployment/model_deployment_client.py +2 -2
  376. oci/monitoring/monitoring_client.py +18 -18
  377. oci/mysql/channels_client.py +7 -7
  378. oci/mysql/db_backups_client.py +8 -8
  379. oci/mysql/db_system_client.py +17 -17
  380. oci/mysql/models/__init__.py +2 -0
  381. oci/mysql/models/backup.py +29 -2
  382. oci/mysql/models/backup_summary.py +29 -2
  383. oci/mysql/models/copy_backup_details.py +29 -2
  384. oci/mysql/models/create_db_system_details.py +27 -0
  385. oci/mysql/models/db_system.py +27 -0
  386. oci/mysql/models/db_system_snapshot.py +27 -0
  387. oci/mysql/models/encrypt_data_details.py +117 -0
  388. oci/mysql/models/replica.py +27 -0
  389. oci/mysql/models/update_db_system_details.py +27 -0
  390. oci/mysql/mysqlaas_client.py +7 -7
  391. oci/mysql/replicas_client.py +5 -5
  392. oci/mysql/work_requests_client.py +4 -4
  393. oci/network_firewall/network_firewall_client.py +92 -92
  394. oci/network_load_balancer/network_load_balancer_client.py +35 -35
  395. oci/nosql/models/__init__.py +14 -0
  396. oci/nosql/models/configuration.py +109 -0
  397. oci/nosql/models/hosted_configuration.py +78 -0
  398. oci/nosql/models/kms_key.py +244 -0
  399. oci/nosql/models/multi_tenancy_configuration.py +49 -0
  400. oci/nosql/models/update_configuration_details.py +109 -0
  401. oci/nosql/models/update_hosted_configuration_details.py +78 -0
  402. oci/nosql/models/update_multi_tenancy_configuration_details.py +52 -0
  403. oci/nosql/models/work_request.py +7 -3
  404. oci/nosql/models/work_request_summary.py +7 -3
  405. oci/nosql/nosql_client.py +340 -25
  406. oci/nosql/nosql_client_composite_operations.py +81 -0
  407. oci/object_storage/object_storage_client.py +55 -55
  408. oci/oce/oce_instance_client.py +10 -10
  409. oci/oci_control_center/occ_metrics_client.py +3 -3
  410. oci/ocvp/cluster_client.py +5 -5
  411. oci/ocvp/esxi_host_client.py +8 -8
  412. oci/ocvp/sddc_client.py +14 -14
  413. oci/ocvp/work_request_client.py +4 -4
  414. oci/oda/management_client.py +59 -59
  415. oci/oda/oda_client.py +17 -17
  416. oci/oda/odapackage_client.py +7 -7
  417. oci/onesubscription/billing_schedule_client.py +1 -1
  418. oci/onesubscription/commitment_client.py +2 -2
  419. oci/onesubscription/computed_usage_client.py +3 -3
  420. oci/onesubscription/invoice_summary_client.py +2 -2
  421. oci/onesubscription/organization_subscription_client.py +1 -1
  422. oci/onesubscription/ratecard_client.py +1 -1
  423. oci/onesubscription/subscribed_service_client.py +2 -2
  424. oci/onesubscription/subscription_client.py +1 -1
  425. oci/ons/notification_control_plane_client.py +6 -6
  426. oci/ons/notification_data_plane_client.py +10 -10
  427. oci/opa/opa_instance_client.py +13 -13
  428. oci/opensearch/opensearch_cluster_backup_client.py +4 -4
  429. oci/opensearch/opensearch_cluster_client.py +17 -17
  430. oci/opensearch/opensearch_cluster_pipeline_client.py +5 -5
  431. oci/operator_access_control/access_requests_client.py +10 -10
  432. oci/operator_access_control/operator_actions_client.py +2 -2
  433. oci/operator_access_control/operator_control_assignment_client.py +8 -8
  434. oci/operator_access_control/operator_control_client.py +6 -6
  435. oci/opsi/operations_insights_client.py +181 -181
  436. oci/optimizer/optimizer_client.py +26 -26
  437. oci/os_management/event_client.py +8 -8
  438. oci/os_management/os_management_client.py +69 -69
  439. oci/os_management_hub/event_client.py +8 -8
  440. oci/os_management_hub/lifecycle_environment_client.py +13 -13
  441. oci/os_management_hub/managed_instance_client.py +33 -33
  442. oci/os_management_hub/managed_instance_group_client.py +26 -26
  443. oci/os_management_hub/management_station_client.py +10 -10
  444. oci/os_management_hub/onboarding_client.py +13 -13
  445. oci/os_management_hub/reporting_managed_instance_client.py +3 -3
  446. oci/os_management_hub/scheduled_job_client.py +7 -7
  447. oci/os_management_hub/software_source_client.py +33 -33
  448. oci/os_management_hub/work_request_client.py +5 -5
  449. oci/osp_gateway/address_rule_service_client.py +1 -1
  450. oci/osp_gateway/address_service_client.py +2 -2
  451. oci/osp_gateway/invoice_service_client.py +5 -5
  452. oci/osp_gateway/subscription_service_client.py +5 -5
  453. oci/osub_billing_schedule/billing_schedule_client.py +1 -1
  454. oci/osub_organization_subscription/organization_subscription_client.py +1 -1
  455. oci/osub_subscription/commitment_client.py +2 -2
  456. oci/osub_subscription/ratecard_client.py +1 -1
  457. oci/osub_subscription/subscription_client.py +1 -1
  458. oci/osub_usage/computed_usage_client.py +3 -3
  459. oci/psql/postgresql_client.py +34 -34
  460. oci/queue/queue_admin_client.py +11 -11
  461. oci/queue/queue_client.py +8 -8
  462. oci/recovery/database_recovery_client.py +26 -26
  463. oci/redis/oci_cache_user_client.py +7 -7
  464. oci/redis/redis_cluster_client.py +15 -15
  465. oci/redis/redis_identity_client.py +1 -1
  466. oci/resource_manager/resource_manager_client.py +52 -52
  467. oci/resource_scheduler/schedule_client.py +14 -14
  468. oci/resource_search/resource_search_client.py +3 -3
  469. oci/rover/rover_bundle_client.py +8 -8
  470. oci/rover/rover_cluster_client.py +8 -8
  471. oci/rover/rover_entitlement_client.py +6 -6
  472. oci/rover/rover_node_client.py +15 -15
  473. oci/rover/shape_client.py +1 -1
  474. oci/rover/work_requests_client.py +5 -5
  475. oci/sch/connector_plugins_client.py +2 -2
  476. oci/sch/service_connector_client.py +12 -12
  477. oci/secrets/secrets_client.py +3 -3
  478. oci/security_attribute/security_attribute_client.py +18 -18
  479. oci/service_catalog/service_catalog_client.py +26 -26
  480. oci/service_manager_proxy/service_manager_proxy_client.py +2 -2
  481. oci/service_mesh/service_mesh_client.py +96 -96
  482. oci/stack_monitoring/stack_monitoring_client.py +87 -87
  483. oci/streaming/stream_admin_client.py +18 -18
  484. oci/streaming/stream_client.py +8 -8
  485. oci/tenant_manager_control_plane/domain_client.py +5 -5
  486. oci/tenant_manager_control_plane/domain_governance_client.py +5 -5
  487. oci/tenant_manager_control_plane/governance_client.py +2 -2
  488. oci/tenant_manager_control_plane/link_client.py +3 -3
  489. oci/tenant_manager_control_plane/orders_client.py +2 -2
  490. oci/tenant_manager_control_plane/organization_client.py +10 -10
  491. oci/tenant_manager_control_plane/recipient_invitation_client.py +5 -5
  492. oci/tenant_manager_control_plane/sender_invitation_client.py +5 -5
  493. oci/tenant_manager_control_plane/subscription_client.py +11 -11
  494. oci/tenant_manager_control_plane/work_request_client.py +4 -4
  495. oci/threat_intelligence/threatintel_client.py +5 -5
  496. oci/usage/resources_client.py +2 -2
  497. oci/usage/rewards_client.py +6 -6
  498. oci/usage/usagelimits_client.py +1 -1
  499. oci/usage_api/usageapi_client.py +33 -33
  500. oci/vault/vaults_client.py +13 -13
  501. oci/vbs_inst/vbs_instance_client.py +10 -10
  502. oci/version.py +1 -1
  503. oci/visual_builder/vb_instance_client.py +14 -14
  504. oci/vn_monitoring/vn_monitoring_client.py +12 -12
  505. oci/vulnerability_scanning/vulnerability_scanning_client.py +58 -58
  506. oci/waa/waa_client.py +13 -13
  507. oci/waa/work_request_client.py +4 -4
  508. oci/waas/redirect_client.py +6 -6
  509. oci/waas/waas_client.py +66 -66
  510. oci/waf/waf_client.py +24 -24
  511. oci/wlms/weblogic_management_service_client.py +41 -41
  512. oci/wlms/weblogic_management_service_configuration_client.py +2 -2
  513. oci/work_requests/work_request_client.py +4 -4
  514. oci/zpr/zpr_client.py +15 -15
  515. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/METADATA +1 -1
  516. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/RECORD +520 -413
  517. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/LICENSE.txt +0 -0
  518. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/THIRD_PARTY_LICENSES.txt +0 -0
  519. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/WHEEL +0 -0
  520. {oci-2.154.2.dist-info → oci-2.155.0.dist-info}/top_level.txt +0 -0
@@ -153,7 +153,7 @@ class VirtualNetworkClient(object):
153
153
  :rtype: :class:`~oci.response.Response`
154
154
 
155
155
  :example:
156
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/add_drg_route_distribution_statements.py.html>`__ to see an example of how to use add_drg_route_distribution_statements API.
156
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/add_drg_route_distribution_statements.py.html>`__ to see an example of how to use add_drg_route_distribution_statements API.
157
157
  """
158
158
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
159
159
  required_arguments = ['drgRouteDistributionId']
@@ -253,7 +253,7 @@ class VirtualNetworkClient(object):
253
253
  :rtype: :class:`~oci.response.Response`
254
254
 
255
255
  :example:
256
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/add_drg_route_rules.py.html>`__ to see an example of how to use add_drg_route_rules API.
256
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/add_drg_route_rules.py.html>`__ to see an example of how to use add_drg_route_rules API.
257
257
  """
258
258
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
259
259
  required_arguments = ['drgRouteTableId']
@@ -370,7 +370,7 @@ class VirtualNetworkClient(object):
370
370
  :rtype: :class:`~oci.response.Response`
371
371
 
372
372
  :example:
373
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/add_ipv6_subnet_cidr.py.html>`__ to see an example of how to use add_ipv6_subnet_cidr API.
373
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/add_ipv6_subnet_cidr.py.html>`__ to see an example of how to use add_ipv6_subnet_cidr API.
374
374
  """
375
375
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
376
376
  required_arguments = ['subnetId']
@@ -490,7 +490,7 @@ class VirtualNetworkClient(object):
490
490
  :rtype: :class:`~oci.response.Response`
491
491
 
492
492
  :example:
493
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/add_ipv6_vcn_cidr.py.html>`__ to see an example of how to use add_ipv6_vcn_cidr API.
493
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/add_ipv6_vcn_cidr.py.html>`__ to see an example of how to use add_ipv6_vcn_cidr API.
494
494
  """
495
495
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
496
496
  required_arguments = ['vcnId']
@@ -594,7 +594,7 @@ class VirtualNetworkClient(object):
594
594
  :rtype: :class:`~oci.response.Response`
595
595
 
596
596
  :example:
597
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
597
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
598
598
  """
599
599
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
600
600
  required_arguments = ['networkSecurityGroupId']
@@ -700,7 +700,7 @@ class VirtualNetworkClient(object):
700
700
  :rtype: :class:`~oci.response.Response`
701
701
 
702
702
  :example:
703
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/add_public_ip_pool_capacity.py.html>`__ to see an example of how to use add_public_ip_pool_capacity API.
703
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/add_public_ip_pool_capacity.py.html>`__ to see an example of how to use add_public_ip_pool_capacity API.
704
704
  """
705
705
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
706
706
  required_arguments = ['publicIpPoolId']
@@ -825,7 +825,7 @@ class VirtualNetworkClient(object):
825
825
  :rtype: :class:`~oci.response.Response`
826
826
 
827
827
  :example:
828
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/add_vcn_cidr.py.html>`__ to see an example of how to use add_vcn_cidr API.
828
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/add_vcn_cidr.py.html>`__ to see an example of how to use add_vcn_cidr API.
829
829
  """
830
830
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
831
831
  required_arguments = ['vcnId']
@@ -930,7 +930,7 @@ class VirtualNetworkClient(object):
930
930
  :rtype: :class:`~oci.response.Response`
931
931
 
932
932
  :example:
933
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/advertise_byoip_range.py.html>`__ to see an example of how to use advertise_byoip_range API.
933
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/advertise_byoip_range.py.html>`__ to see an example of how to use advertise_byoip_range API.
934
934
  """
935
935
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
936
936
  required_arguments = ['byoipRangeId']
@@ -1040,7 +1040,7 @@ class VirtualNetworkClient(object):
1040
1040
  :rtype: :class:`~oci.response.Response`
1041
1041
 
1042
1042
  :example:
1043
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/attach_service_id.py.html>`__ to see an example of how to use attach_service_id API.
1043
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/attach_service_id.py.html>`__ to see an example of how to use attach_service_id API.
1044
1044
  """
1045
1045
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1046
1046
  required_arguments = ['serviceGatewayId']
@@ -1143,7 +1143,7 @@ class VirtualNetworkClient(object):
1143
1143
  :rtype: :class:`~oci.response.Response`
1144
1144
 
1145
1145
  :example:
1146
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
1146
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
1147
1147
  """
1148
1148
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1149
1149
  required_arguments = ['virtualCircuitId']
@@ -1239,7 +1239,7 @@ class VirtualNetworkClient(object):
1239
1239
  :rtype: :class:`~oci.response.Response`
1240
1240
 
1241
1241
  :example:
1242
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
1242
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
1243
1243
  """
1244
1244
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1245
1245
  required_arguments = ['virtualCircuitId']
@@ -1352,7 +1352,7 @@ class VirtualNetworkClient(object):
1352
1352
  :rtype: :class:`~oci.response.Response`
1353
1353
 
1354
1354
  :example:
1355
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_byoasn_compartment.py.html>`__ to see an example of how to use change_byoasn_compartment API.
1355
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_byoasn_compartment.py.html>`__ to see an example of how to use change_byoasn_compartment API.
1356
1356
  """
1357
1357
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1358
1358
  required_arguments = ['byoasnId']
@@ -1472,7 +1472,7 @@ class VirtualNetworkClient(object):
1472
1472
  :rtype: :class:`~oci.response.Response`
1473
1473
 
1474
1474
  :example:
1475
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_byoip_range_compartment.py.html>`__ to see an example of how to use change_byoip_range_compartment API.
1475
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_byoip_range_compartment.py.html>`__ to see an example of how to use change_byoip_range_compartment API.
1476
1476
  """
1477
1477
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1478
1478
  required_arguments = ['byoipRangeId']
@@ -1593,7 +1593,7 @@ class VirtualNetworkClient(object):
1593
1593
  :rtype: :class:`~oci.response.Response`
1594
1594
 
1595
1595
  :example:
1596
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_capture_filter_compartment.py.html>`__ to see an example of how to use change_capture_filter_compartment API.
1596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_capture_filter_compartment.py.html>`__ to see an example of how to use change_capture_filter_compartment API.
1597
1597
  """
1598
1598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1599
1599
  required_arguments = ['captureFilterId']
@@ -1711,7 +1711,7 @@ class VirtualNetworkClient(object):
1711
1711
  :rtype: :class:`~oci.response.Response`
1712
1712
 
1713
1713
  :example:
1714
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_cpe_compartment.py.html>`__ to see an example of how to use change_cpe_compartment API.
1714
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_cpe_compartment.py.html>`__ to see an example of how to use change_cpe_compartment API.
1715
1715
  """
1716
1716
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1717
1717
  required_arguments = ['cpeId']
@@ -1829,7 +1829,7 @@ class VirtualNetworkClient(object):
1829
1829
  :rtype: :class:`~oci.response.Response`
1830
1830
 
1831
1831
  :example:
1832
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_cross_connect_compartment.py.html>`__ to see an example of how to use change_cross_connect_compartment API.
1832
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_cross_connect_compartment.py.html>`__ to see an example of how to use change_cross_connect_compartment API.
1833
1833
  """
1834
1834
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1835
1835
  required_arguments = ['crossConnectId']
@@ -1947,7 +1947,7 @@ class VirtualNetworkClient(object):
1947
1947
  :rtype: :class:`~oci.response.Response`
1948
1948
 
1949
1949
  :example:
1950
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_cross_connect_group_compartment.py.html>`__ to see an example of how to use change_cross_connect_group_compartment API.
1950
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_cross_connect_group_compartment.py.html>`__ to see an example of how to use change_cross_connect_group_compartment API.
1951
1951
  """
1952
1952
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
1953
1953
  required_arguments = ['crossConnectGroupId']
@@ -2065,7 +2065,7 @@ class VirtualNetworkClient(object):
2065
2065
  :rtype: :class:`~oci.response.Response`
2066
2066
 
2067
2067
  :example:
2068
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_dhcp_options_compartment.py.html>`__ to see an example of how to use change_dhcp_options_compartment API.
2068
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_dhcp_options_compartment.py.html>`__ to see an example of how to use change_dhcp_options_compartment API.
2069
2069
  """
2070
2070
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2071
2071
  required_arguments = ['dhcpId']
@@ -2181,7 +2181,7 @@ class VirtualNetworkClient(object):
2181
2181
  :rtype: :class:`~oci.response.Response`
2182
2182
 
2183
2183
  :example:
2184
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_drg_compartment.py.html>`__ to see an example of how to use change_drg_compartment API.
2184
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_drg_compartment.py.html>`__ to see an example of how to use change_drg_compartment API.
2185
2185
  """
2186
2186
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2187
2187
  required_arguments = ['drgId']
@@ -2297,7 +2297,7 @@ class VirtualNetworkClient(object):
2297
2297
  :rtype: :class:`~oci.response.Response`
2298
2298
 
2299
2299
  :example:
2300
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_internet_gateway_compartment.py.html>`__ to see an example of how to use change_internet_gateway_compartment API.
2300
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_internet_gateway_compartment.py.html>`__ to see an example of how to use change_internet_gateway_compartment API.
2301
2301
  """
2302
2302
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2303
2303
  required_arguments = ['igId']
@@ -2413,7 +2413,7 @@ class VirtualNetworkClient(object):
2413
2413
  :rtype: :class:`~oci.response.Response`
2414
2414
 
2415
2415
  :example:
2416
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_ip_sec_connection_compartment.py.html>`__ to see an example of how to use change_ip_sec_connection_compartment API.
2416
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_ip_sec_connection_compartment.py.html>`__ to see an example of how to use change_ip_sec_connection_compartment API.
2417
2417
  """
2418
2418
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2419
2419
  required_arguments = ['ipscId']
@@ -2531,7 +2531,7 @@ class VirtualNetworkClient(object):
2531
2531
  :rtype: :class:`~oci.response.Response`
2532
2532
 
2533
2533
  :example:
2534
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_local_peering_gateway_compartment.py.html>`__ to see an example of how to use change_local_peering_gateway_compartment API.
2534
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_local_peering_gateway_compartment.py.html>`__ to see an example of how to use change_local_peering_gateway_compartment API.
2535
2535
  """
2536
2536
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2537
2537
  required_arguments = ['localPeeringGatewayId']
@@ -2647,7 +2647,7 @@ class VirtualNetworkClient(object):
2647
2647
  :rtype: :class:`~oci.response.Response`
2648
2648
 
2649
2649
  :example:
2650
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_nat_gateway_compartment.py.html>`__ to see an example of how to use change_nat_gateway_compartment API.
2650
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_nat_gateway_compartment.py.html>`__ to see an example of how to use change_nat_gateway_compartment API.
2651
2651
  """
2652
2652
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2653
2653
  required_arguments = ['natGatewayId']
@@ -2762,7 +2762,7 @@ class VirtualNetworkClient(object):
2762
2762
  :rtype: :class:`~oci.response.Response`
2763
2763
 
2764
2764
  :example:
2765
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_network_security_group_compartment.py.html>`__ to see an example of how to use change_network_security_group_compartment API.
2765
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_network_security_group_compartment.py.html>`__ to see an example of how to use change_network_security_group_compartment API.
2766
2766
  """
2767
2767
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2768
2768
  required_arguments = ['networkSecurityGroupId']
@@ -2881,7 +2881,7 @@ class VirtualNetworkClient(object):
2881
2881
  :rtype: :class:`~oci.response.Response`
2882
2882
 
2883
2883
  :example:
2884
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_public_ip_compartment.py.html>`__ to see an example of how to use change_public_ip_compartment API.
2884
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_public_ip_compartment.py.html>`__ to see an example of how to use change_public_ip_compartment API.
2885
2885
  """
2886
2886
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
2887
2887
  required_arguments = ['publicIpId']
@@ -2997,7 +2997,7 @@ class VirtualNetworkClient(object):
2997
2997
  :rtype: :class:`~oci.response.Response`
2998
2998
 
2999
2999
  :example:
3000
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_public_ip_pool_compartment.py.html>`__ to see an example of how to use change_public_ip_pool_compartment API.
3000
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_public_ip_pool_compartment.py.html>`__ to see an example of how to use change_public_ip_pool_compartment API.
3001
3001
  """
3002
3002
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3003
3003
  required_arguments = ['publicIpPoolId']
@@ -3113,7 +3113,7 @@ class VirtualNetworkClient(object):
3113
3113
  :rtype: :class:`~oci.response.Response`
3114
3114
 
3115
3115
  :example:
3116
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_remote_peering_connection_compartment.py.html>`__ to see an example of how to use change_remote_peering_connection_compartment API.
3116
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_remote_peering_connection_compartment.py.html>`__ to see an example of how to use change_remote_peering_connection_compartment API.
3117
3117
  """
3118
3118
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3119
3119
  required_arguments = ['remotePeeringConnectionId']
@@ -3231,7 +3231,7 @@ class VirtualNetworkClient(object):
3231
3231
  :rtype: :class:`~oci.response.Response`
3232
3232
 
3233
3233
  :example:
3234
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_route_table_compartment.py.html>`__ to see an example of how to use change_route_table_compartment API.
3234
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_route_table_compartment.py.html>`__ to see an example of how to use change_route_table_compartment API.
3235
3235
  """
3236
3236
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3237
3237
  required_arguments = ['rtId']
@@ -3347,7 +3347,7 @@ class VirtualNetworkClient(object):
3347
3347
  :rtype: :class:`~oci.response.Response`
3348
3348
 
3349
3349
  :example:
3350
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_security_list_compartment.py.html>`__ to see an example of how to use change_security_list_compartment API.
3350
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_security_list_compartment.py.html>`__ to see an example of how to use change_security_list_compartment API.
3351
3351
  """
3352
3352
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3353
3353
  required_arguments = ['securityListId']
@@ -3463,7 +3463,7 @@ class VirtualNetworkClient(object):
3463
3463
  :rtype: :class:`~oci.response.Response`
3464
3464
 
3465
3465
  :example:
3466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_service_gateway_compartment.py.html>`__ to see an example of how to use change_service_gateway_compartment API.
3466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_service_gateway_compartment.py.html>`__ to see an example of how to use change_service_gateway_compartment API.
3467
3467
  """
3468
3468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3469
3469
  required_arguments = ['serviceGatewayId']
@@ -3579,7 +3579,7 @@ class VirtualNetworkClient(object):
3579
3579
  :rtype: :class:`~oci.response.Response`
3580
3580
 
3581
3581
  :example:
3582
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_subnet_compartment.py.html>`__ to see an example of how to use change_subnet_compartment API.
3582
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_subnet_compartment.py.html>`__ to see an example of how to use change_subnet_compartment API.
3583
3583
  """
3584
3584
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3585
3585
  required_arguments = ['subnetId']
@@ -3695,7 +3695,7 @@ class VirtualNetworkClient(object):
3695
3695
  :rtype: :class:`~oci.response.Response`
3696
3696
 
3697
3697
  :example:
3698
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_vcn_compartment.py.html>`__ to see an example of how to use change_vcn_compartment API.
3698
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_vcn_compartment.py.html>`__ to see an example of how to use change_vcn_compartment API.
3699
3699
  """
3700
3700
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3701
3701
  required_arguments = ['vcnId']
@@ -3811,7 +3811,7 @@ class VirtualNetworkClient(object):
3811
3811
  :rtype: :class:`~oci.response.Response`
3812
3812
 
3813
3813
  :example:
3814
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_virtual_circuit_compartment.py.html>`__ to see an example of how to use change_virtual_circuit_compartment API.
3814
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_virtual_circuit_compartment.py.html>`__ to see an example of how to use change_virtual_circuit_compartment API.
3815
3815
  """
3816
3816
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3817
3817
  required_arguments = ['virtualCircuitId']
@@ -3934,7 +3934,7 @@ class VirtualNetworkClient(object):
3934
3934
  :rtype: :class:`~oci.response.Response`
3935
3935
 
3936
3936
  :example:
3937
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_vlan_compartment.py.html>`__ to see an example of how to use change_vlan_compartment API.
3937
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_vlan_compartment.py.html>`__ to see an example of how to use change_vlan_compartment API.
3938
3938
  """
3939
3939
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
3940
3940
  required_arguments = ['vlanId']
@@ -4057,7 +4057,7 @@ class VirtualNetworkClient(object):
4057
4057
  :rtype: :class:`~oci.response.Response`
4058
4058
 
4059
4059
  :example:
4060
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/change_vtap_compartment.py.html>`__ to see an example of how to use change_vtap_compartment API.
4060
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/change_vtap_compartment.py.html>`__ to see an example of how to use change_vtap_compartment API.
4061
4061
  """
4062
4062
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4063
4063
  required_arguments = ['vtapId']
@@ -4169,7 +4169,7 @@ class VirtualNetworkClient(object):
4169
4169
  :rtype: :class:`~oci.response.Response`
4170
4170
 
4171
4171
  :example:
4172
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/connect_local_peering_gateways.py.html>`__ to see an example of how to use connect_local_peering_gateways API.
4172
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/connect_local_peering_gateways.py.html>`__ to see an example of how to use connect_local_peering_gateways API.
4173
4173
  """
4174
4174
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4175
4175
  required_arguments = ['localPeeringGatewayId']
@@ -4269,7 +4269,7 @@ class VirtualNetworkClient(object):
4269
4269
  :rtype: :class:`~oci.response.Response`
4270
4270
 
4271
4271
  :example:
4272
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/connect_remote_peering_connections.py.html>`__ to see an example of how to use connect_remote_peering_connections API.
4272
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/connect_remote_peering_connections.py.html>`__ to see an example of how to use connect_remote_peering_connections API.
4273
4273
  """
4274
4274
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4275
4275
  required_arguments = ['remotePeeringConnectionId']
@@ -4368,7 +4368,7 @@ class VirtualNetworkClient(object):
4368
4368
  :rtype: :class:`~oci.response.Response`
4369
4369
 
4370
4370
  :example:
4371
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_byoasn.py.html>`__ to see an example of how to use create_byoasn API.
4371
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_byoasn.py.html>`__ to see an example of how to use create_byoasn API.
4372
4372
  """
4373
4373
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4374
4374
  required_arguments = []
@@ -4467,7 +4467,7 @@ class VirtualNetworkClient(object):
4467
4467
  :rtype: :class:`~oci.response.Response`
4468
4468
 
4469
4469
  :example:
4470
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_byoip_range.py.html>`__ to see an example of how to use create_byoip_range API.
4470
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_byoip_range.py.html>`__ to see an example of how to use create_byoip_range API.
4471
4471
  """
4472
4472
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4473
4473
  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.154.2/core/create_capture_filter.py.html>`__ to see an example of how to use create_capture_filter API.
4579
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_capture_filter.py.html>`__ to see an example of how to use create_capture_filter API.
4580
4580
  """
4581
4581
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4582
4582
  required_arguments = []
@@ -4689,7 +4689,7 @@ class VirtualNetworkClient(object):
4689
4689
  :rtype: :class:`~oci.response.Response`
4690
4690
 
4691
4691
  :example:
4692
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_cpe.py.html>`__ to see an example of how to use create_cpe API.
4692
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_cpe.py.html>`__ to see an example of how to use create_cpe API.
4693
4693
  """
4694
4694
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4695
4695
  required_arguments = []
@@ -4805,7 +4805,7 @@ class VirtualNetworkClient(object):
4805
4805
  :rtype: :class:`~oci.response.Response`
4806
4806
 
4807
4807
  :example:
4808
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_cross_connect.py.html>`__ to see an example of how to use create_cross_connect API.
4808
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_cross_connect.py.html>`__ to see an example of how to use create_cross_connect API.
4809
4809
  """
4810
4810
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4811
4811
  required_arguments = []
@@ -4917,7 +4917,7 @@ class VirtualNetworkClient(object):
4917
4917
  :rtype: :class:`~oci.response.Response`
4918
4918
 
4919
4919
  :example:
4920
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_cross_connect_group.py.html>`__ to see an example of how to use create_cross_connect_group API.
4920
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_cross_connect_group.py.html>`__ to see an example of how to use create_cross_connect_group API.
4921
4921
  """
4922
4922
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
4923
4923
  required_arguments = []
@@ -5025,7 +5025,7 @@ class VirtualNetworkClient(object):
5025
5025
  :rtype: :class:`~oci.response.Response`
5026
5026
 
5027
5027
  :example:
5028
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_dhcp_options.py.html>`__ to see an example of how to use create_dhcp_options API.
5028
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_dhcp_options.py.html>`__ to see an example of how to use create_dhcp_options API.
5029
5029
  """
5030
5030
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5031
5031
  required_arguments = []
@@ -5132,7 +5132,7 @@ class VirtualNetworkClient(object):
5132
5132
  :rtype: :class:`~oci.response.Response`
5133
5133
 
5134
5134
  :example:
5135
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_drg.py.html>`__ to see an example of how to use create_drg API.
5135
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_drg.py.html>`__ to see an example of how to use create_drg API.
5136
5136
  """
5137
5137
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5138
5138
  required_arguments = []
@@ -5237,7 +5237,7 @@ class VirtualNetworkClient(object):
5237
5237
  :rtype: :class:`~oci.response.Response`
5238
5238
 
5239
5239
  :example:
5240
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_drg_attachment.py.html>`__ to see an example of how to use create_drg_attachment API.
5240
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_drg_attachment.py.html>`__ to see an example of how to use create_drg_attachment API.
5241
5241
  """
5242
5242
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5243
5243
  required_arguments = []
@@ -5331,7 +5331,7 @@ class VirtualNetworkClient(object):
5331
5331
  :rtype: :class:`~oci.response.Response`
5332
5332
 
5333
5333
  :example:
5334
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_drg_route_distribution.py.html>`__ to see an example of how to use create_drg_route_distribution API.
5334
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_drg_route_distribution.py.html>`__ to see an example of how to use create_drg_route_distribution API.
5335
5335
  """
5336
5336
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5337
5337
  required_arguments = []
@@ -5423,7 +5423,7 @@ class VirtualNetworkClient(object):
5423
5423
  :rtype: :class:`~oci.response.Response`
5424
5424
 
5425
5425
  :example:
5426
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_drg_route_table.py.html>`__ to see an example of how to use create_drg_route_table API.
5426
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_drg_route_table.py.html>`__ to see an example of how to use create_drg_route_table API.
5427
5427
  """
5428
5428
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5429
5429
  required_arguments = []
@@ -5537,7 +5537,7 @@ class VirtualNetworkClient(object):
5537
5537
  :rtype: :class:`~oci.response.Response`
5538
5538
 
5539
5539
  :example:
5540
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_internet_gateway.py.html>`__ to see an example of how to use create_internet_gateway API.
5540
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_internet_gateway.py.html>`__ to see an example of how to use create_internet_gateway API.
5541
5541
  """
5542
5542
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5543
5543
  required_arguments = []
@@ -5660,7 +5660,7 @@ class VirtualNetworkClient(object):
5660
5660
  :rtype: :class:`~oci.response.Response`
5661
5661
 
5662
5662
  :example:
5663
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_ip_sec_connection.py.html>`__ to see an example of how to use create_ip_sec_connection API.
5663
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_ip_sec_connection.py.html>`__ to see an example of how to use create_ip_sec_connection API.
5664
5664
  """
5665
5665
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5666
5666
  required_arguments = []
@@ -5757,7 +5757,7 @@ class VirtualNetworkClient(object):
5757
5757
  :rtype: :class:`~oci.response.Response`
5758
5758
 
5759
5759
  :example:
5760
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_ipv6.py.html>`__ to see an example of how to use create_ipv6 API.
5760
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_ipv6.py.html>`__ to see an example of how to use create_ipv6 API.
5761
5761
  """
5762
5762
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5763
5763
  required_arguments = []
@@ -5850,7 +5850,7 @@ class VirtualNetworkClient(object):
5850
5850
  :rtype: :class:`~oci.response.Response`
5851
5851
 
5852
5852
  :example:
5853
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_local_peering_gateway.py.html>`__ to see an example of how to use create_local_peering_gateway API.
5853
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_local_peering_gateway.py.html>`__ to see an example of how to use create_local_peering_gateway API.
5854
5854
  """
5855
5855
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5856
5856
  required_arguments = []
@@ -5942,7 +5942,7 @@ class VirtualNetworkClient(object):
5942
5942
  :rtype: :class:`~oci.response.Response`
5943
5943
 
5944
5944
  :example:
5945
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_nat_gateway.py.html>`__ to see an example of how to use create_nat_gateway API.
5945
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_nat_gateway.py.html>`__ to see an example of how to use create_nat_gateway API.
5946
5946
  """
5947
5947
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
5948
5948
  required_arguments = []
@@ -6033,7 +6033,7 @@ class VirtualNetworkClient(object):
6033
6033
  :rtype: :class:`~oci.response.Response`
6034
6034
 
6035
6035
  :example:
6036
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_network_security_group.py.html>`__ to see an example of how to use create_network_security_group API.
6036
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_network_security_group.py.html>`__ to see an example of how to use create_network_security_group API.
6037
6037
  """
6038
6038
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6039
6039
  required_arguments = []
@@ -6128,7 +6128,7 @@ class VirtualNetworkClient(object):
6128
6128
  :rtype: :class:`~oci.response.Response`
6129
6129
 
6130
6130
  :example:
6131
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_private_ip.py.html>`__ to see an example of how to use create_private_ip API.
6131
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_private_ip.py.html>`__ to see an example of how to use create_private_ip API.
6132
6132
  """
6133
6133
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6134
6134
  required_arguments = []
@@ -6242,7 +6242,7 @@ class VirtualNetworkClient(object):
6242
6242
  :rtype: :class:`~oci.response.Response`
6243
6243
 
6244
6244
  :example:
6245
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_public_ip.py.html>`__ to see an example of how to use create_public_ip API.
6245
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_public_ip.py.html>`__ to see an example of how to use create_public_ip API.
6246
6246
  """
6247
6247
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6248
6248
  required_arguments = []
@@ -6337,7 +6337,7 @@ class VirtualNetworkClient(object):
6337
6337
  :rtype: :class:`~oci.response.Response`
6338
6338
 
6339
6339
  :example:
6340
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_public_ip_pool.py.html>`__ to see an example of how to use create_public_ip_pool API.
6340
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_public_ip_pool.py.html>`__ to see an example of how to use create_public_ip_pool API.
6341
6341
  """
6342
6342
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6343
6343
  required_arguments = []
@@ -6430,7 +6430,7 @@ class VirtualNetworkClient(object):
6430
6430
  :rtype: :class:`~oci.response.Response`
6431
6431
 
6432
6432
  :example:
6433
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_remote_peering_connection.py.html>`__ to see an example of how to use create_remote_peering_connection API.
6433
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_remote_peering_connection.py.html>`__ to see an example of how to use create_remote_peering_connection API.
6434
6434
  """
6435
6435
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6436
6436
  required_arguments = []
@@ -6543,7 +6543,7 @@ class VirtualNetworkClient(object):
6543
6543
  :rtype: :class:`~oci.response.Response`
6544
6544
 
6545
6545
  :example:
6546
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_route_table.py.html>`__ to see an example of how to use create_route_table API.
6546
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_route_table.py.html>`__ to see an example of how to use create_route_table API.
6547
6547
  """
6548
6548
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6549
6549
  required_arguments = []
@@ -6653,7 +6653,7 @@ class VirtualNetworkClient(object):
6653
6653
  :rtype: :class:`~oci.response.Response`
6654
6654
 
6655
6655
  :example:
6656
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_security_list.py.html>`__ to see an example of how to use create_security_list API.
6656
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_security_list.py.html>`__ to see an example of how to use create_security_list API.
6657
6657
  """
6658
6658
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6659
6659
  required_arguments = []
@@ -6759,7 +6759,7 @@ class VirtualNetworkClient(object):
6759
6759
  :rtype: :class:`~oci.response.Response`
6760
6760
 
6761
6761
  :example:
6762
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_service_gateway.py.html>`__ to see an example of how to use create_service_gateway API.
6762
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_service_gateway.py.html>`__ to see an example of how to use create_service_gateway API.
6763
6763
  """
6764
6764
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6765
6765
  required_arguments = []
@@ -6890,7 +6890,7 @@ class VirtualNetworkClient(object):
6890
6890
  :rtype: :class:`~oci.response.Response`
6891
6891
 
6892
6892
  :example:
6893
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_subnet.py.html>`__ to see an example of how to use create_subnet API.
6893
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_subnet.py.html>`__ to see an example of how to use create_subnet API.
6894
6894
  """
6895
6895
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
6896
6896
  required_arguments = []
@@ -7022,7 +7022,7 @@ class VirtualNetworkClient(object):
7022
7022
  :rtype: :class:`~oci.response.Response`
7023
7023
 
7024
7024
  :example:
7025
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_vcn.py.html>`__ to see an example of how to use create_vcn API.
7025
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_vcn.py.html>`__ to see an example of how to use create_vcn API.
7026
7026
  """
7027
7027
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7028
7028
  required_arguments = []
@@ -7139,7 +7139,7 @@ class VirtualNetworkClient(object):
7139
7139
  :rtype: :class:`~oci.response.Response`
7140
7140
 
7141
7141
  :example:
7142
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_virtual_circuit.py.html>`__ to see an example of how to use create_virtual_circuit API.
7142
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_virtual_circuit.py.html>`__ to see an example of how to use create_virtual_circuit API.
7143
7143
  """
7144
7144
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7145
7145
  required_arguments = []
@@ -7236,7 +7236,7 @@ class VirtualNetworkClient(object):
7236
7236
  :rtype: :class:`~oci.response.Response`
7237
7237
 
7238
7238
  :example:
7239
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_vlan.py.html>`__ to see an example of how to use create_vlan API.
7239
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_vlan.py.html>`__ to see an example of how to use create_vlan API.
7240
7240
  """
7241
7241
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7242
7242
  required_arguments = []
@@ -7345,7 +7345,7 @@ class VirtualNetworkClient(object):
7345
7345
  :rtype: :class:`~oci.response.Response`
7346
7346
 
7347
7347
  :example:
7348
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/create_vtap.py.html>`__ to see an example of how to use create_vtap API.
7348
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/create_vtap.py.html>`__ to see an example of how to use create_vtap API.
7349
7349
  """
7350
7350
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7351
7351
  required_arguments = []
@@ -7447,7 +7447,7 @@ class VirtualNetworkClient(object):
7447
7447
  :rtype: :class:`~oci.response.Response`
7448
7448
 
7449
7449
  :example:
7450
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_byoasn.py.html>`__ to see an example of how to use delete_byoasn API.
7450
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_byoasn.py.html>`__ to see an example of how to use delete_byoasn API.
7451
7451
  """
7452
7452
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7453
7453
  required_arguments = ['byoasnId']
@@ -7557,7 +7557,7 @@ class VirtualNetworkClient(object):
7557
7557
  :rtype: :class:`~oci.response.Response`
7558
7558
 
7559
7559
  :example:
7560
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_byoip_range.py.html>`__ to see an example of how to use delete_byoip_range API.
7560
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_byoip_range.py.html>`__ to see an example of how to use delete_byoip_range API.
7561
7561
  """
7562
7562
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7563
7563
  required_arguments = ['byoipRangeId']
@@ -7662,7 +7662,7 @@ class VirtualNetworkClient(object):
7662
7662
  :rtype: :class:`~oci.response.Response`
7663
7663
 
7664
7664
  :example:
7665
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_capture_filter.py.html>`__ to see an example of how to use delete_capture_filter API.
7665
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_capture_filter.py.html>`__ to see an example of how to use delete_capture_filter API.
7666
7666
  """
7667
7667
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7668
7668
  required_arguments = ['captureFilterId']
@@ -7764,7 +7764,7 @@ class VirtualNetworkClient(object):
7764
7764
  :rtype: :class:`~oci.response.Response`
7765
7765
 
7766
7766
  :example:
7767
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_cpe.py.html>`__ to see an example of how to use delete_cpe API.
7767
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_cpe.py.html>`__ to see an example of how to use delete_cpe API.
7768
7768
  """
7769
7769
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7770
7770
  required_arguments = ['cpeId']
@@ -7865,7 +7865,7 @@ class VirtualNetworkClient(object):
7865
7865
  :rtype: :class:`~oci.response.Response`
7866
7866
 
7867
7867
  :example:
7868
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_cross_connect.py.html>`__ to see an example of how to use delete_cross_connect API.
7868
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_cross_connect.py.html>`__ to see an example of how to use delete_cross_connect API.
7869
7869
  """
7870
7870
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7871
7871
  required_arguments = ['crossConnectId']
@@ -7967,7 +7967,7 @@ class VirtualNetworkClient(object):
7967
7967
  :rtype: :class:`~oci.response.Response`
7968
7968
 
7969
7969
  :example:
7970
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_cross_connect_group.py.html>`__ to see an example of how to use delete_cross_connect_group API.
7970
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_cross_connect_group.py.html>`__ to see an example of how to use delete_cross_connect_group API.
7971
7971
  """
7972
7972
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
7973
7973
  required_arguments = ['crossConnectGroupId']
@@ -8071,7 +8071,7 @@ class VirtualNetworkClient(object):
8071
8071
  :rtype: :class:`~oci.response.Response`
8072
8072
 
8073
8073
  :example:
8074
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_dhcp_options.py.html>`__ to see an example of how to use delete_dhcp_options API.
8074
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_dhcp_options.py.html>`__ to see an example of how to use delete_dhcp_options API.
8075
8075
  """
8076
8076
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8077
8077
  required_arguments = ['dhcpId']
@@ -8172,7 +8172,7 @@ class VirtualNetworkClient(object):
8172
8172
  :rtype: :class:`~oci.response.Response`
8173
8173
 
8174
8174
  :example:
8175
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_drg.py.html>`__ to see an example of how to use delete_drg API.
8175
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_drg.py.html>`__ to see an example of how to use delete_drg API.
8176
8176
  """
8177
8177
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8178
8178
  required_arguments = ['drgId']
@@ -8272,7 +8272,7 @@ class VirtualNetworkClient(object):
8272
8272
  :rtype: :class:`~oci.response.Response`
8273
8273
 
8274
8274
  :example:
8275
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_drg_attachment.py.html>`__ to see an example of how to use delete_drg_attachment API.
8275
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_drg_attachment.py.html>`__ to see an example of how to use delete_drg_attachment API.
8276
8276
  """
8277
8277
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8278
8278
  required_arguments = ['drgAttachmentId']
@@ -8372,7 +8372,7 @@ class VirtualNetworkClient(object):
8372
8372
  :rtype: :class:`~oci.response.Response`
8373
8373
 
8374
8374
  :example:
8375
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_drg_route_distribution.py.html>`__ to see an example of how to use delete_drg_route_distribution API.
8375
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_drg_route_distribution.py.html>`__ to see an example of how to use delete_drg_route_distribution API.
8376
8376
  """
8377
8377
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8378
8378
  required_arguments = ['drgRouteDistributionId']
@@ -8470,7 +8470,7 @@ class VirtualNetworkClient(object):
8470
8470
  :rtype: :class:`~oci.response.Response`
8471
8471
 
8472
8472
  :example:
8473
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_drg_route_table.py.html>`__ to see an example of how to use delete_drg_route_table API.
8473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_drg_route_table.py.html>`__ to see an example of how to use delete_drg_route_table API.
8474
8474
  """
8475
8475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8476
8476
  required_arguments = ['drgRouteTableId']
@@ -8572,7 +8572,7 @@ class VirtualNetworkClient(object):
8572
8572
  :rtype: :class:`~oci.response.Response`
8573
8573
 
8574
8574
  :example:
8575
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_internet_gateway.py.html>`__ to see an example of how to use delete_internet_gateway API.
8575
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_internet_gateway.py.html>`__ to see an example of how to use delete_internet_gateway API.
8576
8576
  """
8577
8577
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8578
8578
  required_arguments = ['igId']
@@ -8677,7 +8677,7 @@ class VirtualNetworkClient(object):
8677
8677
  :rtype: :class:`~oci.response.Response`
8678
8678
 
8679
8679
  :example:
8680
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_ip_sec_connection.py.html>`__ to see an example of how to use delete_ip_sec_connection API.
8680
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_ip_sec_connection.py.html>`__ to see an example of how to use delete_ip_sec_connection API.
8681
8681
  """
8682
8682
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8683
8683
  required_arguments = ['ipscId']
@@ -8784,7 +8784,7 @@ class VirtualNetworkClient(object):
8784
8784
  :rtype: :class:`~oci.response.Response`
8785
8785
 
8786
8786
  :example:
8787
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_ipv6.py.html>`__ to see an example of how to use delete_ipv6 API.
8787
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_ipv6.py.html>`__ to see an example of how to use delete_ipv6 API.
8788
8788
  """
8789
8789
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8790
8790
  required_arguments = ['ipv6Id']
@@ -8887,7 +8887,7 @@ class VirtualNetworkClient(object):
8887
8887
  :rtype: :class:`~oci.response.Response`
8888
8888
 
8889
8889
  :example:
8890
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_local_peering_gateway.py.html>`__ to see an example of how to use delete_local_peering_gateway API.
8890
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_local_peering_gateway.py.html>`__ to see an example of how to use delete_local_peering_gateway API.
8891
8891
  """
8892
8892
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8893
8893
  required_arguments = ['localPeeringGatewayId']
@@ -8989,7 +8989,7 @@ class VirtualNetworkClient(object):
8989
8989
  :rtype: :class:`~oci.response.Response`
8990
8990
 
8991
8991
  :example:
8992
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_nat_gateway.py.html>`__ to see an example of how to use delete_nat_gateway API.
8992
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_nat_gateway.py.html>`__ to see an example of how to use delete_nat_gateway API.
8993
8993
  """
8994
8994
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
8995
8995
  required_arguments = ['natGatewayId']
@@ -9096,7 +9096,7 @@ class VirtualNetworkClient(object):
9096
9096
  :rtype: :class:`~oci.response.Response`
9097
9097
 
9098
9098
  :example:
9099
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_network_security_group.py.html>`__ to see an example of how to use delete_network_security_group API.
9099
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_network_security_group.py.html>`__ to see an example of how to use delete_network_security_group API.
9100
9100
  """
9101
9101
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9102
9102
  required_arguments = ['networkSecurityGroupId']
@@ -9207,7 +9207,7 @@ class VirtualNetworkClient(object):
9207
9207
  :rtype: :class:`~oci.response.Response`
9208
9208
 
9209
9209
  :example:
9210
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_private_ip.py.html>`__ to see an example of how to use delete_private_ip API.
9210
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_private_ip.py.html>`__ to see an example of how to use delete_private_ip API.
9211
9211
  """
9212
9212
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9213
9213
  required_arguments = ['privateIpId']
@@ -9321,7 +9321,7 @@ class VirtualNetworkClient(object):
9321
9321
  :rtype: :class:`~oci.response.Response`
9322
9322
 
9323
9323
  :example:
9324
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_public_ip.py.html>`__ to see an example of how to use delete_public_ip API.
9324
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_public_ip.py.html>`__ to see an example of how to use delete_public_ip API.
9325
9325
  """
9326
9326
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9327
9327
  required_arguments = ['publicIpId']
@@ -9427,7 +9427,7 @@ class VirtualNetworkClient(object):
9427
9427
  :rtype: :class:`~oci.response.Response`
9428
9428
 
9429
9429
  :example:
9430
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_public_ip_pool.py.html>`__ to see an example of how to use delete_public_ip_pool API.
9430
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_public_ip_pool.py.html>`__ to see an example of how to use delete_public_ip_pool API.
9431
9431
  """
9432
9432
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9433
9433
  required_arguments = ['publicIpPoolId']
@@ -9530,7 +9530,7 @@ class VirtualNetworkClient(object):
9530
9530
  :rtype: :class:`~oci.response.Response`
9531
9531
 
9532
9532
  :example:
9533
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_remote_peering_connection.py.html>`__ to see an example of how to use delete_remote_peering_connection API.
9533
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_remote_peering_connection.py.html>`__ to see an example of how to use delete_remote_peering_connection API.
9534
9534
  """
9535
9535
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9536
9536
  required_arguments = ['remotePeeringConnectionId']
@@ -9634,7 +9634,7 @@ class VirtualNetworkClient(object):
9634
9634
  :rtype: :class:`~oci.response.Response`
9635
9635
 
9636
9636
  :example:
9637
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_route_table.py.html>`__ to see an example of how to use delete_route_table API.
9637
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_route_table.py.html>`__ to see an example of how to use delete_route_table API.
9638
9638
  """
9639
9639
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9640
9640
  required_arguments = ['rtId']
@@ -9736,7 +9736,7 @@ class VirtualNetworkClient(object):
9736
9736
  :rtype: :class:`~oci.response.Response`
9737
9737
 
9738
9738
  :example:
9739
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_security_list.py.html>`__ to see an example of how to use delete_security_list API.
9739
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_security_list.py.html>`__ to see an example of how to use delete_security_list API.
9740
9740
  """
9741
9741
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9742
9742
  required_arguments = ['securityListId']
@@ -9835,7 +9835,7 @@ class VirtualNetworkClient(object):
9835
9835
  :rtype: :class:`~oci.response.Response`
9836
9836
 
9837
9837
  :example:
9838
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_service_gateway.py.html>`__ to see an example of how to use delete_service_gateway API.
9838
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_service_gateway.py.html>`__ to see an example of how to use delete_service_gateway API.
9839
9839
  """
9840
9840
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9841
9841
  required_arguments = ['serviceGatewayId']
@@ -9935,7 +9935,7 @@ class VirtualNetworkClient(object):
9935
9935
  :rtype: :class:`~oci.response.Response`
9936
9936
 
9937
9937
  :example:
9938
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_subnet.py.html>`__ to see an example of how to use delete_subnet API.
9938
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_subnet.py.html>`__ to see an example of how to use delete_subnet API.
9939
9939
  """
9940
9940
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
9941
9941
  required_arguments = ['subnetId']
@@ -10038,7 +10038,7 @@ class VirtualNetworkClient(object):
10038
10038
  :rtype: :class:`~oci.response.Response`
10039
10039
 
10040
10040
  :example:
10041
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_vcn.py.html>`__ to see an example of how to use delete_vcn API.
10041
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_vcn.py.html>`__ to see an example of how to use delete_vcn API.
10042
10042
  """
10043
10043
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10044
10044
  required_arguments = ['vcnId']
@@ -10140,7 +10140,7 @@ class VirtualNetworkClient(object):
10140
10140
  :rtype: :class:`~oci.response.Response`
10141
10141
 
10142
10142
  :example:
10143
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_virtual_circuit.py.html>`__ to see an example of how to use delete_virtual_circuit API.
10143
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_virtual_circuit.py.html>`__ to see an example of how to use delete_virtual_circuit API.
10144
10144
  """
10145
10145
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10146
10146
  required_arguments = ['virtualCircuitId']
@@ -10244,7 +10244,7 @@ class VirtualNetworkClient(object):
10244
10244
  :rtype: :class:`~oci.response.Response`
10245
10245
 
10246
10246
  :example:
10247
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_vlan.py.html>`__ to see an example of how to use delete_vlan API.
10247
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_vlan.py.html>`__ to see an example of how to use delete_vlan API.
10248
10248
  """
10249
10249
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10250
10250
  required_arguments = ['vlanId']
@@ -10349,7 +10349,7 @@ class VirtualNetworkClient(object):
10349
10349
  :rtype: :class:`~oci.response.Response`
10350
10350
 
10351
10351
  :example:
10352
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/delete_vtap.py.html>`__ to see an example of how to use delete_vtap API.
10352
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/delete_vtap.py.html>`__ to see an example of how to use delete_vtap API.
10353
10353
  """
10354
10354
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10355
10355
  required_arguments = ['vtapId']
@@ -10463,7 +10463,7 @@ class VirtualNetworkClient(object):
10463
10463
  :rtype: :class:`~oci.response.Response`
10464
10464
 
10465
10465
  :example:
10466
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/detach_service_id.py.html>`__ to see an example of how to use detach_service_id API.
10466
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/detach_service_id.py.html>`__ to see an example of how to use detach_service_id API.
10467
10467
  """
10468
10468
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10469
10469
  required_arguments = ['serviceGatewayId']
@@ -10588,7 +10588,7 @@ class VirtualNetworkClient(object):
10588
10588
  :rtype: :class:`~oci.response.Response`
10589
10589
 
10590
10590
  :example:
10591
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_all_drg_attachments.py.html>`__ to see an example of how to use get_all_drg_attachments API.
10591
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_all_drg_attachments.py.html>`__ to see an example of how to use get_all_drg_attachments API.
10592
10592
  """
10593
10593
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10594
10594
  required_arguments = ['drgId']
@@ -10703,7 +10703,7 @@ class VirtualNetworkClient(object):
10703
10703
  :rtype: :class:`~oci.response.Response`
10704
10704
 
10705
10705
  :example:
10706
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
10706
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
10707
10707
  """
10708
10708
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10709
10709
  required_arguments = []
@@ -10794,7 +10794,7 @@ class VirtualNetworkClient(object):
10794
10794
  :rtype: :class:`~oci.response.Response`
10795
10795
 
10796
10796
  :example:
10797
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_byoasn.py.html>`__ to see an example of how to use get_byoasn API.
10797
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_byoasn.py.html>`__ to see an example of how to use get_byoasn API.
10798
10798
  """
10799
10799
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10800
10800
  required_arguments = ['byoasnId']
@@ -10897,7 +10897,7 @@ class VirtualNetworkClient(object):
10897
10897
  :rtype: :class:`~oci.response.Response`
10898
10898
 
10899
10899
  :example:
10900
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_byoip_range.py.html>`__ to see an example of how to use get_byoip_range API.
10900
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_byoip_range.py.html>`__ to see an example of how to use get_byoip_range API.
10901
10901
  """
10902
10902
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
10903
10903
  required_arguments = ['byoipRangeId']
@@ -10996,7 +10996,7 @@ class VirtualNetworkClient(object):
10996
10996
  :rtype: :class:`~oci.response.Response`
10997
10997
 
10998
10998
  :example:
10999
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_capture_filter.py.html>`__ to see an example of how to use get_capture_filter API.
10999
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_capture_filter.py.html>`__ to see an example of how to use get_capture_filter API.
11000
11000
  """
11001
11001
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11002
11002
  required_arguments = ['captureFilterId']
@@ -11091,7 +11091,7 @@ class VirtualNetworkClient(object):
11091
11091
  :rtype: :class:`~oci.response.Response`
11092
11092
 
11093
11093
  :example:
11094
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_cpe.py.html>`__ to see an example of how to use get_cpe API.
11094
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_cpe.py.html>`__ to see an example of how to use get_cpe API.
11095
11095
  """
11096
11096
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11097
11097
  required_arguments = ['cpeId']
@@ -11202,7 +11202,7 @@ class VirtualNetworkClient(object):
11202
11202
  :rtype: :class:`~oci.response.Response`
11203
11203
 
11204
11204
  :example:
11205
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_cpe_device_config_content.py.html>`__ to see an example of how to use get_cpe_device_config_content API.
11205
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_cpe_device_config_content.py.html>`__ to see an example of how to use get_cpe_device_config_content API.
11206
11206
  """
11207
11207
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11208
11208
  required_arguments = ['cpeId']
@@ -11311,7 +11311,7 @@ class VirtualNetworkClient(object):
11311
11311
  :rtype: :class:`~oci.response.Response`
11312
11312
 
11313
11313
  :example:
11314
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_cpe_device_shape.py.html>`__ to see an example of how to use get_cpe_device_shape API.
11314
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_cpe_device_shape.py.html>`__ to see an example of how to use get_cpe_device_shape API.
11315
11315
  """
11316
11316
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11317
11317
  required_arguments = ['cpeDeviceShapeId']
@@ -11408,7 +11408,7 @@ class VirtualNetworkClient(object):
11408
11408
  :rtype: :class:`~oci.response.Response`
11409
11409
 
11410
11410
  :example:
11411
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_cross_connect.py.html>`__ to see an example of how to use get_cross_connect API.
11411
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_cross_connect.py.html>`__ to see an example of how to use get_cross_connect API.
11412
11412
  """
11413
11413
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11414
11414
  required_arguments = ['crossConnectId']
@@ -11498,7 +11498,7 @@ class VirtualNetworkClient(object):
11498
11498
  :rtype: :class:`~oci.response.Response`
11499
11499
 
11500
11500
  :example:
11501
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_cross_connect_group.py.html>`__ to see an example of how to use get_cross_connect_group API.
11501
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_cross_connect_group.py.html>`__ to see an example of how to use get_cross_connect_group API.
11502
11502
  """
11503
11503
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11504
11504
  required_arguments = ['crossConnectGroupId']
@@ -11588,7 +11588,7 @@ class VirtualNetworkClient(object):
11588
11588
  :rtype: :class:`~oci.response.Response`
11589
11589
 
11590
11590
  :example:
11591
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
11591
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
11592
11592
  """
11593
11593
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11594
11594
  required_arguments = ['crossConnectId']
@@ -11678,7 +11678,7 @@ class VirtualNetworkClient(object):
11678
11678
  :rtype: :class:`~oci.response.Response`
11679
11679
 
11680
11680
  :example:
11681
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_cross_connect_status.py.html>`__ to see an example of how to use get_cross_connect_status API.
11681
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_cross_connect_status.py.html>`__ to see an example of how to use get_cross_connect_status API.
11682
11682
  """
11683
11683
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11684
11684
  required_arguments = ['crossConnectId']
@@ -11768,7 +11768,7 @@ class VirtualNetworkClient(object):
11768
11768
  :rtype: :class:`~oci.response.Response`
11769
11769
 
11770
11770
  :example:
11771
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_dhcp_options.py.html>`__ to see an example of how to use get_dhcp_options API.
11771
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_dhcp_options.py.html>`__ to see an example of how to use get_dhcp_options API.
11772
11772
  """
11773
11773
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11774
11774
  required_arguments = ['dhcpId']
@@ -11856,7 +11856,7 @@ class VirtualNetworkClient(object):
11856
11856
  :rtype: :class:`~oci.response.Response`
11857
11857
 
11858
11858
  :example:
11859
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_drg.py.html>`__ to see an example of how to use get_drg API.
11859
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_drg.py.html>`__ to see an example of how to use get_drg API.
11860
11860
  """
11861
11861
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11862
11862
  required_arguments = ['drgId']
@@ -11944,7 +11944,7 @@ class VirtualNetworkClient(object):
11944
11944
  :rtype: :class:`~oci.response.Response`
11945
11945
 
11946
11946
  :example:
11947
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_drg_attachment.py.html>`__ to see an example of how to use get_drg_attachment API.
11947
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_drg_attachment.py.html>`__ to see an example of how to use get_drg_attachment API.
11948
11948
  """
11949
11949
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
11950
11950
  required_arguments = ['drgAttachmentId']
@@ -12039,7 +12039,7 @@ class VirtualNetworkClient(object):
12039
12039
  :rtype: :class:`~oci.response.Response`
12040
12040
 
12041
12041
  :example:
12042
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_drg_redundancy_status.py.html>`__ to see an example of how to use get_drg_redundancy_status API.
12042
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_drg_redundancy_status.py.html>`__ to see an example of how to use get_drg_redundancy_status API.
12043
12043
  """
12044
12044
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12045
12045
  required_arguments = ['drgId']
@@ -12136,7 +12136,7 @@ class VirtualNetworkClient(object):
12136
12136
  :rtype: :class:`~oci.response.Response`
12137
12137
 
12138
12138
  :example:
12139
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_drg_route_distribution.py.html>`__ to see an example of how to use get_drg_route_distribution API.
12139
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_drg_route_distribution.py.html>`__ to see an example of how to use get_drg_route_distribution API.
12140
12140
  """
12141
12141
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12142
12142
  required_arguments = ['drgRouteDistributionId']
@@ -12224,7 +12224,7 @@ class VirtualNetworkClient(object):
12224
12224
  :rtype: :class:`~oci.response.Response`
12225
12225
 
12226
12226
  :example:
12227
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_drg_route_table.py.html>`__ to see an example of how to use get_drg_route_table API.
12227
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_drg_route_table.py.html>`__ to see an example of how to use get_drg_route_table API.
12228
12228
  """
12229
12229
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12230
12230
  required_arguments = ['drgRouteTableId']
@@ -12315,7 +12315,7 @@ class VirtualNetworkClient(object):
12315
12315
  :rtype: :class:`~oci.response.Response`
12316
12316
 
12317
12317
  :example:
12318
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_fast_connect_provider_service.py.html>`__ to see an example of how to use get_fast_connect_provider_service API.
12318
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_fast_connect_provider_service.py.html>`__ to see an example of how to use get_fast_connect_provider_service API.
12319
12319
  """
12320
12320
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12321
12321
  required_arguments = ['providerServiceId']
@@ -12412,7 +12412,7 @@ class VirtualNetworkClient(object):
12412
12412
  :rtype: :class:`~oci.response.Response`
12413
12413
 
12414
12414
  :example:
12415
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
12415
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
12416
12416
  """
12417
12417
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12418
12418
  required_arguments = ['providerServiceId', 'providerServiceKeyName']
@@ -12503,7 +12503,7 @@ class VirtualNetworkClient(object):
12503
12503
  :rtype: :class:`~oci.response.Response`
12504
12504
 
12505
12505
  :example:
12506
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_internet_gateway.py.html>`__ to see an example of how to use get_internet_gateway API.
12506
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_internet_gateway.py.html>`__ to see an example of how to use get_internet_gateway API.
12507
12507
  """
12508
12508
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12509
12509
  required_arguments = ['igId']
@@ -12593,7 +12593,7 @@ class VirtualNetworkClient(object):
12593
12593
  :rtype: :class:`~oci.response.Response`
12594
12594
 
12595
12595
  :example:
12596
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_ip_sec_connection.py.html>`__ to see an example of how to use get_ip_sec_connection API.
12596
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_ip_sec_connection.py.html>`__ to see an example of how to use get_ip_sec_connection API.
12597
12597
  """
12598
12598
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12599
12599
  required_arguments = ['ipscId']
@@ -12686,7 +12686,7 @@ class VirtualNetworkClient(object):
12686
12686
  :rtype: :class:`~oci.response.Response`
12687
12687
 
12688
12688
  :example:
12689
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
12689
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
12690
12690
  """
12691
12691
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12692
12692
  required_arguments = ['ipscId']
@@ -12777,7 +12777,7 @@ class VirtualNetworkClient(object):
12777
12777
  :rtype: :class:`~oci.response.Response`
12778
12778
 
12779
12779
  :example:
12780
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
12780
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
12781
12781
  """
12782
12782
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12783
12783
  required_arguments = ['ipscId']
@@ -12874,7 +12874,7 @@ class VirtualNetworkClient(object):
12874
12874
  :rtype: :class:`~oci.response.Response`
12875
12875
 
12876
12876
  :example:
12877
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel API.
12877
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use get_ip_sec_connection_tunnel API.
12878
12878
  """
12879
12879
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12880
12880
  required_arguments = ['ipscId', 'tunnelId']
@@ -12970,7 +12970,7 @@ class VirtualNetworkClient(object):
12970
12970
  :rtype: :class:`~oci.response.Response`
12971
12971
 
12972
12972
  :example:
12973
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
12973
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
12974
12974
  """
12975
12975
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
12976
12976
  required_arguments = ['ipscId', 'tunnelId']
@@ -13067,7 +13067,7 @@ class VirtualNetworkClient(object):
13067
13067
  :rtype: :class:`~oci.response.Response`
13068
13068
 
13069
13069
  :example:
13070
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
13070
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
13071
13071
  """
13072
13072
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13073
13073
  required_arguments = ['ipscId', 'tunnelId']
@@ -13180,7 +13180,7 @@ class VirtualNetworkClient(object):
13180
13180
  :rtype: :class:`~oci.response.Response`
13181
13181
 
13182
13182
  :example:
13183
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
13183
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
13184
13184
  """
13185
13185
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13186
13186
  required_arguments = ['ipscId']
@@ -13287,7 +13287,7 @@ class VirtualNetworkClient(object):
13287
13287
  :rtype: :class:`~oci.response.Response`
13288
13288
 
13289
13289
  :example:
13290
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_ipv6.py.html>`__ to see an example of how to use get_ipv6 API.
13290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_ipv6.py.html>`__ to see an example of how to use get_ipv6 API.
13291
13291
  """
13292
13292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13293
13293
  required_arguments = ['ipv6Id']
@@ -13382,7 +13382,7 @@ class VirtualNetworkClient(object):
13382
13382
  :rtype: :class:`~oci.response.Response`
13383
13383
 
13384
13384
  :example:
13385
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_local_peering_gateway.py.html>`__ to see an example of how to use get_local_peering_gateway API.
13385
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_local_peering_gateway.py.html>`__ to see an example of how to use get_local_peering_gateway API.
13386
13386
  """
13387
13387
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13388
13388
  required_arguments = ['localPeeringGatewayId']
@@ -13470,7 +13470,7 @@ class VirtualNetworkClient(object):
13470
13470
  :rtype: :class:`~oci.response.Response`
13471
13471
 
13472
13472
  :example:
13473
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_nat_gateway.py.html>`__ to see an example of how to use get_nat_gateway API.
13473
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_nat_gateway.py.html>`__ to see an example of how to use get_nat_gateway API.
13474
13474
  """
13475
13475
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13476
13476
  required_arguments = ['natGatewayId']
@@ -13564,7 +13564,7 @@ class VirtualNetworkClient(object):
13564
13564
  :rtype: :class:`~oci.response.Response`
13565
13565
 
13566
13566
  :example:
13567
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_network_security_group.py.html>`__ to see an example of how to use get_network_security_group API.
13567
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_network_security_group.py.html>`__ to see an example of how to use get_network_security_group API.
13568
13568
  """
13569
13569
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13570
13570
  required_arguments = ['networkSecurityGroupId']
@@ -13684,7 +13684,7 @@ class VirtualNetworkClient(object):
13684
13684
  :rtype: :class:`~oci.response.Response`
13685
13685
 
13686
13686
  :example:
13687
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_networking_topology.py.html>`__ to see an example of how to use get_networking_topology API.
13687
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_networking_topology.py.html>`__ to see an example of how to use get_networking_topology API.
13688
13688
  """
13689
13689
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13690
13690
  required_arguments = ['compartmentId']
@@ -13795,7 +13795,7 @@ class VirtualNetworkClient(object):
13795
13795
  :rtype: :class:`~oci.response.Response`
13796
13796
 
13797
13797
  :example:
13798
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_private_ip.py.html>`__ to see an example of how to use get_private_ip API.
13798
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_private_ip.py.html>`__ to see an example of how to use get_private_ip API.
13799
13799
  """
13800
13800
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13801
13801
  required_arguments = ['privateIpId']
@@ -13897,7 +13897,7 @@ class VirtualNetworkClient(object):
13897
13897
  :rtype: :class:`~oci.response.Response`
13898
13898
 
13899
13899
  :example:
13900
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_public_ip.py.html>`__ to see an example of how to use get_public_ip API.
13900
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_public_ip.py.html>`__ to see an example of how to use get_public_ip API.
13901
13901
  """
13902
13902
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13903
13903
  required_arguments = ['publicIpId']
@@ -13989,7 +13989,7 @@ class VirtualNetworkClient(object):
13989
13989
  :rtype: :class:`~oci.response.Response`
13990
13990
 
13991
13991
  :example:
13992
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
13992
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
13993
13993
  """
13994
13994
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
13995
13995
  required_arguments = []
@@ -14079,7 +14079,7 @@ class VirtualNetworkClient(object):
14079
14079
  :rtype: :class:`~oci.response.Response`
14080
14080
 
14081
14081
  :example:
14082
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
14082
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
14083
14083
  """
14084
14084
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14085
14085
  required_arguments = []
@@ -14163,7 +14163,7 @@ class VirtualNetworkClient(object):
14163
14163
  :rtype: :class:`~oci.response.Response`
14164
14164
 
14165
14165
  :example:
14166
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_public_ip_pool.py.html>`__ to see an example of how to use get_public_ip_pool API.
14166
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_public_ip_pool.py.html>`__ to see an example of how to use get_public_ip_pool API.
14167
14167
  """
14168
14168
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14169
14169
  required_arguments = ['publicIpPoolId']
@@ -14258,7 +14258,7 @@ class VirtualNetworkClient(object):
14258
14258
  :rtype: :class:`~oci.response.Response`
14259
14259
 
14260
14260
  :example:
14261
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_remote_peering_connection.py.html>`__ to see an example of how to use get_remote_peering_connection API.
14261
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_remote_peering_connection.py.html>`__ to see an example of how to use get_remote_peering_connection API.
14262
14262
  """
14263
14263
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14264
14264
  required_arguments = ['remotePeeringConnectionId']
@@ -14350,7 +14350,7 @@ class VirtualNetworkClient(object):
14350
14350
  :rtype: :class:`~oci.response.Response`
14351
14351
 
14352
14352
  :example:
14353
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_resource_ip_inventory.py.html>`__ to see an example of how to use get_resource_ip_inventory API.
14353
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_resource_ip_inventory.py.html>`__ to see an example of how to use get_resource_ip_inventory API.
14354
14354
  """
14355
14355
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14356
14356
  required_arguments = ['dataRequestId']
@@ -14445,7 +14445,7 @@ class VirtualNetworkClient(object):
14445
14445
  :rtype: :class:`~oci.response.Response`
14446
14446
 
14447
14447
  :example:
14448
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_route_table.py.html>`__ to see an example of how to use get_route_table API.
14448
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_route_table.py.html>`__ to see an example of how to use get_route_table API.
14449
14449
  """
14450
14450
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14451
14451
  required_arguments = ['rtId']
@@ -14533,7 +14533,7 @@ class VirtualNetworkClient(object):
14533
14533
  :rtype: :class:`~oci.response.Response`
14534
14534
 
14535
14535
  :example:
14536
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_security_list.py.html>`__ to see an example of how to use get_security_list API.
14536
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_security_list.py.html>`__ to see an example of how to use get_security_list API.
14537
14537
  """
14538
14538
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14539
14539
  required_arguments = ['securityListId']
@@ -14621,7 +14621,7 @@ class VirtualNetworkClient(object):
14621
14621
  :rtype: :class:`~oci.response.Response`
14622
14622
 
14623
14623
  :example:
14624
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_service.py.html>`__ to see an example of how to use get_service API.
14624
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_service.py.html>`__ to see an example of how to use get_service API.
14625
14625
  """
14626
14626
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14627
14627
  required_arguments = ['serviceId']
@@ -14709,7 +14709,7 @@ class VirtualNetworkClient(object):
14709
14709
  :rtype: :class:`~oci.response.Response`
14710
14710
 
14711
14711
  :example:
14712
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_service_gateway.py.html>`__ to see an example of how to use get_service_gateway API.
14712
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_service_gateway.py.html>`__ to see an example of how to use get_service_gateway API.
14713
14713
  """
14714
14714
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14715
14715
  required_arguments = ['serviceGatewayId']
@@ -14797,7 +14797,7 @@ class VirtualNetworkClient(object):
14797
14797
  :rtype: :class:`~oci.response.Response`
14798
14798
 
14799
14799
  :example:
14800
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_subnet.py.html>`__ to see an example of how to use get_subnet API.
14800
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_subnet.py.html>`__ to see an example of how to use get_subnet API.
14801
14801
  """
14802
14802
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14803
14803
  required_arguments = ['subnetId']
@@ -14891,7 +14891,7 @@ class VirtualNetworkClient(object):
14891
14891
  :rtype: :class:`~oci.response.Response`
14892
14892
 
14893
14893
  :example:
14894
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_subnet_cidr_utilization.py.html>`__ to see an example of how to use get_subnet_cidr_utilization API.
14894
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_subnet_cidr_utilization.py.html>`__ to see an example of how to use get_subnet_cidr_utilization API.
14895
14895
  """
14896
14896
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14897
14897
  required_arguments = ['subnetId']
@@ -14992,7 +14992,7 @@ class VirtualNetworkClient(object):
14992
14992
  :rtype: :class:`~oci.response.Response`
14993
14993
 
14994
14994
  :example:
14995
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_subnet_ip_inventory.py.html>`__ to see an example of how to use get_subnet_ip_inventory API.
14995
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_subnet_ip_inventory.py.html>`__ to see an example of how to use get_subnet_ip_inventory API.
14996
14996
  """
14997
14997
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
14998
14998
  required_arguments = ['subnetId']
@@ -15124,7 +15124,7 @@ class VirtualNetworkClient(object):
15124
15124
  :rtype: :class:`~oci.response.Response`
15125
15125
 
15126
15126
  :example:
15127
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_subnet_topology.py.html>`__ to see an example of how to use get_subnet_topology API.
15127
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_subnet_topology.py.html>`__ to see an example of how to use get_subnet_topology API.
15128
15128
  """
15129
15129
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15130
15130
  required_arguments = ['compartmentId', 'subnetId']
@@ -15243,7 +15243,7 @@ class VirtualNetworkClient(object):
15243
15243
  :rtype: :class:`~oci.response.Response`
15244
15244
 
15245
15245
  :example:
15246
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_tunnel_cpe_device_config.py.html>`__ to see an example of how to use get_tunnel_cpe_device_config API.
15246
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_tunnel_cpe_device_config.py.html>`__ to see an example of how to use get_tunnel_cpe_device_config API.
15247
15247
  """
15248
15248
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15249
15249
  required_arguments = ['ipscId', 'tunnelId']
@@ -15367,7 +15367,7 @@ class VirtualNetworkClient(object):
15367
15367
  :rtype: :class:`~oci.response.Response`
15368
15368
 
15369
15369
  :example:
15370
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
15370
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
15371
15371
  """
15372
15372
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15373
15373
  required_arguments = ['ipscId', 'tunnelId']
@@ -15469,7 +15469,7 @@ class VirtualNetworkClient(object):
15469
15469
  :rtype: :class:`~oci.response.Response`
15470
15470
 
15471
15471
  :example:
15472
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_upgrade_status.py.html>`__ to see an example of how to use get_upgrade_status API.
15472
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_upgrade_status.py.html>`__ to see an example of how to use get_upgrade_status API.
15473
15473
  """
15474
15474
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15475
15475
  required_arguments = ['drgId']
@@ -15564,7 +15564,7 @@ class VirtualNetworkClient(object):
15564
15564
  :rtype: :class:`~oci.response.Response`
15565
15565
 
15566
15566
  :example:
15567
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_vcn.py.html>`__ to see an example of how to use get_vcn API.
15567
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_vcn.py.html>`__ to see an example of how to use get_vcn API.
15568
15568
  """
15569
15569
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15570
15570
  required_arguments = ['vcnId']
@@ -15656,7 +15656,7 @@ class VirtualNetworkClient(object):
15656
15656
  :rtype: :class:`~oci.response.Response`
15657
15657
 
15658
15658
  :example:
15659
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_vcn_dns_resolver_association.py.html>`__ to see an example of how to use get_vcn_dns_resolver_association API.
15659
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_vcn_dns_resolver_association.py.html>`__ to see an example of how to use get_vcn_dns_resolver_association API.
15660
15660
  """
15661
15661
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15662
15662
  required_arguments = ['vcnId']
@@ -15767,7 +15767,7 @@ class VirtualNetworkClient(object):
15767
15767
  :rtype: :class:`~oci.response.Response`
15768
15768
 
15769
15769
  :example:
15770
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_vcn_overlap.py.html>`__ to see an example of how to use get_vcn_overlap API.
15770
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_vcn_overlap.py.html>`__ to see an example of how to use get_vcn_overlap API.
15771
15771
  """
15772
15772
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15773
15773
  required_arguments = ['vcnId']
@@ -15904,7 +15904,7 @@ class VirtualNetworkClient(object):
15904
15904
  :rtype: :class:`~oci.response.Response`
15905
15905
 
15906
15906
  :example:
15907
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_vcn_topology.py.html>`__ to see an example of how to use get_vcn_topology API.
15907
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_vcn_topology.py.html>`__ to see an example of how to use get_vcn_topology API.
15908
15908
  """
15909
15909
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
15910
15910
  required_arguments = ['compartmentId', 'vcnId']
@@ -16010,7 +16010,7 @@ class VirtualNetworkClient(object):
16010
16010
  :rtype: :class:`~oci.response.Response`
16011
16011
 
16012
16012
  :example:
16013
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_virtual_circuit.py.html>`__ to see an example of how to use get_virtual_circuit API.
16013
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_virtual_circuit.py.html>`__ to see an example of how to use get_virtual_circuit API.
16014
16014
  """
16015
16015
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16016
16016
  required_arguments = ['virtualCircuitId']
@@ -16104,7 +16104,7 @@ class VirtualNetworkClient(object):
16104
16104
  :rtype: :class:`~oci.response.Response`
16105
16105
 
16106
16106
  :example:
16107
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_vlan.py.html>`__ to see an example of how to use get_vlan API.
16107
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_vlan.py.html>`__ to see an example of how to use get_vlan API.
16108
16108
  """
16109
16109
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16110
16110
  required_arguments = ['vlanId']
@@ -16204,7 +16204,7 @@ class VirtualNetworkClient(object):
16204
16204
  :rtype: :class:`~oci.response.Response`
16205
16205
 
16206
16206
  :example:
16207
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_vnic.py.html>`__ to see an example of how to use get_vnic API.
16207
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_vnic.py.html>`__ to see an example of how to use get_vnic API.
16208
16208
  """
16209
16209
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16210
16210
  required_arguments = ['vnicId']
@@ -16296,7 +16296,7 @@ class VirtualNetworkClient(object):
16296
16296
  :rtype: :class:`~oci.response.Response`
16297
16297
 
16298
16298
  :example:
16299
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/get_vtap.py.html>`__ to see an example of how to use get_vtap API.
16299
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/get_vtap.py.html>`__ to see an example of how to use get_vtap API.
16300
16300
  """
16301
16301
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16302
16302
  required_arguments = ['vtapId']
@@ -16409,7 +16409,7 @@ class VirtualNetworkClient(object):
16409
16409
  :rtype: :class:`~oci.response.Response`
16410
16410
 
16411
16411
  :example:
16412
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/ipv6_vnic_detach.py.html>`__ to see an example of how to use ipv6_vnic_detach API.
16412
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/ipv6_vnic_detach.py.html>`__ to see an example of how to use ipv6_vnic_detach API.
16413
16413
  """
16414
16414
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16415
16415
  required_arguments = ['ipv6Id']
@@ -16507,7 +16507,7 @@ class VirtualNetworkClient(object):
16507
16507
  :rtype: :class:`~oci.response.Response`
16508
16508
 
16509
16509
  :example:
16510
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
16510
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
16511
16511
  """
16512
16512
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16513
16513
  required_arguments = []
@@ -16623,7 +16623,7 @@ class VirtualNetworkClient(object):
16623
16623
  :rtype: :class:`~oci.response.Response`
16624
16624
 
16625
16625
  :example:
16626
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_byoasns.py.html>`__ to see an example of how to use list_byoasns API.
16626
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_byoasns.py.html>`__ to see an example of how to use list_byoasns API.
16627
16627
  """
16628
16628
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16629
16629
  required_arguments = ['compartmentId']
@@ -16762,7 +16762,7 @@ class VirtualNetworkClient(object):
16762
16762
  :rtype: :class:`~oci.response.Response`
16763
16763
 
16764
16764
  :example:
16765
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_byoip_allocated_ranges.py.html>`__ to see an example of how to use list_byoip_allocated_ranges API.
16765
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_byoip_allocated_ranges.py.html>`__ to see an example of how to use list_byoip_allocated_ranges API.
16766
16766
  """
16767
16767
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16768
16768
  required_arguments = ['byoipRangeId']
@@ -16912,7 +16912,7 @@ class VirtualNetworkClient(object):
16912
16912
  :rtype: :class:`~oci.response.Response`
16913
16913
 
16914
16914
  :example:
16915
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_byoip_ranges.py.html>`__ to see an example of how to use list_byoip_ranges API.
16915
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_byoip_ranges.py.html>`__ to see an example of how to use list_byoip_ranges API.
16916
16916
  """
16917
16917
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
16918
16918
  required_arguments = ['compartmentId']
@@ -17080,7 +17080,7 @@ class VirtualNetworkClient(object):
17080
17080
  :rtype: :class:`~oci.response.Response`
17081
17081
 
17082
17082
  :example:
17083
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_capture_filters.py.html>`__ to see an example of how to use list_capture_filters API.
17083
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_capture_filters.py.html>`__ to see an example of how to use list_capture_filters API.
17084
17084
  """
17085
17085
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17086
17086
  required_arguments = ['compartmentId']
@@ -17241,7 +17241,7 @@ class VirtualNetworkClient(object):
17241
17241
  :rtype: :class:`~oci.response.Response`
17242
17242
 
17243
17243
  :example:
17244
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_cpe_device_shapes.py.html>`__ to see an example of how to use list_cpe_device_shapes API.
17244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_cpe_device_shapes.py.html>`__ to see an example of how to use list_cpe_device_shapes API.
17245
17245
  """
17246
17246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17247
17247
  required_arguments = []
@@ -17352,7 +17352,7 @@ class VirtualNetworkClient(object):
17352
17352
  :rtype: :class:`~oci.response.Response`
17353
17353
 
17354
17354
  :example:
17355
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_cpes.py.html>`__ to see an example of how to use list_cpes API.
17355
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_cpes.py.html>`__ to see an example of how to use list_cpes API.
17356
17356
  """
17357
17357
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17358
17358
  required_arguments = ['compartmentId']
@@ -17488,7 +17488,7 @@ class VirtualNetworkClient(object):
17488
17488
  :rtype: :class:`~oci.response.Response`
17489
17489
 
17490
17490
  :example:
17491
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_cross_connect_groups.py.html>`__ to see an example of how to use list_cross_connect_groups API.
17491
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_cross_connect_groups.py.html>`__ to see an example of how to use list_cross_connect_groups API.
17492
17492
  """
17493
17493
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17494
17494
  required_arguments = ['compartmentId']
@@ -17627,7 +17627,7 @@ class VirtualNetworkClient(object):
17627
17627
  :rtype: :class:`~oci.response.Response`
17628
17628
 
17629
17629
  :example:
17630
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_cross_connect_locations.py.html>`__ to see an example of how to use list_cross_connect_locations API.
17630
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_cross_connect_locations.py.html>`__ to see an example of how to use list_cross_connect_locations API.
17631
17631
  """
17632
17632
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17633
17633
  required_arguments = ['compartmentId']
@@ -17725,7 +17725,7 @@ class VirtualNetworkClient(object):
17725
17725
  :rtype: :class:`~oci.response.Response`
17726
17726
 
17727
17727
  :example:
17728
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_cross_connect_mappings.py.html>`__ to see an example of how to use list_cross_connect_mappings API.
17728
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_cross_connect_mappings.py.html>`__ to see an example of how to use list_cross_connect_mappings API.
17729
17729
  """
17730
17730
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17731
17731
  required_arguments = ['virtualCircuitId']
@@ -17873,7 +17873,7 @@ class VirtualNetworkClient(object):
17873
17873
  :rtype: :class:`~oci.response.Response`
17874
17874
 
17875
17875
  :example:
17876
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_cross_connects.py.html>`__ to see an example of how to use list_cross_connects API.
17876
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_cross_connects.py.html>`__ to see an example of how to use list_cross_connects API.
17877
17877
  """
17878
17878
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
17879
17879
  required_arguments = ['compartmentId']
@@ -18015,7 +18015,7 @@ class VirtualNetworkClient(object):
18015
18015
  :rtype: :class:`~oci.response.Response`
18016
18016
 
18017
18017
  :example:
18018
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_crossconnect_port_speed_shapes.py.html>`__ to see an example of how to use list_crossconnect_port_speed_shapes API.
18018
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_crossconnect_port_speed_shapes.py.html>`__ to see an example of how to use list_crossconnect_port_speed_shapes API.
18019
18019
  """
18020
18020
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18021
18021
  required_arguments = ['compartmentId']
@@ -18159,7 +18159,7 @@ class VirtualNetworkClient(object):
18159
18159
  :rtype: :class:`~oci.response.Response`
18160
18160
 
18161
18161
  :example:
18162
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_dhcp_options.py.html>`__ to see an example of how to use list_dhcp_options API.
18162
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_dhcp_options.py.html>`__ to see an example of how to use list_dhcp_options API.
18163
18163
  """
18164
18164
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18165
18165
  required_arguments = ['compartmentId']
@@ -18354,7 +18354,7 @@ class VirtualNetworkClient(object):
18354
18354
  :rtype: :class:`~oci.response.Response`
18355
18355
 
18356
18356
  :example:
18357
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_drg_attachments.py.html>`__ to see an example of how to use list_drg_attachments API.
18357
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_drg_attachments.py.html>`__ to see an example of how to use list_drg_attachments API.
18358
18358
  """
18359
18359
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18360
18360
  required_arguments = ['compartmentId']
@@ -18518,7 +18518,7 @@ class VirtualNetworkClient(object):
18518
18518
  :rtype: :class:`~oci.response.Response`
18519
18519
 
18520
18520
  :example:
18521
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_drg_route_distribution_statements.py.html>`__ to see an example of how to use list_drg_route_distribution_statements API.
18521
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_drg_route_distribution_statements.py.html>`__ to see an example of how to use list_drg_route_distribution_statements API.
18522
18522
  """
18523
18523
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18524
18524
  required_arguments = ['drgRouteDistributionId']
@@ -18684,7 +18684,7 @@ class VirtualNetworkClient(object):
18684
18684
  :rtype: :class:`~oci.response.Response`
18685
18685
 
18686
18686
  :example:
18687
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_drg_route_distributions.py.html>`__ to see an example of how to use list_drg_route_distributions API.
18687
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_drg_route_distributions.py.html>`__ to see an example of how to use list_drg_route_distributions API.
18688
18688
  """
18689
18689
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18690
18690
  required_arguments = ['drgId']
@@ -18826,7 +18826,7 @@ class VirtualNetworkClient(object):
18826
18826
  :rtype: :class:`~oci.response.Response`
18827
18827
 
18828
18828
  :example:
18829
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_drg_route_rules.py.html>`__ to see an example of how to use list_drg_route_rules API.
18829
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_drg_route_rules.py.html>`__ to see an example of how to use list_drg_route_rules API.
18830
18830
  """
18831
18831
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18832
18832
  required_arguments = ['drgRouteTableId']
@@ -18987,7 +18987,7 @@ class VirtualNetworkClient(object):
18987
18987
  :rtype: :class:`~oci.response.Response`
18988
18988
 
18989
18989
  :example:
18990
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_drg_route_tables.py.html>`__ to see an example of how to use list_drg_route_tables API.
18990
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_drg_route_tables.py.html>`__ to see an example of how to use list_drg_route_tables API.
18991
18991
  """
18992
18992
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
18993
18993
  required_arguments = ['drgId']
@@ -19125,7 +19125,7 @@ class VirtualNetworkClient(object):
19125
19125
  :rtype: :class:`~oci.response.Response`
19126
19126
 
19127
19127
  :example:
19128
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_drgs.py.html>`__ to see an example of how to use list_drgs API.
19128
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_drgs.py.html>`__ to see an example of how to use list_drgs API.
19129
19129
  """
19130
19130
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19131
19131
  required_arguments = ['compartmentId']
@@ -19241,7 +19241,7 @@ class VirtualNetworkClient(object):
19241
19241
  :rtype: :class:`~oci.response.Response`
19242
19242
 
19243
19243
  :example:
19244
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_fast_connect_provider_services.py.html>`__ to see an example of how to use list_fast_connect_provider_services API.
19244
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_fast_connect_provider_services.py.html>`__ to see an example of how to use list_fast_connect_provider_services API.
19245
19245
  """
19246
19246
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19247
19247
  required_arguments = ['compartmentId']
@@ -19355,7 +19355,7 @@ class VirtualNetworkClient(object):
19355
19355
  :rtype: :class:`~oci.response.Response`
19356
19356
 
19357
19357
  :example:
19358
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
19358
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
19359
19359
  """
19360
19360
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19361
19361
  required_arguments = ['providerServiceId']
@@ -19508,7 +19508,7 @@ class VirtualNetworkClient(object):
19508
19508
  :rtype: :class:`~oci.response.Response`
19509
19509
 
19510
19510
  :example:
19511
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_internet_gateways.py.html>`__ to see an example of how to use list_internet_gateways API.
19511
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_internet_gateways.py.html>`__ to see an example of how to use list_internet_gateways API.
19512
19512
  """
19513
19513
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19514
19514
  required_arguments = ['compartmentId']
@@ -19632,7 +19632,7 @@ class VirtualNetworkClient(object):
19632
19632
  :rtype: :class:`~oci.response.Response`
19633
19633
 
19634
19634
  :example:
19635
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_ip_inventory.py.html>`__ to see an example of how to use list_ip_inventory API.
19635
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_ip_inventory.py.html>`__ to see an example of how to use list_ip_inventory API.
19636
19636
  """
19637
19637
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19638
19638
  required_arguments = []
@@ -19745,7 +19745,7 @@ class VirtualNetworkClient(object):
19745
19745
  :rtype: :class:`~oci.response.Response`
19746
19746
 
19747
19747
  :example:
19748
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
19748
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
19749
19749
  """
19750
19750
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19751
19751
  required_arguments = ['ipscId', 'tunnelId']
@@ -19880,7 +19880,7 @@ class VirtualNetworkClient(object):
19880
19880
  :rtype: :class:`~oci.response.Response`
19881
19881
 
19882
19882
  :example:
19883
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
19883
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
19884
19884
  """
19885
19885
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
19886
19886
  required_arguments = ['ipscId', 'tunnelId']
@@ -20001,7 +20001,7 @@ class VirtualNetworkClient(object):
20001
20001
  :rtype: :class:`~oci.response.Response`
20002
20002
 
20003
20003
  :example:
20004
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_ip_sec_connection_tunnels.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnels API.
20004
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_ip_sec_connection_tunnels.py.html>`__ to see an example of how to use list_ip_sec_connection_tunnels API.
20005
20005
  """
20006
20006
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20007
20007
  required_arguments = ['ipscId']
@@ -20132,7 +20132,7 @@ class VirtualNetworkClient(object):
20132
20132
  :rtype: :class:`~oci.response.Response`
20133
20133
 
20134
20134
  :example:
20135
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_ip_sec_connections.py.html>`__ to see an example of how to use list_ip_sec_connections API.
20135
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_ip_sec_connections.py.html>`__ to see an example of how to use list_ip_sec_connections API.
20136
20136
  """
20137
20137
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20138
20138
  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.154.2/core/list_ipv6s.py.html>`__ to see an example of how to use list_ipv6s API.
20280
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_ipv6s.py.html>`__ to see an example of how to use list_ipv6s API.
20281
20281
  """
20282
20282
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20283
20283
  required_arguments = []
@@ -20402,7 +20402,7 @@ class VirtualNetworkClient(object):
20402
20402
  :rtype: :class:`~oci.response.Response`
20403
20403
 
20404
20404
  :example:
20405
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_local_peering_gateways.py.html>`__ to see an example of how to use list_local_peering_gateways API.
20405
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_local_peering_gateways.py.html>`__ to see an example of how to use list_local_peering_gateways API.
20406
20406
  """
20407
20407
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20408
20408
  required_arguments = ['compartmentId']
@@ -20544,7 +20544,7 @@ class VirtualNetworkClient(object):
20544
20544
  :rtype: :class:`~oci.response.Response`
20545
20545
 
20546
20546
  :example:
20547
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_nat_gateways.py.html>`__ to see an example of how to use list_nat_gateways API.
20547
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_nat_gateways.py.html>`__ to see an example of how to use list_nat_gateways API.
20548
20548
  """
20549
20549
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20550
20550
  required_arguments = ['compartmentId']
@@ -20699,7 +20699,7 @@ class VirtualNetworkClient(object):
20699
20699
  :rtype: :class:`~oci.response.Response`
20700
20700
 
20701
20701
  :example:
20702
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
20702
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
20703
20703
  """
20704
20704
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20705
20705
  required_arguments = ['networkSecurityGroupId']
@@ -20855,7 +20855,7 @@ class VirtualNetworkClient(object):
20855
20855
  :rtype: :class:`~oci.response.Response`
20856
20856
 
20857
20857
  :example:
20858
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_network_security_group_vnics.py.html>`__ to see an example of how to use list_network_security_group_vnics API.
20858
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_network_security_group_vnics.py.html>`__ to see an example of how to use list_network_security_group_vnics API.
20859
20859
  """
20860
20860
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
20861
20861
  required_arguments = ['networkSecurityGroupId']
@@ -21029,7 +21029,7 @@ class VirtualNetworkClient(object):
21029
21029
  :rtype: :class:`~oci.response.Response`
21030
21030
 
21031
21031
  :example:
21032
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_network_security_groups.py.html>`__ to see an example of how to use list_network_security_groups API.
21032
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_network_security_groups.py.html>`__ to see an example of how to use list_network_security_groups API.
21033
21033
  """
21034
21034
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21035
21035
  required_arguments = []
@@ -21212,7 +21212,7 @@ class VirtualNetworkClient(object):
21212
21212
  :rtype: :class:`~oci.response.Response`
21213
21213
 
21214
21214
  :example:
21215
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_private_ips.py.html>`__ to see an example of how to use list_private_ips API.
21215
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_private_ips.py.html>`__ to see an example of how to use list_private_ips API.
21216
21216
  """
21217
21217
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21218
21218
  required_arguments = []
@@ -21359,7 +21359,7 @@ class VirtualNetworkClient(object):
21359
21359
  :rtype: :class:`~oci.response.Response`
21360
21360
 
21361
21361
  :example:
21362
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_public_ip_pools.py.html>`__ to see an example of how to use list_public_ip_pools API.
21362
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_public_ip_pools.py.html>`__ to see an example of how to use list_public_ip_pools API.
21363
21363
  """
21364
21364
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21365
21365
  required_arguments = ['compartmentId']
@@ -21537,7 +21537,7 @@ class VirtualNetworkClient(object):
21537
21537
  :rtype: :class:`~oci.response.Response`
21538
21538
 
21539
21539
  :example:
21540
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_public_ips.py.html>`__ to see an example of how to use list_public_ips API.
21540
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_public_ips.py.html>`__ to see an example of how to use list_public_ips API.
21541
21541
  """
21542
21542
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21543
21543
  required_arguments = ['scope', 'compartmentId']
@@ -21670,7 +21670,7 @@ class VirtualNetworkClient(object):
21670
21670
  :rtype: :class:`~oci.response.Response`
21671
21671
 
21672
21672
  :example:
21673
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_remote_peering_connections.py.html>`__ to see an example of how to use list_remote_peering_connections API.
21673
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_remote_peering_connections.py.html>`__ to see an example of how to use list_remote_peering_connections API.
21674
21674
  """
21675
21675
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21676
21676
  required_arguments = ['compartmentId']
@@ -21816,7 +21816,7 @@ class VirtualNetworkClient(object):
21816
21816
  :rtype: :class:`~oci.response.Response`
21817
21817
 
21818
21818
  :example:
21819
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_route_tables.py.html>`__ to see an example of how to use list_route_tables API.
21819
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_route_tables.py.html>`__ to see an example of how to use list_route_tables API.
21820
21820
  """
21821
21821
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21822
21822
  required_arguments = ['compartmentId']
@@ -21987,7 +21987,7 @@ class VirtualNetworkClient(object):
21987
21987
  :rtype: :class:`~oci.response.Response`
21988
21988
 
21989
21989
  :example:
21990
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_security_lists.py.html>`__ to see an example of how to use list_security_lists API.
21990
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_security_lists.py.html>`__ to see an example of how to use list_security_lists API.
21991
21991
  """
21992
21992
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
21993
21993
  required_arguments = ['compartmentId']
@@ -22155,7 +22155,7 @@ class VirtualNetworkClient(object):
22155
22155
  :rtype: :class:`~oci.response.Response`
22156
22156
 
22157
22157
  :example:
22158
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_service_gateways.py.html>`__ to see an example of how to use list_service_gateways API.
22158
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_service_gateways.py.html>`__ to see an example of how to use list_service_gateways API.
22159
22159
  """
22160
22160
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22161
22161
  required_arguments = ['compartmentId']
@@ -22287,7 +22287,7 @@ class VirtualNetworkClient(object):
22287
22287
  :rtype: :class:`~oci.response.Response`
22288
22288
 
22289
22289
  :example:
22290
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_services.py.html>`__ to see an example of how to use list_services API.
22290
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_services.py.html>`__ to see an example of how to use list_services API.
22291
22291
  """
22292
22292
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22293
22293
  required_arguments = []
@@ -22426,7 +22426,7 @@ class VirtualNetworkClient(object):
22426
22426
  :rtype: :class:`~oci.response.Response`
22427
22427
 
22428
22428
  :example:
22429
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_subnets.py.html>`__ to see an example of how to use list_subnets API.
22429
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_subnets.py.html>`__ to see an example of how to use list_subnets API.
22430
22430
  """
22431
22431
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22432
22432
  required_arguments = ['compartmentId']
@@ -22591,7 +22591,7 @@ class VirtualNetworkClient(object):
22591
22591
  :rtype: :class:`~oci.response.Response`
22592
22592
 
22593
22593
  :example:
22594
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_vcns.py.html>`__ to see an example of how to use list_vcns API.
22594
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_vcns.py.html>`__ to see an example of how to use list_vcns API.
22595
22595
  """
22596
22596
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22597
22597
  required_arguments = ['compartmentId']
@@ -22727,7 +22727,7 @@ class VirtualNetworkClient(object):
22727
22727
  :rtype: :class:`~oci.response.Response`
22728
22728
 
22729
22729
  :example:
22730
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_virtual_circuit_associated_tunnels.py.html>`__ to see an example of how to use list_virtual_circuit_associated_tunnels API.
22730
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_virtual_circuit_associated_tunnels.py.html>`__ to see an example of how to use list_virtual_circuit_associated_tunnels API.
22731
22731
  """
22732
22732
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22733
22733
  required_arguments = ['virtualCircuitId']
@@ -22849,7 +22849,7 @@ class VirtualNetworkClient(object):
22849
22849
  :rtype: :class:`~oci.response.Response`
22850
22850
 
22851
22851
  :example:
22852
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_virtual_circuit_bandwidth_shapes.py.html>`__ to see an example of how to use list_virtual_circuit_bandwidth_shapes API.
22852
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_virtual_circuit_bandwidth_shapes.py.html>`__ to see an example of how to use list_virtual_circuit_bandwidth_shapes API.
22853
22853
  """
22854
22854
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22855
22855
  required_arguments = ['compartmentId']
@@ -22951,7 +22951,7 @@ class VirtualNetworkClient(object):
22951
22951
  :rtype: :class:`~oci.response.Response`
22952
22952
 
22953
22953
  :example:
22954
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use list_virtual_circuit_public_prefixes API.
22954
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_virtual_circuit_public_prefixes.py.html>`__ to see an example of how to use list_virtual_circuit_public_prefixes API.
22955
22955
  """
22956
22956
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
22957
22957
  required_arguments = ['virtualCircuitId']
@@ -23103,7 +23103,7 @@ class VirtualNetworkClient(object):
23103
23103
  :rtype: :class:`~oci.response.Response`
23104
23104
 
23105
23105
  :example:
23106
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_virtual_circuits.py.html>`__ to see an example of how to use list_virtual_circuits API.
23106
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_virtual_circuits.py.html>`__ to see an example of how to use list_virtual_circuits API.
23107
23107
  """
23108
23108
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23109
23109
  required_arguments = ['compartmentId']
@@ -23277,7 +23277,7 @@ class VirtualNetworkClient(object):
23277
23277
  :rtype: :class:`~oci.response.Response`
23278
23278
 
23279
23279
  :example:
23280
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_vlans.py.html>`__ to see an example of how to use list_vlans API.
23280
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_vlans.py.html>`__ to see an example of how to use list_vlans API.
23281
23281
  """
23282
23282
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23283
23283
  required_arguments = ['compartmentId']
@@ -23473,7 +23473,7 @@ class VirtualNetworkClient(object):
23473
23473
  :rtype: :class:`~oci.response.Response`
23474
23474
 
23475
23475
  :example:
23476
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/list_vtaps.py.html>`__ to see an example of how to use list_vtaps API.
23476
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/list_vtaps.py.html>`__ to see an example of how to use list_vtaps API.
23477
23477
  """
23478
23478
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23479
23479
  required_arguments = ['compartmentId']
@@ -23633,7 +23633,7 @@ class VirtualNetworkClient(object):
23633
23633
  :rtype: :class:`~oci.response.Response`
23634
23634
 
23635
23635
  :example:
23636
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/modify_vcn_cidr.py.html>`__ to see an example of how to use modify_vcn_cidr API.
23636
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/modify_vcn_cidr.py.html>`__ to see an example of how to use modify_vcn_cidr API.
23637
23637
  """
23638
23638
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23639
23639
  required_arguments = ['vcnId']
@@ -23751,7 +23751,7 @@ class VirtualNetworkClient(object):
23751
23751
  :rtype: :class:`~oci.response.Response`
23752
23752
 
23753
23753
  :example:
23754
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/private_ip_vnic_detach.py.html>`__ to see an example of how to use private_ip_vnic_detach API.
23754
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/private_ip_vnic_detach.py.html>`__ to see an example of how to use private_ip_vnic_detach API.
23755
23755
  """
23756
23756
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23757
23757
  required_arguments = ['privateIpId']
@@ -23854,7 +23854,7 @@ class VirtualNetworkClient(object):
23854
23854
  :rtype: :class:`~oci.response.Response`
23855
23855
 
23856
23856
  :example:
23857
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_drg_route_distribution_statements.py.html>`__ to see an example of how to use remove_drg_route_distribution_statements API.
23857
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_drg_route_distribution_statements.py.html>`__ to see an example of how to use remove_drg_route_distribution_statements API.
23858
23858
  """
23859
23859
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23860
23860
  required_arguments = ['drgRouteDistributionId']
@@ -23945,7 +23945,7 @@ class VirtualNetworkClient(object):
23945
23945
  :rtype: :class:`~oci.response.Response`
23946
23946
 
23947
23947
  :example:
23948
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_drg_route_rules.py.html>`__ to see an example of how to use remove_drg_route_rules API.
23948
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_drg_route_rules.py.html>`__ to see an example of how to use remove_drg_route_rules API.
23949
23949
  """
23950
23950
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
23951
23951
  required_arguments = ['drgRouteTableId']
@@ -24042,7 +24042,7 @@ class VirtualNetworkClient(object):
24042
24042
  :rtype: :class:`~oci.response.Response`
24043
24043
 
24044
24044
  :example:
24045
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_export_drg_route_distribution.py.html>`__ to see an example of how to use remove_export_drg_route_distribution API.
24045
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_export_drg_route_distribution.py.html>`__ to see an example of how to use remove_export_drg_route_distribution API.
24046
24046
  """
24047
24047
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24048
24048
  required_arguments = ['drgAttachmentId']
@@ -24149,7 +24149,7 @@ class VirtualNetworkClient(object):
24149
24149
  :rtype: :class:`~oci.response.Response`
24150
24150
 
24151
24151
  :example:
24152
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_import_drg_route_distribution.py.html>`__ to see an example of how to use remove_import_drg_route_distribution API.
24152
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_import_drg_route_distribution.py.html>`__ to see an example of how to use remove_import_drg_route_distribution API.
24153
24153
  """
24154
24154
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24155
24155
  required_arguments = ['drgRouteTableId']
@@ -24265,7 +24265,7 @@ class VirtualNetworkClient(object):
24265
24265
  :rtype: :class:`~oci.response.Response`
24266
24266
 
24267
24267
  :example:
24268
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_ipv6_subnet_cidr.py.html>`__ to see an example of how to use remove_ipv6_subnet_cidr API.
24268
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_ipv6_subnet_cidr.py.html>`__ to see an example of how to use remove_ipv6_subnet_cidr API.
24269
24269
  """
24270
24270
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24271
24271
  required_arguments = ['subnetId']
@@ -24384,7 +24384,7 @@ class VirtualNetworkClient(object):
24384
24384
  :rtype: :class:`~oci.response.Response`
24385
24385
 
24386
24386
  :example:
24387
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_ipv6_vcn_cidr.py.html>`__ to see an example of how to use remove_ipv6_vcn_cidr API.
24387
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_ipv6_vcn_cidr.py.html>`__ to see an example of how to use remove_ipv6_vcn_cidr API.
24388
24388
  """
24389
24389
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24390
24390
  required_arguments = ['vcnId']
@@ -24489,7 +24489,7 @@ class VirtualNetworkClient(object):
24489
24489
  :rtype: :class:`~oci.response.Response`
24490
24490
 
24491
24491
  :example:
24492
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
24492
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
24493
24493
  """
24494
24494
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24495
24495
  required_arguments = ['networkSecurityGroupId']
@@ -24591,7 +24591,7 @@ class VirtualNetworkClient(object):
24591
24591
  :rtype: :class:`~oci.response.Response`
24592
24592
 
24593
24593
  :example:
24594
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_public_ip_pool_capacity.py.html>`__ to see an example of how to use remove_public_ip_pool_capacity API.
24594
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_public_ip_pool_capacity.py.html>`__ to see an example of how to use remove_public_ip_pool_capacity API.
24595
24595
  """
24596
24596
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24597
24597
  required_arguments = ['publicIpPoolId']
@@ -24714,7 +24714,7 @@ class VirtualNetworkClient(object):
24714
24714
  :rtype: :class:`~oci.response.Response`
24715
24715
 
24716
24716
  :example:
24717
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/remove_vcn_cidr.py.html>`__ to see an example of how to use remove_vcn_cidr API.
24717
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/remove_vcn_cidr.py.html>`__ to see an example of how to use remove_vcn_cidr API.
24718
24718
  """
24719
24719
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24720
24720
  required_arguments = ['vcnId']
@@ -24833,7 +24833,7 @@ class VirtualNetworkClient(object):
24833
24833
  :rtype: :class:`~oci.response.Response`
24834
24834
 
24835
24835
  :example:
24836
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/set_origin_asn.py.html>`__ to see an example of how to use set_origin_asn API.
24836
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/set_origin_asn.py.html>`__ to see an example of how to use set_origin_asn API.
24837
24837
  """
24838
24838
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24839
24839
  required_arguments = ['byoipRangeId']
@@ -24944,7 +24944,7 @@ class VirtualNetworkClient(object):
24944
24944
  :rtype: :class:`~oci.response.Response`
24945
24945
 
24946
24946
  :example:
24947
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/set_origin_asn_to_oracle.py.html>`__ to see an example of how to use set_origin_asn_to_oracle API.
24947
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/set_origin_asn_to_oracle.py.html>`__ to see an example of how to use set_origin_asn_to_oracle API.
24948
24948
  """
24949
24949
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
24950
24950
  required_arguments = ['byoipRangeId']
@@ -25051,7 +25051,7 @@ class VirtualNetworkClient(object):
25051
25051
  :rtype: :class:`~oci.response.Response`
25052
25052
 
25053
25053
  :example:
25054
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_byoasn.py.html>`__ to see an example of how to use update_byoasn API.
25054
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_byoasn.py.html>`__ to see an example of how to use update_byoasn API.
25055
25055
  """
25056
25056
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25057
25057
  required_arguments = ['byoasnId']
@@ -25162,7 +25162,7 @@ class VirtualNetworkClient(object):
25162
25162
  :rtype: :class:`~oci.response.Response`
25163
25163
 
25164
25164
  :example:
25165
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_byoip_range.py.html>`__ to see an example of how to use update_byoip_range API.
25165
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_byoip_range.py.html>`__ to see an example of how to use update_byoip_range API.
25166
25166
  """
25167
25167
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25168
25168
  required_arguments = ['byoipRangeId']
@@ -25273,7 +25273,7 @@ class VirtualNetworkClient(object):
25273
25273
  :rtype: :class:`~oci.response.Response`
25274
25274
 
25275
25275
  :example:
25276
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_capture_filter.py.html>`__ to see an example of how to use update_capture_filter API.
25276
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_capture_filter.py.html>`__ to see an example of how to use update_capture_filter API.
25277
25277
  """
25278
25278
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25279
25279
  required_arguments = ['captureFilterId']
@@ -25381,7 +25381,7 @@ class VirtualNetworkClient(object):
25381
25381
  :rtype: :class:`~oci.response.Response`
25382
25382
 
25383
25383
  :example:
25384
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_cpe.py.html>`__ to see an example of how to use update_cpe API.
25384
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_cpe.py.html>`__ to see an example of how to use update_cpe API.
25385
25385
  """
25386
25386
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25387
25387
  required_arguments = ['cpeId']
@@ -25488,7 +25488,7 @@ class VirtualNetworkClient(object):
25488
25488
  :rtype: :class:`~oci.response.Response`
25489
25489
 
25490
25490
  :example:
25491
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_cross_connect.py.html>`__ to see an example of how to use update_cross_connect API.
25491
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_cross_connect.py.html>`__ to see an example of how to use update_cross_connect API.
25492
25492
  """
25493
25493
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25494
25494
  required_arguments = ['crossConnectId']
@@ -25596,7 +25596,7 @@ class VirtualNetworkClient(object):
25596
25596
  :rtype: :class:`~oci.response.Response`
25597
25597
 
25598
25598
  :example:
25599
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_cross_connect_group.py.html>`__ to see an example of how to use update_cross_connect_group API.
25599
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_cross_connect_group.py.html>`__ to see an example of how to use update_cross_connect_group API.
25600
25600
  """
25601
25601
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25602
25602
  required_arguments = ['crossConnectGroupId']
@@ -25706,7 +25706,7 @@ class VirtualNetworkClient(object):
25706
25706
  :rtype: :class:`~oci.response.Response`
25707
25707
 
25708
25708
  :example:
25709
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_dhcp_options.py.html>`__ to see an example of how to use update_dhcp_options API.
25709
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_dhcp_options.py.html>`__ to see an example of how to use update_dhcp_options API.
25710
25710
  """
25711
25711
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25712
25712
  required_arguments = ['dhcpId']
@@ -25811,7 +25811,7 @@ class VirtualNetworkClient(object):
25811
25811
  :rtype: :class:`~oci.response.Response`
25812
25812
 
25813
25813
  :example:
25814
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_drg.py.html>`__ to see an example of how to use update_drg API.
25814
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_drg.py.html>`__ to see an example of how to use update_drg API.
25815
25815
  """
25816
25816
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25817
25817
  required_arguments = ['drgId']
@@ -25917,7 +25917,7 @@ class VirtualNetworkClient(object):
25917
25917
  :rtype: :class:`~oci.response.Response`
25918
25918
 
25919
25919
  :example:
25920
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_drg_attachment.py.html>`__ to see an example of how to use update_drg_attachment API.
25920
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_drg_attachment.py.html>`__ to see an example of how to use update_drg_attachment API.
25921
25921
  """
25922
25922
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
25923
25923
  required_arguments = ['drgAttachmentId']
@@ -26022,7 +26022,7 @@ class VirtualNetworkClient(object):
26022
26022
  :rtype: :class:`~oci.response.Response`
26023
26023
 
26024
26024
  :example:
26025
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_drg_route_distribution.py.html>`__ to see an example of how to use update_drg_route_distribution API.
26025
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_drg_route_distribution.py.html>`__ to see an example of how to use update_drg_route_distribution API.
26026
26026
  """
26027
26027
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26028
26028
  required_arguments = ['drgRouteDistributionId']
@@ -26122,7 +26122,7 @@ class VirtualNetworkClient(object):
26122
26122
  :rtype: :class:`~oci.response.Response`
26123
26123
 
26124
26124
  :example:
26125
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_drg_route_distribution_statements.py.html>`__ to see an example of how to use update_drg_route_distribution_statements API.
26125
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_drg_route_distribution_statements.py.html>`__ to see an example of how to use update_drg_route_distribution_statements API.
26126
26126
  """
26127
26127
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26128
26128
  required_arguments = ['drgRouteDistributionId']
@@ -26215,7 +26215,7 @@ class VirtualNetworkClient(object):
26215
26215
  :rtype: :class:`~oci.response.Response`
26216
26216
 
26217
26217
  :example:
26218
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_drg_route_rules.py.html>`__ to see an example of how to use update_drg_route_rules API.
26218
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_drg_route_rules.py.html>`__ to see an example of how to use update_drg_route_rules API.
26219
26219
  """
26220
26220
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26221
26221
  required_arguments = ['drgRouteTableId']
@@ -26313,7 +26313,7 @@ class VirtualNetworkClient(object):
26313
26313
  :rtype: :class:`~oci.response.Response`
26314
26314
 
26315
26315
  :example:
26316
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_drg_route_table.py.html>`__ to see an example of how to use update_drg_route_table API.
26316
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_drg_route_table.py.html>`__ to see an example of how to use update_drg_route_table API.
26317
26317
  """
26318
26318
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26319
26319
  required_arguments = ['drgRouteTableId']
@@ -26422,7 +26422,7 @@ class VirtualNetworkClient(object):
26422
26422
  :rtype: :class:`~oci.response.Response`
26423
26423
 
26424
26424
  :example:
26425
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_internet_gateway.py.html>`__ to see an example of how to use update_internet_gateway API.
26425
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_internet_gateway.py.html>`__ to see an example of how to use update_internet_gateway API.
26426
26426
  """
26427
26427
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26428
26428
  required_arguments = ['igId']
@@ -26530,7 +26530,7 @@ class VirtualNetworkClient(object):
26530
26530
  :rtype: :class:`~oci.response.Response`
26531
26531
 
26532
26532
  :example:
26533
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_ip_sec_connection.py.html>`__ to see an example of how to use update_ip_sec_connection API.
26533
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_ip_sec_connection.py.html>`__ to see an example of how to use update_ip_sec_connection API.
26534
26534
  """
26535
26535
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26536
26536
  required_arguments = ['ipscId']
@@ -26657,7 +26657,7 @@ class VirtualNetworkClient(object):
26657
26657
  :rtype: :class:`~oci.response.Response`
26658
26658
 
26659
26659
  :example:
26660
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use update_ip_sec_connection_tunnel API.
26660
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_ip_sec_connection_tunnel.py.html>`__ to see an example of how to use update_ip_sec_connection_tunnel API.
26661
26661
  """
26662
26662
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26663
26663
  required_arguments = ['ipscId', 'tunnelId']
@@ -26774,7 +26774,7 @@ class VirtualNetworkClient(object):
26774
26774
  :rtype: :class:`~oci.response.Response`
26775
26775
 
26776
26776
  :example:
26777
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
26777
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
26778
26778
  """
26779
26779
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26780
26780
  required_arguments = ['ipscId', 'tunnelId']
@@ -26894,7 +26894,7 @@ class VirtualNetworkClient(object):
26894
26894
  :rtype: :class:`~oci.response.Response`
26895
26895
 
26896
26896
  :example:
26897
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_ipv6.py.html>`__ to see an example of how to use update_ipv6 API.
26897
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_ipv6.py.html>`__ to see an example of how to use update_ipv6 API.
26898
26898
  """
26899
26899
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
26900
26900
  required_arguments = ['ipv6Id']
@@ -27001,7 +27001,7 @@ class VirtualNetworkClient(object):
27001
27001
  :rtype: :class:`~oci.response.Response`
27002
27002
 
27003
27003
  :example:
27004
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_local_peering_gateway.py.html>`__ to see an example of how to use update_local_peering_gateway API.
27004
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_local_peering_gateway.py.html>`__ to see an example of how to use update_local_peering_gateway API.
27005
27005
  """
27006
27006
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27007
27007
  required_arguments = ['localPeeringGatewayId']
@@ -27106,7 +27106,7 @@ class VirtualNetworkClient(object):
27106
27106
  :rtype: :class:`~oci.response.Response`
27107
27107
 
27108
27108
  :example:
27109
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_nat_gateway.py.html>`__ to see an example of how to use update_nat_gateway API.
27109
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_nat_gateway.py.html>`__ to see an example of how to use update_nat_gateway API.
27110
27110
  """
27111
27111
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27112
27112
  required_arguments = ['natGatewayId']
@@ -27227,7 +27227,7 @@ class VirtualNetworkClient(object):
27227
27227
  :rtype: :class:`~oci.response.Response`
27228
27228
 
27229
27229
  :example:
27230
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_network_security_group.py.html>`__ to see an example of how to use update_network_security_group API.
27230
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_network_security_group.py.html>`__ to see an example of how to use update_network_security_group API.
27231
27231
  """
27232
27232
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27233
27233
  required_arguments = ['networkSecurityGroupId']
@@ -27328,7 +27328,7 @@ class VirtualNetworkClient(object):
27328
27328
  :rtype: :class:`~oci.response.Response`
27329
27329
 
27330
27330
  :example:
27331
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.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.
27331
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.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.
27332
27332
  """
27333
27333
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27334
27334
  required_arguments = ['networkSecurityGroupId']
@@ -27437,7 +27437,7 @@ class VirtualNetworkClient(object):
27437
27437
  :rtype: :class:`~oci.response.Response`
27438
27438
 
27439
27439
  :example:
27440
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_private_ip.py.html>`__ to see an example of how to use update_private_ip API.
27440
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_private_ip.py.html>`__ to see an example of how to use update_private_ip API.
27441
27441
  """
27442
27442
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27443
27443
  required_arguments = ['privateIpId']
@@ -27583,7 +27583,7 @@ class VirtualNetworkClient(object):
27583
27583
  :rtype: :class:`~oci.response.Response`
27584
27584
 
27585
27585
  :example:
27586
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_public_ip.py.html>`__ to see an example of how to use update_public_ip API.
27586
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_public_ip.py.html>`__ to see an example of how to use update_public_ip API.
27587
27587
  """
27588
27588
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27589
27589
  required_arguments = ['publicIpId']
@@ -27692,7 +27692,7 @@ class VirtualNetworkClient(object):
27692
27692
  :rtype: :class:`~oci.response.Response`
27693
27693
 
27694
27694
  :example:
27695
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_public_ip_pool.py.html>`__ to see an example of how to use update_public_ip_pool API.
27695
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_public_ip_pool.py.html>`__ to see an example of how to use update_public_ip_pool API.
27696
27696
  """
27697
27697
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27698
27698
  required_arguments = ['publicIpPoolId']
@@ -27799,7 +27799,7 @@ class VirtualNetworkClient(object):
27799
27799
  :rtype: :class:`~oci.response.Response`
27800
27800
 
27801
27801
  :example:
27802
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_remote_peering_connection.py.html>`__ to see an example of how to use update_remote_peering_connection API.
27802
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_remote_peering_connection.py.html>`__ to see an example of how to use update_remote_peering_connection API.
27803
27803
  """
27804
27804
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27805
27805
  required_arguments = ['remotePeeringConnectionId']
@@ -27909,7 +27909,7 @@ class VirtualNetworkClient(object):
27909
27909
  :rtype: :class:`~oci.response.Response`
27910
27910
 
27911
27911
  :example:
27912
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_route_table.py.html>`__ to see an example of how to use update_route_table API.
27912
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_route_table.py.html>`__ to see an example of how to use update_route_table API.
27913
27913
  """
27914
27914
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
27915
27915
  required_arguments = ['rtId']
@@ -28018,7 +28018,7 @@ class VirtualNetworkClient(object):
28018
28018
  :rtype: :class:`~oci.response.Response`
28019
28019
 
28020
28020
  :example:
28021
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_security_list.py.html>`__ to see an example of how to use update_security_list API.
28021
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_security_list.py.html>`__ to see an example of how to use update_security_list API.
28022
28022
  """
28023
28023
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28024
28024
  required_arguments = ['securityListId']
@@ -28124,7 +28124,7 @@ class VirtualNetworkClient(object):
28124
28124
  :rtype: :class:`~oci.response.Response`
28125
28125
 
28126
28126
  :example:
28127
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_service_gateway.py.html>`__ to see an example of how to use update_service_gateway API.
28127
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_service_gateway.py.html>`__ to see an example of how to use update_service_gateway API.
28128
28128
  """
28129
28129
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28130
28130
  required_arguments = ['serviceGatewayId']
@@ -28229,7 +28229,7 @@ class VirtualNetworkClient(object):
28229
28229
  :rtype: :class:`~oci.response.Response`
28230
28230
 
28231
28231
  :example:
28232
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_subnet.py.html>`__ to see an example of how to use update_subnet API.
28232
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_subnet.py.html>`__ to see an example of how to use update_subnet API.
28233
28233
  """
28234
28234
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28235
28235
  required_arguments = ['subnetId']
@@ -28352,7 +28352,7 @@ class VirtualNetworkClient(object):
28352
28352
  :rtype: :class:`~oci.response.Response`
28353
28353
 
28354
28354
  :example:
28355
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_tunnel_cpe_device_config.py.html>`__ to see an example of how to use update_tunnel_cpe_device_config API.
28355
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_tunnel_cpe_device_config.py.html>`__ to see an example of how to use update_tunnel_cpe_device_config API.
28356
28356
  """
28357
28357
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28358
28358
  required_arguments = ['ipscId', 'tunnelId']
@@ -28465,7 +28465,7 @@ class VirtualNetworkClient(object):
28465
28465
  :rtype: :class:`~oci.response.Response`
28466
28466
 
28467
28467
  :example:
28468
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_vcn.py.html>`__ to see an example of how to use update_vcn API.
28468
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_vcn.py.html>`__ to see an example of how to use update_vcn API.
28469
28469
  """
28470
28470
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28471
28471
  required_arguments = ['vcnId']
@@ -28595,7 +28595,7 @@ class VirtualNetworkClient(object):
28595
28595
  :rtype: :class:`~oci.response.Response`
28596
28596
 
28597
28597
  :example:
28598
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_virtual_circuit.py.html>`__ to see an example of how to use update_virtual_circuit API.
28598
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_virtual_circuit.py.html>`__ to see an example of how to use update_virtual_circuit API.
28599
28599
  """
28600
28600
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28601
28601
  required_arguments = ['virtualCircuitId']
@@ -28707,7 +28707,7 @@ class VirtualNetworkClient(object):
28707
28707
  :rtype: :class:`~oci.response.Response`
28708
28708
 
28709
28709
  :example:
28710
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_vlan.py.html>`__ to see an example of how to use update_vlan API.
28710
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_vlan.py.html>`__ to see an example of how to use update_vlan API.
28711
28711
  """
28712
28712
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28713
28713
  required_arguments = ['vlanId']
@@ -28814,7 +28814,7 @@ class VirtualNetworkClient(object):
28814
28814
  :rtype: :class:`~oci.response.Response`
28815
28815
 
28816
28816
  :example:
28817
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_vnic.py.html>`__ to see an example of how to use update_vnic API.
28817
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_vnic.py.html>`__ to see an example of how to use update_vnic API.
28818
28818
  """
28819
28819
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28820
28820
  required_arguments = ['vnicId']
@@ -28923,7 +28923,7 @@ class VirtualNetworkClient(object):
28923
28923
  :rtype: :class:`~oci.response.Response`
28924
28924
 
28925
28925
  :example:
28926
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/update_vtap.py.html>`__ to see an example of how to use update_vtap API.
28926
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/update_vtap.py.html>`__ to see an example of how to use update_vtap API.
28927
28927
  """
28928
28928
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
28929
28929
  required_arguments = ['vtapId']
@@ -29034,7 +29034,7 @@ class VirtualNetworkClient(object):
29034
29034
  :rtype: :class:`~oci.response.Response`
29035
29035
 
29036
29036
  :example:
29037
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/upgrade_drg.py.html>`__ to see an example of how to use upgrade_drg API.
29037
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/upgrade_drg.py.html>`__ to see an example of how to use upgrade_drg API.
29038
29038
  """
29039
29039
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29040
29040
  required_arguments = ['drgId']
@@ -29149,7 +29149,7 @@ class VirtualNetworkClient(object):
29149
29149
  :rtype: :class:`~oci.response.Response`
29150
29150
 
29151
29151
  :example:
29152
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/validate_byoasn.py.html>`__ to see an example of how to use validate_byoasn API.
29152
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/validate_byoasn.py.html>`__ to see an example of how to use validate_byoasn API.
29153
29153
  """
29154
29154
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29155
29155
  required_arguments = ['byoasnId']
@@ -29256,7 +29256,7 @@ class VirtualNetworkClient(object):
29256
29256
  :rtype: :class:`~oci.response.Response`
29257
29257
 
29258
29258
  :example:
29259
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/validate_byoip_range.py.html>`__ to see an example of how to use validate_byoip_range API.
29259
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/validate_byoip_range.py.html>`__ to see an example of how to use validate_byoip_range API.
29260
29260
  """
29261
29261
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29262
29262
  required_arguments = ['byoipRangeId']
@@ -29353,7 +29353,7 @@ class VirtualNetworkClient(object):
29353
29353
  :rtype: :class:`~oci.response.Response`
29354
29354
 
29355
29355
  :example:
29356
- Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.154.2/core/withdraw_byoip_range.py.html>`__ to see an example of how to use withdraw_byoip_range API.
29356
+ Click `here <https://docs.cloud.oracle.com/en-us/iaas/tools/python-sdk-examples/2.155.0/core/withdraw_byoip_range.py.html>`__ to see an example of how to use withdraw_byoip_range API.
29357
29357
  """
29358
29358
  # Required path and query arguments. These are in camelCase to replace values in service endpoints.
29359
29359
  required_arguments = ['byoipRangeId']