# 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_V3NYH' => { 'EXAMPLE_KEY_8Xe33' => 'EXAMPLE--Value' }
},
display_name: 'EXAMPLE-displayName-Value',
freeform_tags: {
'EXAMPLE_KEY_ELzH7' => 'EXAMPLE_VALUE_9wuRaz4nJgweFmdTDJbS'
},
cpe_local_identifier: 'EXAMPLE-cpeLocalIdentifier-Value',
cpe_local_identifier_type: 'IP_ADDRESS',
tunnel_configuration: [
OCI::Core::Models::CreateIPSecConnectionTunnelDetails.new(
display_name: 'EXAMPLE-displayName-Value',
routing: 'STATIC',
ike_version: 'V2',
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: 'AUTO',
phase_one_config:
OCI::Core::Models::PhaseOneConfigDetails.new(
is_custom_phase_one_config: false,
authentication_algorithm: 'SHA2_384',
encryption_algorithm: 'AES_128_CBC',
diffie_helman_group: 'GROUP5',
lifetime_in_seconds: 567
),
phase_two_config:
OCI::Core::Models::PhaseTwoConfigDetails.new(
is_custom_phase_two_config: true,
authentication_algorithm: 'HMAC_SHA1_128',
encryption_algorithm: 'AES_192_CBC',
lifetime_in_seconds: 896,
is_pfs_enabled: true,
pfs_dh_group: 'GROUP5'
),
dpd_config:
OCI::Core::Models::DpdConfig.new(
dpd_mode: 'RESPOND_ONLY', dpd_timeout_in_sec: 186
),
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}"