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

package main

import (
	"context"
	"fmt"

	"github.com/oracle/oci-go-sdk/v65/common"
	"github.com/oracle/oci-go-sdk/v65/core"
	"github.com/oracle/oci-go-sdk/v65/example/helpers"
)

func ExampleCreateIPSecConnection() {
	// Create a default authentication provider that uses the DEFAULT
	// profile in the configuration file.
	// Refer to <see href="https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File>the public documentation</see> on how to prepare a configuration file.
	client, err := core.NewVirtualNetworkClientWithConfigurationProvider(common.DefaultConfigProvider())
	helpers.FatalIfError(err)

	// Create a request and dependent object(s).

	req := core.CreateIPSecConnectionRequest{CreateIpSecConnectionDetails: core.CreateIpSecConnectionDetails{TunnelConfiguration: []core.CreateIpSecConnectionTunnelDetails{core.CreateIpSecConnectionTunnelDetails{DisplayName: common.String("EXAMPLE-displayName-Value"),
		DpdConfig: &core.DpdConfig{DpdMode: core.DpdConfigDpdModeInitiateAndRespond,
			DpdTimeoutInSec: common.Int(610)},
		DrgRouteTableId:  common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-drgRouteTableId-Value"),
		IkeVersion:       core.CreateIpSecConnectionTunnelDetailsIkeVersionV2,
		OracleInitiation: core.CreateIpSecConnectionTunnelDetailsOracleInitiationResponderOnly,
		PhaseOneConfig: &core.PhaseOneConfigDetails{LifetimeInSeconds: common.Int(25),
			AuthenticationAlgorithm: core.PhaseOneConfigDetailsAuthenticationAlgorithmSha2384,
			DiffieHelmanGroup:       core.PhaseOneConfigDetailsDiffieHelmanGroupGroup20,
			EncryptionAlgorithm:     core.PhaseOneConfigDetailsEncryptionAlgorithm128Cbc,
			IsCustomPhaseOneConfig:  common.Bool(false)},
		PhaseTwoConfig: &core.PhaseTwoConfigDetails{IsCustomPhaseTwoConfig: common.Bool(false),
			IsPfsEnabled:            common.Bool(true),
			LifetimeInSeconds:       common.Int(296),
			PfsDhGroup:              core.PhaseTwoConfigDetailsPfsDhGroupGroup14,
			AuthenticationAlgorithm: core.PhaseTwoConfigDetailsAuthenticationAlgorithmSha2256128,
			EncryptionAlgorithm:     core.PhaseTwoConfigDetailsEncryptionAlgorithm128Cbc},
		AssociatedVirtualCircuits: []string{"EXAMPLE--Value"},
		EncryptionDomainConfig: &core.CreateIpSecTunnelEncryptionDomainDetails{CpeTrafficSelector: []string{"EXAMPLE--Value"},
			OracleTrafficSelector: []string{"EXAMPLE--Value"}},
		NatTranslationEnabled: core.CreateIpSecConnectionTunnelDetailsNatTranslationEnabledDisabled,
		OracleTunnelIp:        common.String("EXAMPLE-oracleTunnelIp-Value"),
		Routing:               core.CreateIpSecConnectionTunnelDetailsRoutingStatic,
		SharedSecret:          common.String("EXAMPLE-sharedSecret-Value"),
		BgpSessionConfig: &core.CreateIpSecTunnelBgpSessionDetails{CustomerBgpAsn: common.String("EXAMPLE-customerBgpAsn-Value"),
			CustomerInterfaceIp:   common.String("EXAMPLE-customerInterfaceIp-Value"),
			CustomerInterfaceIpv6: common.String("EXAMPLE-customerInterfaceIpv6-Value"),
			OracleInterfaceIp:     common.String("EXAMPLE-oracleInterfaceIp-Value"),
			OracleInterfaceIpv6:   common.String("EXAMPLE-oracleInterfaceIpv6-Value")}}},
		CpeId:                  common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-cpeId-Value"),
		CpeLocalIdentifier:     common.String("EXAMPLE-cpeLocalIdentifier-Value"),
		CpeLocalIdentifierType: core.CreateIpSecConnectionDetailsCpeLocalIdentifierTypeIpAddress,
		DrgId:                  common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-drgId-Value"),
		FreeformTags:           map[string]string{"EXAMPLE_KEY_IW8QU": "EXAMPLE_VALUE_kB0R1oZJ6DMsYwYCW2CD"},
		StaticRoutes:           []string{"EXAMPLE--Value"},
		CompartmentId:          common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
		DefinedTags:            map[string]map[string]interface{}{"EXAMPLE_KEY_vYyvy": map[string]interface{}{"EXAMPLE_KEY_rDagy": "EXAMPLE--Value"}},
		DisplayName:            common.String("EXAMPLE-displayName-Value")},
		OpcRetryToken: common.String("EXAMPLE-opcRetryToken-Value")}

	// Send the request using the service client
	resp, err := client.CreateIPSecConnection(context.Background(), req)
	helpers.FatalIfError(err)

	// Retrieve value from the response.
	fmt.Println(resp)
}