# 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_cross_connect_response =
core_client.create_cross_connect(
OCI::Core::Models::CreateCrossConnectDetails.new(
compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
location_name: 'EXAMPLE-locationName-Value',
port_speed_shape_name: 'EXAMPLE-portSpeedShapeName-Value',
cross_connect_group_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-crossConnectGroupId-Value',
defined_tags: {
'EXAMPLE_KEY_Ztu5y' => { 'EXAMPLE_KEY_fYnSb' => 'EXAMPLE--Value' }
},
display_name: 'EXAMPLE-displayName-Value',
far_cross_connect_or_cross_connect_group_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-farCrossConnectOrCrossConnectGroupId-Value',
freeform_tags: {
'EXAMPLE_KEY_YBV4C' => 'EXAMPLE_VALUE_af1lho41E3r72zoNu4Vj'
},
near_cross_connect_or_cross_connect_group_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-nearCrossConnectOrCrossConnectGroupId-Value',
customer_reference_name: 'EXAMPLE-customerReferenceName-Value',
macsec_properties:
OCI::Core::Models::CreateMacsecProperties.new(
state: 'DISABLED',
primary_key:
OCI::Core::Models::CreateMacsecKey.new(
connectivity_association_name_secret_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-connectivityAssociationNameSecretId-Value',
connectivity_association_key_secret_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-connectivityAssociationKeySecretId-Value'
),
encryption_cipher: 'AES256_GCM',
is_unprotected_traffic_allowed: true
)
)
)
# Get the data from response
puts "#{create_cross_connect_response.data}"