# 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
update_security_list_response =
  core_client.update_security_list(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-securityListId-Value',
    OCI::Core::Models::UpdateSecurityListDetails.new(
      defined_tags: {
        'EXAMPLE_KEY_G7C1e' => { 'EXAMPLE_KEY_wGT9j' => 'EXAMPLE--Value' }
      },
      display_name: 'EXAMPLE-displayName-Value',
      egress_security_rules: [
        OCI::Core::Models::EgressSecurityRule.new(
          destination: 'EXAMPLE-destination-Value',
          protocol: 'EXAMPLE-protocol-Value',
          destination_type: 'SERVICE_CIDR_BLOCK',
          icmp_options: OCI::Core::Models::IcmpOptions.new(type: 169, code: 0),
          is_stateless: true,
          tcp_options:
            OCI::Core::Models::TcpOptions.new(
              destination_port_range:
                OCI::Core::Models::PortRange.new(max: 16_579, min: 41_087),
              source_port_range:
                OCI::Core::Models::PortRange.new(max: 23_250, min: 28_066)
            ),
          udp_options:
            OCI::Core::Models::UdpOptions.new(
              destination_port_range:
                OCI::Core::Models::PortRange.new(max: 24_520, min: 62_790),
              source_port_range:
                OCI::Core::Models::PortRange.new(max: 20_626, min: 62_596)
            ),
          description: 'EXAMPLE-description-Value'
        )
      ],
      freeform_tags: {
        'EXAMPLE_KEY_hXxPM' => 'EXAMPLE_VALUE_4il3CqIWRYWdmO2zO7Ag'
      },
      ingress_security_rules: [
        OCI::Core::Models::IngressSecurityRule.new(
          protocol: 'EXAMPLE-protocol-Value',
          source: 'EXAMPLE-source-Value',
          icmp_options: OCI::Core::Models::IcmpOptions.new(type: 146, code: 15),
          is_stateless: true,
          source_type: 'CIDR_BLOCK',
          tcp_options:
            OCI::Core::Models::TcpOptions.new(
              destination_port_range:
                OCI::Core::Models::PortRange.new(max: 58_203, min: 57_913),
              source_port_range:
                OCI::Core::Models::PortRange.new(max: 11_148, min: 36_374)
            ),
          udp_options:
            OCI::Core::Models::UdpOptions.new(
              destination_port_range:
                OCI::Core::Models::PortRange.new(max: 52_027, min: 20_931),
              source_port_range:
                OCI::Core::Models::PortRange.new(max: 52_653, min: 31_597)
            ),
          description: 'EXAMPLE-description-Value'
        )
      ]
    )
  )

# Get the data from response
puts "#{update_security_list_response.data}"

Was this article helpful?