# 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
update_ip_sec_connection_tunnel_response = core_client.update_ip_sec_connection_tunnel(
    ipsc_id="ocid1.test.oc1..<unique_ID>EXAMPLE-ipscId-Value",
    tunnel_id="ocid1.test.oc1..<unique_ID>EXAMPLE-tunnelId-Value",
    update_ip_sec_connection_tunnel_details=oci.core.models.UpdateIPSecConnectionTunnelDetails(
        display_name="EXAMPLE-displayName-Value",
        routing="STATIC",
        ike_version="V2",
        bgp_session_config=oci.core.models.UpdateIPSecTunnelBgpSessionDetails(
            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(
            is_custom_phase_one_config=True,
            authentication_algorithm="SHA2_256",
            encryption_algorithm="AES_192_CBC",
            diffie_helman_group="GROUP24",
            lifetime_in_seconds=324),
        phase_two_config=oci.core.models.PhaseTwoConfigDetails(
            is_custom_phase_two_config=True,
            authentication_algorithm="HMAC_SHA1_128",
            encryption_algorithm="AES_256_GCM",
            lifetime_in_seconds=299,
            is_pfs_enabled=True,
            pfs_dh_group="GROUP14"),
        dpd_config=oci.core.models.DpdConfig(
            dpd_mode="RESPOND_ONLY",
            dpd_timeout_in_sec=218),
        encryption_domain_config=oci.core.models.UpdateIPSecTunnelEncryptionDomainDetails(
            oracle_traffic_selector=["EXAMPLE--Value"],
            cpe_traffic_selector=["EXAMPLE--Value"])),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="PBCXXIG8RBWV42G1SAQB<unique_ID>")

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