// 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{DefinedTags: map[string]map[string]interface{}{"EXAMPLE_KEY_is6nB": map[string]interface{}{"EXAMPLE_KEY_VpVti": "EXAMPLE--Value"}},
		DrgId:                  common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-drgId-Value"),
		StaticRoutes:           []string{"EXAMPLE--Value"},
		CompartmentId:          common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value"),
		CpeId:                  common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-cpeId-Value"),
		CpeLocalIdentifier:     common.String("EXAMPLE-cpeLocalIdentifier-Value"),
		CpeLocalIdentifierType: core.CreateIpSecConnectionDetailsCpeLocalIdentifierTypeIpAddress,
		DisplayName:            common.String("EXAMPLE-displayName-Value"),
		FreeformTags:           map[string]string{"EXAMPLE_KEY_EAQDL": "EXAMPLE_VALUE_Yg5b0zZd0ofO34Z02aep"},
		TunnelConfiguration: []core.CreateIpSecConnectionTunnelDetails{core.CreateIpSecConnectionTunnelDetails{SharedSecret: common.String("EXAMPLE-sharedSecret-Value"),
			AssociatedVirtualCircuits: []string{"EXAMPLE--Value"},
			BgpSessionConfig: &core.CreateIpSecTunnelBgpSessionDetails{OracleInterfaceIpv6: common.String("EXAMPLE-oracleInterfaceIpv6-Value"),
				CustomerBgpAsn:        common.String("EXAMPLE-customerBgpAsn-Value"),
				CustomerInterfaceIp:   common.String("EXAMPLE-customerInterfaceIp-Value"),
				CustomerInterfaceIpv6: common.String("EXAMPLE-customerInterfaceIpv6-Value"),
				OracleInterfaceIp:     common.String("EXAMPLE-oracleInterfaceIp-Value")},
			DisplayName: common.String("EXAMPLE-displayName-Value"),
			DpdConfig: &core.DpdConfig{DpdMode: core.DpdConfigDpdModeRespondOnly,
				DpdTimeoutInSec: common.Int(673)},
			EncryptionDomainConfig: &core.CreateIpSecTunnelEncryptionDomainDetails{OracleTrafficSelector: []string{"EXAMPLE--Value"},
				CpeTrafficSelector: []string{"EXAMPLE--Value"}},
			OracleTunnelIp: common.String("EXAMPLE-oracleTunnelIp-Value"),
			PhaseOneConfig: &core.PhaseOneConfigDetails{IsCustomPhaseOneConfig: common.Bool(false),
				LifetimeInSeconds:       common.Int(867),
				AuthenticationAlgorithm: core.PhaseOneConfigDetailsAuthenticationAlgorithmSha2256,
				DiffieHelmanGroup:       core.PhaseOneConfigDetailsDiffieHelmanGroupGroup14,
				EncryptionAlgorithm:     core.PhaseOneConfigDetailsEncryptionAlgorithm256Cbc},
			Routing:               core.CreateIpSecConnectionTunnelDetailsRoutingPolicy,
			DrgRouteTableId:       common.String("ocid1.test.oc1..<unique_ID>EXAMPLE-drgRouteTableId-Value"),
			IkeVersion:            core.CreateIpSecConnectionTunnelDetailsIkeVersionV1,
			NatTranslationEnabled: core.CreateIpSecConnectionTunnelDetailsNatTranslationEnabledEnabled,
			OracleInitiation:      core.CreateIpSecConnectionTunnelDetailsOracleInitiationResponderOnly,
			PhaseTwoConfig: &core.PhaseTwoConfigDetails{EncryptionAlgorithm: core.PhaseTwoConfigDetailsEncryptionAlgorithm256Cbc,
				IsCustomPhaseTwoConfig:  common.Bool(false),
				IsPfsEnabled:            common.Bool(false),
				LifetimeInSeconds:       common.Int(273),
				PfsDhGroup:              core.PhaseTwoConfigDetailsPfsDhGroupGroup2,
				AuthenticationAlgorithm: core.PhaseTwoConfigDetailsAuthenticationAlgorithmSha1128}}}},
		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)
}