# 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_ip_sec_connection_tunnel_response =
  core_client.update_ip_sec_connection_tunnel(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-ipscId-Value',
    'ocid1.test.oc1..<unique_ID>EXAMPLE-tunnelId-Value',
    OCI::Core::Models::UpdateIPSecConnectionTunnelDetails.new(
      display_name: 'EXAMPLE-displayName-Value',
      routing: 'STATIC',
      ike_version: 'V1',
      bgp_session_config:
        OCI::Core::Models::UpdateIPSecTunnelBgpSessionDetails.new(
          oracle_interface_ip: 'EXAMPLE-oracleInterfaceIp-Value',
          customer_interface_ip: 'EXAMPLE-customerInterfaceIp-Value',
          oracle_interface_ipv6: 'EXAMPLE-oracleInterfaceIpv6-Value',
          customer_interface_ipv6: 'EXAMPLE-customerInterfaceIpv6-Value',
          customer_bgp_asn: 'EXAMPLE-customerBgpAsn-Value'
        ),
      oracle_initiation: 'RESPONDER_ONLY',
      nat_translation_enabled: 'ENABLED',
      phase_one_config:
        OCI::Core::Models::PhaseOneConfigDetails.new(
          is_custom_phase_one_config: true,
          authentication_algorithm: 'SHA2_256',
          encryption_algorithm: 'AES_128_CBC',
          diffie_helman_group: 'GROUP2',
          lifetime_in_seconds: 758
        ),
      phase_two_config:
        OCI::Core::Models::PhaseTwoConfigDetails.new(
          is_custom_phase_two_config: true,
          authentication_algorithm: 'HMAC_SHA2_256_128',
          encryption_algorithm: 'AES_128_CBC',
          lifetime_in_seconds: 884,
          is_pfs_enabled: false,
          pfs_dh_group: 'GROUP19'
        ),
      dpd_config:
        OCI::Core::Models::DpdConfig.new(
          dpd_mode: 'RESPOND_ONLY', dpd_timeout_in_sec: 112
        ),
      encryption_domain_config:
        OCI::Core::Models::UpdateIPSecTunnelEncryptionDomainDetails.new(
          oracle_traffic_selector: %w[EXAMPLE--Value],
          cpe_traffic_selector: %w[EXAMPLE--Value]
        )
    )
  )

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

Was this article helpful?