# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

require 'oci'

# Create a default config using DEFAULT profile in default location
# Refer to https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File for more info
config = OCI::ConfigFileLoader.load_config

# Initialize service client with default config file
core_client = OCI::Core::VirtualNetworkClient.new(config: config)

# Send the request to service, some parameters are not required, see API doc for more info
update_virtual_circuit_response =
  core_client.update_virtual_circuit(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-virtualCircuitId-Value',
    OCI::Core::Models::UpdateVirtualCircuitDetails.new(
      bandwidth_shape_name: 'EXAMPLE-bandwidthShapeName-Value',
      cross_connect_mappings: [
        OCI::Core::Models::CrossConnectMapping.new(
          bgp_md5_auth_key: 'EXAMPLE-bgpMd5AuthKey-Value',
          cross_connect_or_cross_connect_group_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-crossConnectOrCrossConnectGroupId-Value',
          customer_bgp_peering_ip: 'EXAMPLE-customerBgpPeeringIp-Value',
          oracle_bgp_peering_ip: 'EXAMPLE-oracleBgpPeeringIp-Value',
          customer_bgp_peering_ipv6: 'EXAMPLE-customerBgpPeeringIpv6-Value',
          oracle_bgp_peering_ipv6: 'EXAMPLE-oracleBgpPeeringIpv6-Value',
          vlan: 13_588_604
        )
      ],
      routing_policy: %w[ORACLE_SERVICE_NETWORK],
      bgp_admin_state: 'ENABLED',
      is_bfd_enabled: true,
      is_transport_mode: false,
      customer_bgp_asn: 154,
      customer_asn: 833,
      defined_tags: {
        'EXAMPLE_KEY_XyvBW' => { 'EXAMPLE_KEY_AbDfx' => 'EXAMPLE--Value' }
      },
      display_name: 'EXAMPLE-displayName-Value',
      freeform_tags: {
        'EXAMPLE_KEY_oAwRk' => 'EXAMPLE_VALUE_lahJlPp0J75K7X1DUrXu'
      },
      gateway_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-gatewayId-Value',
      provider_state: 'INACTIVE',
      provider_service_key_name: 'EXAMPLE-providerServiceKeyName-Value',
      reference_comment: 'EXAMPLE-referenceComment-Value',
      ip_mtu: 'MTU_1500'
    )
  )

# Get the data from response
puts "#{update_virtual_circuit_response.data}"

Was this article helpful?