# 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_security_list_response =
core_client.create_security_list(
OCI::Core::Models::CreateSecurityListDetails.new(
compartment_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value',
egress_security_rules: [
OCI::Core::Models::EgressSecurityRule.new(
destination: 'EXAMPLE-destination-Value',
protocol: 'EXAMPLE-protocol-Value',
destination_type: 'CIDR_BLOCK',
icmp_options: OCI::Core::Models::IcmpOptions.new(type: 66, code: 3),
is_stateless: true,
tcp_options:
OCI::Core::Models::TcpOptions.new(
destination_port_range:
OCI::Core::Models::PortRange.new(max: 56_543, min: 12_076),
source_port_range:
OCI::Core::Models::PortRange.new(max: 54_990, min: 3431)
),
udp_options:
OCI::Core::Models::UdpOptions.new(
destination_port_range:
OCI::Core::Models::PortRange.new(max: 60_173, min: 128),
source_port_range:
OCI::Core::Models::PortRange.new(max: 11_387, min: 45_807)
),
description: 'EXAMPLE-description-Value'
)
],
ingress_security_rules: [
OCI::Core::Models::IngressSecurityRule.new(
protocol: 'EXAMPLE-protocol-Value',
source: 'EXAMPLE-source-Value',
icmp_options: OCI::Core::Models::IcmpOptions.new(type: 248, code: 15),
is_stateless: true,
source_type: 'SERVICE_CIDR_BLOCK',
tcp_options:
OCI::Core::Models::TcpOptions.new(
destination_port_range:
OCI::Core::Models::PortRange.new(max: 39_197, min: 16_574),
source_port_range:
OCI::Core::Models::PortRange.new(max: 11_145, min: 48_047)
),
udp_options:
OCI::Core::Models::UdpOptions.new(
destination_port_range:
OCI::Core::Models::PortRange.new(max: 8588, min: 42_317),
source_port_range:
OCI::Core::Models::PortRange.new(max: 3287, min: 45_582)
),
description: 'EXAMPLE-description-Value'
)
],
vcn_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-vcnId-Value',
defined_tags: {
'EXAMPLE_KEY_hnvKo' => { 'EXAMPLE_KEY_ZWPaM' => 'EXAMPLE--Value' }
},
display_name: 'EXAMPLE-displayName-Value',
freeform_tags: {
'EXAMPLE_KEY_Jhz4E' => 'EXAMPLE_VALUE_LxeaTMM6ZoDYqnBGN0Oa'
}
)
)
# Get the data from response
puts "#{create_security_list_response.data}"