# 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).

import 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.config.from_file()


# Initialize service client with default config file
core_client = oci.core.VirtualNetworkClient(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(
    create_ip_sec_connection_details=oci.core.models.CreateIPSecConnectionDetails(
        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=["EXAMPLE--Value"],
        defined_tags={
            'EXAMPLE_KEY_hLPqe': {
                'EXAMPLE_KEY_Gf4Pb': 'EXAMPLE--Value'}},
        display_name="EXAMPLE-displayName-Value",
        freeform_tags={
            'EXAMPLE_KEY_eUmuL': 'EXAMPLE_VALUE_BToxKsrgkMXtJMemCkIy'},
        cpe_local_identifier="EXAMPLE-cpeLocalIdentifier-Value",
        cpe_local_identifier_type="HOSTNAME",
        tunnel_configuration=[
            oci.core.models.CreateIPSecConnectionTunnelDetails(
                display_name="EXAMPLE-displayName-Value",
                routing="BGP",
                ike_version="V1",
                shared_secret="EXAMPLE-sharedSecret-Value",
                bgp_session_config=oci.core.models.CreateIPSecTunnelBgpSessionDetails(
                    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="DISABLED",
                phase_one_config=oci.core.models.PhaseOneConfigDetails(
                    is_custom_phase_one_config=False,
                    authentication_algorithm="SHA2_384",
                    encryption_algorithm="AES_256_CBC",
                    diffie_helman_group="GROUP14",
                    lifetime_in_seconds=876),
                phase_two_config=oci.core.models.PhaseTwoConfigDetails(
                    is_custom_phase_two_config=True,
                    authentication_algorithm="HMAC_SHA1_128",
                    encryption_algorithm="AES_192_GCM",
                    lifetime_in_seconds=380,
                    is_pfs_enabled=True,
                    pfs_dh_group="GROUP19"),
                dpd_config=oci.core.models.DpdConfig(
                    dpd_mode="RESPOND_ONLY",
                    dpd_timeout_in_sec=22),
                oracle_tunnel_ip="EXAMPLE-oracleTunnelIp-Value",
                associated_virtual_circuits=["EXAMPLE--Value"],
                drg_route_table_id="ocid1.test.oc1..<unique_ID>EXAMPLE-drgRouteTableId-Value",
                encryption_domain_config=oci.core.models.CreateIPSecTunnelEncryptionDomainDetails(
                    oracle_traffic_selector=["EXAMPLE--Value"],
                    cpe_traffic_selector=["EXAMPLE--Value"]))]),
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

# Get the data from response
print(create_ip_sec_connection_response.data)