# 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
create_ip_sec_connection_response =
  core_client.create_ip_sec_connection(
    OCI::Core::Models::CreateIPSecConnectionDetails.new(
      compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
      cpe_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-cpeId-Value',
      drg_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-drgId-Value',
      static_routes: %w[EXAMPLE--Value],
      defined_tags: {
        'EXAMPLE_KEY_TX4Yh' => { 'EXAMPLE_KEY_iRxwl' => 'EXAMPLE--Value' }
      },
      display_name: 'EXAMPLE-displayName-Value',
      freeform_tags: {
        'EXAMPLE_KEY_lgf1A' => 'EXAMPLE_VALUE_rVeEVANVLgV87nbrz7Vz'
      },
      cpe_local_identifier: 'EXAMPLE-cpeLocalIdentifier-Value',
      cpe_local_identifier_type: 'HOSTNAME',
      tunnel_configuration: [
        OCI::Core::Models::CreateIPSecConnectionTunnelDetails.new(
          display_name: 'EXAMPLE-displayName-Value',
          routing: 'STATIC',
          ike_version: 'V1',
          shared_secret: 'EXAMPLE-sharedSecret-Value',
          bgp_session_config:
            OCI::Core::Models::CreateIPSecTunnelBgpSessionDetails.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: 'INITIATOR_OR_RESPONDER',
          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_256_CBC',
              diffie_helman_group: 'GROUP14',
              lifetime_in_seconds: 802
            ),
          phase_two_config:
            OCI::Core::Models::PhaseTwoConfigDetails.new(
              is_custom_phase_two_config: true,
              authentication_algorithm: 'HMAC_SHA1_128',
              encryption_algorithm: 'AES_192_GCM',
              lifetime_in_seconds: 777,
              is_pfs_enabled: false,
              pfs_dh_group: 'GROUP5'
            ),
          dpd_config:
            OCI::Core::Models::DpdConfig.new(
              dpd_mode: 'INITIATE_AND_RESPOND', dpd_timeout_in_sec: 684
            ),
          oracle_tunnel_ip: 'EXAMPLE-oracleTunnelIp-Value',
          associated_virtual_circuits: %w[EXAMPLE--Value],
          drg_route_table_id:
            'ocid1.test.oc1..<unique_ID>EXAMPLE-drgRouteTableId-Value',
          encryption_domain_config:
            OCI::Core::Models::CreateIPSecTunnelEncryptionDomainDetails.new(
              oracle_traffic_selector: %w[EXAMPLE--Value],
              cpe_traffic_selector: %w[EXAMPLE--Value]
            )
        )
      ]
    )
  )

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