Network Load Balancer Common Types

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_T Type

The configuration of a backend server that is a member of a network load balancer backend set. For more information, see Managing Backend Servers.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  ip_address varchar2(32767),
  target_id varchar2(32767),
  port number,
  weight number,
  is_drain number,
  is_backup number,
  is_offline number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_t (
    name varchar2,
    ip_address varchar2,
    target_id varchar2,
    port number,
    weight number,
    is_drain number,
    is_backup number,
    is_offline number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) A read-only field showing the IP address/IP OCID and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`, or `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>:443` or `10.0.0.3:0`

ip_address

(optional) The IP address of the backend server. Example: `10.0.0.3`

target_id

(optional) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`

port

(required) The communication port for the backend server. Example: `8080`

weight

(optional) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see How Network Load Balancing Policies Work. Example: `3`

is_drain

(optional) Whether the network load balancer should drain this server. Servers marked \"isDrain\" receive no incoming traffic. Example: `false`

is_backup

(optional) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as \"isBackup\" fail the health check policy. Example: `false`

is_offline

(optional) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SUMMARY_T Type

The configuration of a backend server that is a member of a network load balancer backend set. For more information, see Managing Backend Servers.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  ip_address varchar2(32767),
  target_id varchar2(32767),
  port number,
  weight number,
  is_drain number,
  is_backup number,
  is_offline number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_summary_t (
    name varchar2,
    ip_address varchar2,
    target_id varchar2,
    port number,
    weight number,
    is_drain number,
    is_backup number,
    is_offline number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) A read-only field showing the IP address/IP OCID and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`, or `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>:443` or `10.0.0.3:0`

ip_address

(optional) The IP address of the backend server. Example: `10.0.0.3`

target_id

(optional) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`

port

(required) The communication port for the backend server. Example: `8080`

weight

(optional) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see How Network Load Balancing Policies Work. Example: `3`

is_drain

(optional) Whether the network load balancer should drain this server. Servers marked \"isDrain\" receive no incoming traffic. Example: `false`

is_backup

(optional) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as \"isBackup\" fail the health check policy. Example: `false`

is_offline

(optional) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_backend_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_backend_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_COLLECTION_T Type

Wrapper object for an array of BackendSummary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_backend_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_collection_t (
    items dbms_cloud_oci_network_load_balancer_backend_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of BackendSummary objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_DETAILS_T Type

The network network load balancing configuration details of a backend server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  ip_address varchar2(32767),
  target_id varchar2(32767),
  port number,
  weight number,
  is_backup number,
  is_drain number,
  is_offline number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_details_t (
    name varchar2,
    ip_address varchar2,
    target_id varchar2,
    port number,
    weight number,
    is_backup number,
    is_drain number,
    is_offline number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) A read-only field showing the IP address/OCID and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`, or `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>:443` or `10.0.0.3:0`

ip_address

(optional) The IP address of the backend server. Example: `10.0.0.3`

target_id

(optional) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`

port

(required) The communication port for the backend server. Example: `8080`

weight

(optional) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see How Network Load Balancing Policies Work. Example: `3`

is_backup

(optional) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as \"isBackup\" fail the health check policy. Example: `false`

is_drain

(optional) Whether the network load balancer should drain this server. Servers marked \"isDrain\" receive no incoming traffic. Example: `false`

is_offline

(optional) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_HEALTH_CHECK_RESULT_T Type

Information about a single backend server health check result reported by a network load balancer.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_health_check_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_timestamp timestamp with time zone,
  health_check_status varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_health_check_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_health_check_result_t (
    l_timestamp timestamp with time zone,
    health_check_status varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

l_timestamp

(required) The date and time the data was retrieved, in the format defined by RFC3339. Example: `2020-05-01T18:28:11+00:00`

health_check_status

(required) The result of the most recent health check.

Allowed values are: 'OK', 'INVALID_STATUS_CODE', 'TIMED_OUT', 'HEALTH_PAYLOAD_MISMATCH', 'CONNECT_FAILED', 'UNKNOWN'

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_HEALTH_CHECK_RESULT_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_health_check_result_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_health_check_result_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_health_check_result_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_HEALTH_T Type

The health status of the specified backend server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_health_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  health_check_results dbms_cloud_oci_network_load_balancer_health_check_result_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_health_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_health_t (
    status varchar2,
    health_check_results dbms_cloud_oci_network_load_balancer_health_check_result_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(required) The general health status of the specified backend server. * **OK:** All health check probes return `OK` * **WARNING:** At least one of the health check probes does not return `OK` * **CRITICAL:** None of the health check probes return `OK`. * * **UNKNOWN:** One of the health checks probes return `UNKNOWN`, * or the system is unable to retrieve metrics at this time.

Allowed values are: 'OK', 'WARNING', 'CRITICAL', 'UNKNOWN'

health_check_results

(required) A list of the most recent health check results returned for the specified backend server.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_HEALTH_CHECKER_T Type

The health check policy configuration. For more information, see Editing Health Check Policies.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_health_checker_t FORCE AUTHID CURRENT_USER IS OBJECT (
  protocol varchar2(32767),
  port number,
  retries number,
  timeout_in_millis number,
  interval_in_millis number,
  url_path varchar2(32767),
  response_body_regex varchar2(32767),
  return_code number,
  request_data clob,
  response_data clob,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_health_checker_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_health_checker_t (
    protocol varchar2,
    port number,
    retries number,
    timeout_in_millis number,
    interval_in_millis number,
    url_path varchar2,
    response_body_regex varchar2,
    return_code number,
    request_data clob,
    response_data clob
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

protocol

(required) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`

Allowed values are: 'HTTP', 'HTTPS', 'TCP', 'UDP'

port

(optional) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`

retries

(optional) The number of retries to attempt before a backend server is considered \"unhealthy\". This number also applies when recovering a server to the \"healthy\" state. The default value is 3. Example: `3`

timeout_in_millis

(optional) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: `3000`

interval_in_millis

(optional) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`

url_path

(optional) The path against which to run the health check. Example: `/healthcheck`

response_body_regex

(optional) A regular expression for parsing the response body from the backend server. Example: `^((?!false).|\\s)*$`

return_code

(optional) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as \"200\". Example: `200`

request_data

(optional) Base64 encoded pattern to be sent as UDP or TCP health check probe.

response_data

(optional) Base64 encoded pattern to be validated as UDP or TCP health check probe response.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_backend_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_backend_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SET_T Type

The configuration of a network load balancer backend set. For more information about backend set configuration, see Managing Backend Sets. **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_set_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  policy varchar2(32767),
  is_preserve_source number,
  ip_version varchar2(32767),
  backends dbms_cloud_oci_network_load_balancer_backend_tbl,
  health_checker dbms_cloud_oci_network_load_balancer_health_checker_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_t (
    name varchar2,
    policy varchar2,
    is_preserve_source number,
    ip_version varchar2,
    backends dbms_cloud_oci_network_load_balancer_backend_tbl,
    health_checker dbms_cloud_oci_network_load_balancer_health_checker_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A user-friendly name for the backend set that must be unique and cannot be changed. Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. Example: `example_backend_set`

policy

(optional) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`

Allowed values are: 'TWO_TUPLE', 'THREE_TUPLE', 'FIVE_TUPLE'

is_preserve_source

(optional) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.

ip_version

(optional) IP version associated with the backend set.

Allowed values are: 'IPV4', 'IPV6'

backends

(optional) Array of backends.

health_checker

(required)

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SET_SUMMARY_T Type

The configuration of a network load balancer backend set. For more information about backend set configuration, see Managing Backend Sets. **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_set_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  policy varchar2(32767),
  is_preserve_source number,
  ip_version varchar2(32767),
  backends dbms_cloud_oci_network_load_balancer_backend_tbl,
  health_checker dbms_cloud_oci_network_load_balancer_health_checker_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_summary_t (
    name varchar2,
    policy varchar2,
    is_preserve_source number,
    ip_version varchar2,
    backends dbms_cloud_oci_network_load_balancer_backend_tbl,
    health_checker dbms_cloud_oci_network_load_balancer_health_checker_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A user-friendly name for the backend set that must be unique and cannot be changed. Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. Example: `example_backend_set`

policy

(required) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`

Allowed values are: 'TWO_TUPLE', 'THREE_TUPLE', 'FIVE_TUPLE'

is_preserve_source

(optional) If this parameter is enabled, the network load balancer preserves the source IP of the packet forwarded to the backend servers. Backend servers see the original source IP. If the `isPreserveSourceDestination` parameter is enabled for the network load balancer resource, this parameter cannot be disabled. The value is true by default.

ip_version

(optional) IP version associated with the backend set.

Allowed values are: 'IPV4', 'IPV6'

backends

(required) An array of backends.

health_checker

(required)

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_backend_set_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_set_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_backend_set_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SET_COLLECTION_T Type

Wrapper object for an array of `BackendSetSummary` objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_set_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_backend_set_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_collection_t (
    items dbms_cloud_oci_network_load_balancer_backend_set_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of `BackendSetSummary` objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SET_DETAILS_T Type

The configuration of a network load balancer backend set. For more information about backend set configuration, see Managing Backend Sets. **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_set_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  policy varchar2(32767),
  ip_version varchar2(32767),
  is_preserve_source number,
  backends dbms_cloud_oci_network_load_balancer_backend_tbl,
  health_checker dbms_cloud_oci_network_load_balancer_health_checker_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_details_t (
    policy varchar2,
    ip_version varchar2,
    is_preserve_source number,
    backends dbms_cloud_oci_network_load_balancer_backend_tbl,
    health_checker dbms_cloud_oci_network_load_balancer_health_checker_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

policy

(optional) The network load balancer policy for the backend set. Example: `FIVE_TUPLE`

Allowed values are: 'TWO_TUPLE', 'THREE_TUPLE', 'FIVE_TUPLE'

ip_version

(optional) IP version associated with the backend set.

Allowed values are: 'IPV4', 'IPV6'

is_preserve_source

(optional) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.

backends

(optional) An array of backends.

health_checker

(required)

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_SET_HEALTH_T Type

The health status details for a backend set. This object does not explicitly enumerate backend servers with a status of `OK`. However, the backend sets are included in the `totalBackendCount` sum.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_set_health_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  warning_state_backend_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  critical_state_backend_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  unknown_state_backend_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  total_backend_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_health_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_backend_set_health_t (
    status varchar2,
    warning_state_backend_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    critical_state_backend_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    unknown_state_backend_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    total_backend_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(required) Overall health status of the backend set. * **OK:** All backend servers in the backend set return a status of `OK`. * **WARNING:** Half or more of the backend servers in a backend set return a status of `OK` and at least one backend server returns a status of `WARNING`, `CRITICAL`, or `UNKNOWN`. * **CRITICAL:** Fewer than half of the backend servers in a backend set return a status of `OK`. * **UNKNOWN:** If no probes have yet been sent to the backends, or the system is unable to retrieve metrics from the backends.

Allowed values are: 'OK', 'WARNING', 'CRITICAL', 'UNKNOWN'

warning_state_backend_names

(required) A list of backend servers that are currently in the `WARNING` health state. The list identifies each backend server by IP address or OCID and port. Example: `10.0.0.3:8080` or `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>:8080`

critical_state_backend_names

(required) A list of backend servers that are currently in the `CRITICAL` health state. The list identifies each backend server by IP address and port. Example: `10.0.0.4:8080`

unknown_state_backend_names

(required) A list of backend servers that are currently in the `UNKNOWN` health state. The list identifies each backend server by IP address and port. Example: `10.0.0.5:8080`

total_backend_count

(required) The total number of backend servers in this backend set. Example: `7`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_CHANGE_NETWORK_LOAD_BALANCER_COMPARTMENT_DETAILS_T Type

The configuration details for moving a network load balancer to a different compartment. **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_change_network_load_balancer_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_change_network_load_balancer_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_change_network_load_balancer_compartment_details_t (
    compartment_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment to which to move the network load balancer.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_CREATE_BACKEND_DETAILS_T Type

The configuration of a backend server that is a member of a network load balancer backend set. For more information, see Managing Backend Servers.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_create_backend_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  ip_address varchar2(32767),
  target_id varchar2(32767),
  port number,
  weight number,
  is_drain number,
  is_backup number,
  is_offline number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_backend_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_backend_details_t (
    name varchar2,
    ip_address varchar2,
    target_id varchar2,
    port number,
    weight number,
    is_drain number,
    is_backup number,
    is_offline number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(optional) Optional unique name identifying the backend within the backend set. If not specified, then one will be generated. Example: `webServer1`

ip_address

(optional) The IP address of the backend server. Example: `10.0.0.3`

target_id

(optional) The IP OCID/Instance OCID associated with the backend server. Example: `ocid1.privateip..oc1.<var>&lt;unique_ID&gt;</var>`

port

(required) The communication port for the backend server. Example: `8080`

weight

(optional) The network load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see How Network Load Balancing Policies Work. Example: `3`

is_drain

(optional) Whether the network load balancer should drain this server. Servers marked \"isDrain\" receive no incoming traffic. Example: `false`

is_backup

(optional) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as \"isBackup\" fail the health check policy. Example: `false`

is_offline

(optional) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_HEALTH_CHECKER_DETAILS_T Type

The health check policy configuration. For more information, see Editing Health Check Policies.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_health_checker_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  protocol varchar2(32767),
  port number,
  retries number,
  timeout_in_millis number,
  interval_in_millis number,
  url_path varchar2(32767),
  response_body_regex varchar2(32767),
  return_code number,
  request_data clob,
  response_data clob,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_health_checker_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_health_checker_details_t (
    protocol varchar2,
    port number,
    retries number,
    timeout_in_millis number,
    interval_in_millis number,
    url_path varchar2,
    response_body_regex varchar2,
    return_code number,
    request_data clob,
    response_data clob
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

protocol

(required) The protocol the health check must use; either HTTP or HTTPS, or UDP or TCP. Example: `HTTP`

Allowed values are: 'HTTP', 'HTTPS', 'TCP', 'UDP'

port

(optional) The backend server port against which to run the health check. If the port is not specified, then the network load balancer uses the port information from the `Backend` object. The port must be specified if the backend port is 0. Example: `8080`

retries

(optional) The number of retries to attempt before a backend server is considered \"unhealthy\". This number also applies when recovering a server to the \"healthy\" state. The default value is 3. Example: `3`

timeout_in_millis

(optional) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. The default value is 3000 (3 seconds). Example: `3000`

interval_in_millis

(optional) The interval between health checks, in milliseconds. The default value is 10000 (10 seconds). Example: `10000`

url_path

(optional) The path against which to run the health check. Example: `/healthcheck`

response_body_regex

(optional) A regular expression for parsing the response body from the backend server. Example: `^((?!false).|\\s)*$`

return_code

(optional) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as \"200\". Example: `200`

request_data

(optional) Base64 encoded pattern to be sent as UDP or TCP health check probe.

response_data

(optional) Base64 encoded pattern to be validated as UDP or TCP health check probe response.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_BACKEND_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_backend_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_backend_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_backend_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_CREATE_BACKEND_SET_DETAILS_T Type

The configuration details for creating a backend set in a network load balancer. For more information about backend set configuration, see Managing Backend Sets. **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_create_backend_set_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  policy varchar2(32767),
  is_preserve_source number,
  ip_version varchar2(32767),
  backends dbms_cloud_oci_network_load_balancer_backend_details_tbl,
  health_checker dbms_cloud_oci_network_load_balancer_health_checker_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_backend_set_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_backend_set_details_t (
    name varchar2,
    policy varchar2,
    is_preserve_source number,
    ip_version varchar2,
    backends dbms_cloud_oci_network_load_balancer_backend_details_tbl,
    health_checker dbms_cloud_oci_network_load_balancer_health_checker_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A user-friendly name for the backend set that must be unique and cannot be changed. Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information. Example: `example_backend_set`

policy

(required) The network load balancer policy for the backend set. Example: `FIVE_TUPLE``

Allowed values are: 'TWO_TUPLE', 'THREE_TUPLE', 'FIVE_TUPLE'

is_preserve_source

(optional) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.

ip_version

(optional) IP version associated with the backend set.

Allowed values are: 'IPV4', 'IPV6'

backends

(optional) An array of backends to be associated with the backend set.

health_checker

(required)

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_CREATE_LISTENER_DETAILS_T Type

The configuration of the listener. For more information about backend set configuration, see Managing Load Balancer Listeners.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_create_listener_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  default_backend_set_name varchar2(32767),
  port number,
  protocol varchar2(32767),
  ip_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_listener_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_listener_details_t (
    name varchar2,
    default_backend_set_name varchar2,
    port number,
    protocol varchar2,
    ip_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`

default_backend_set_name

(required) The name of the associated backend set. Example: `example_backend_set`

port

(required) The communication port for the listener. Example: `80`

protocol

(required) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). To get a list of valid protocols, use the LIST_NETWORK_LOAD_BALANCERS_PROTOCOLS Function operation. Example: `TCP`

Allowed values are: 'ANY', 'TCP', 'UDP', 'TCP_AND_UDP'

ip_version

(optional) IP version associated with the listener.

Allowed values are: 'IPV4', 'IPV6'

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_RESERVED_IP_T Type

An object representing a reserved IP address to be attached or that is already attached to a network load balancer.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_reserved_ip_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_reserved_ip_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_reserved_ip_t (
    id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) OCID of the reserved public IP address created with the virtual cloud network. Reserved public IP addresses are IP addresses that are registered using the virtual cloud network API. Create a reserved public IP address. When you create the network load balancer, enter the OCID of the reserved public IP address in the reservedIp field to attach the IP address to the network load balancer. This task configures the network load balancer to listen to traffic on this IP address. Reserved public IP addresses are not deleted when the network load balancer is deleted. The IP addresses become unattached from the network load balancer. Example: \"ocid1.publicip.oc1.phx.unique_ID\"

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_LISTENER_DETAILS_T Type

The listener's configuration. For more information about backend set configuration, see Managing Load Balancer Listeners.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_listener_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  default_backend_set_name varchar2(32767),
  ip_version varchar2(32767),
  port number,
  protocol varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_details_t (
    name varchar2,
    default_backend_set_name varchar2,
    ip_version varchar2,
    port number,
    protocol varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`

default_backend_set_name

(required) The name of the associated backend set. Example: `example_backend_set`

ip_version

(optional) IP version associated with the listener.

Allowed values are: 'IPV4', 'IPV6'

port

(required) The communication port for the listener. Example: `80`

protocol

(required) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). To get a list of valid protocols, use the LIST_NETWORK_LOAD_BALANCERS_PROTOCOLS Function operation. Example: `TCP`

Allowed values are: 'ANY', 'TCP', 'UDP', 'TCP_AND_UDP'

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_RESERVED_IP_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_reserved_ip_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_reserved_ip_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_reserved_ip_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_CREATE_NETWORK_LOAD_BALANCER_DETAILS_T Type

The properties that define a network load balancer. For more information, see Managing a network load balancer. To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, then contact an administrator. If you are an administrator who writes policies to give users access, then see Getting Started with Policies. For information about endpoints and signing API requests, see About the API. For information about available SDKs and tools, see SDKS and Other Tools.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_create_network_load_balancer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  is_preserve_source_destination number,
  reserved_ips dbms_cloud_oci_network_load_balancer_reserved_ip_tbl,
  is_private number,
  subnet_id varchar2(32767),
  network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  nlb_ip_version varchar2(32767),
  listeners json_element_t,
  backend_sets json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_network_load_balancer_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_create_network_load_balancer_details_t (
    compartment_id varchar2,
    display_name varchar2,
    is_preserve_source_destination number,
    reserved_ips dbms_cloud_oci_network_load_balancer_reserved_ip_tbl,
    is_private number,
    subnet_id varchar2,
    network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    nlb_ip_version varchar2,
    listeners json_element_t,
    backend_sets json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment containing the network load balancer.

display_name

(required) Network load balancer identifier, which can be renamed.

is_preserve_source_destination

(optional) This parameter can be enabled only if backends are compute OCIDs. When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC, and packets are sent to the backend with the entire IP header intact.

reserved_ips

(optional) An array of reserved Ips.

is_private

(optional) Whether the network load balancer has a virtual cloud network-local (private) IP address. If \"true\", then the service assigns a private IP address to the network load balancer. If \"false\", then the service assigns a public IP address to the network load balancer. A public network load balancer is accessible from the internet, depending on the security list rules for your virtual cloud network. For more information about public and private network load balancers, see How Network Load Balancing Works. This value is true by default. Example: `true`

subnet_id

(required) The subnet in which the network load balancer is spawned OCIDs.

network_security_group_ids

(optional) An array of network security groups OCIDs associated with the network load balancer. During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups. The benefits of associating the network load balancer with network security groups include: * Network security groups define network security rules to govern ingress and egress traffic for the network load balancer. * The network security rules of other resources can reference the network security groups associated with the network load balancer to ensure access. Example: [\"ocid1.nsg.oc1.phx.unique_ID\"]

nlb_ip_version

(optional) IP version associated with the NLB.

Allowed values are: 'IPV4', 'IPV4_AND_IPV6'

listeners

(optional) Listeners associated with the network load balancer.

backend_sets

(optional) Backend sets associated with the network load balancer.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_IP_ADDRESS_T Type

A load balancer IP address.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_ip_address_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ip_address varchar2(32767),
  is_public number,
  ip_version varchar2(32767),
  reserved_ip dbms_cloud_oci_network_load_balancer_reserved_ip_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_ip_address_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_ip_address_t (
    ip_address varchar2,
    is_public number,
    ip_version varchar2,
    reserved_ip dbms_cloud_oci_network_load_balancer_reserved_ip_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

ip_address

(required) An IP address. Example: `192.168.0.3`

is_public

(optional) Whether the IP address is public or private. If \"true\", then the IP address is public and accessible from the internet. If \"false\", then the IP address is private and accessible only from within the associated virtual cloud network.

ip_version

(optional) IP version associated with this IP address.

Allowed values are: 'IPV4', 'IPV6'

reserved_ip

(optional)

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_LISTENER_T Type

The congfiguration of the listener. For more information about backend set configuration, see Managing Load Balancer Listeners.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_listener_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  default_backend_set_name varchar2(32767),
  port number,
  protocol varchar2(32767),
  ip_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_t (
    name varchar2,
    default_backend_set_name varchar2,
    port number,
    protocol varchar2,
    ip_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`

default_backend_set_name

(required) The name of the associated backend set. Example: `example_backend_set`

port

(required) The communication port for the listener. Example: `80`

protocol

(required) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). To get a list of valid protocols, use the LIST_NETWORK_LOAD_BALANCERS_PROTOCOLS Function operation. Example: `TCP`

Allowed values are: 'ANY', 'TCP', 'UDP', 'TCP_AND_UDP'

ip_version

(optional) IP version associated with the listener.

Allowed values are: 'IPV4', 'IPV6'

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_LISTENER_SUMMARY_T Type

The configuration of the listener. For more information about backend set configuration, see Managing Load Balancer Listeners.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_listener_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  default_backend_set_name varchar2(32767),
  port number,
  protocol varchar2(32767),
  ip_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_summary_t (
    name varchar2,
    default_backend_set_name varchar2,
    port number,
    protocol varchar2,
    ip_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) A friendly name for the listener. It must be unique and it cannot be changed. Example: `example_listener`

default_backend_set_name

(required) The name of the associated backend set. Example: `example_backend_set`

port

(required) The communication port for the listener. Example: `80`

protocol

(required) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). To get a list of valid protocols, use the LIST_NETWORK_LOAD_BALANCERS_PROTOCOLS Function operation. Example: `TCP`

Allowed values are: 'ANY', 'TCP', 'UDP', 'TCP_AND_UDP'

ip_version

(optional) IP version associated with the listener.

Allowed values are: 'IPV4', 'IPV6'

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_LISTENER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_listener_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_listener_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_listener_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_LISTENER_COLLECTION_T Type

Wrapper object for an array of ListenerSummary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_listener_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_listener_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_listener_collection_t (
    items dbms_cloud_oci_network_load_balancer_listener_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) Array of ListenerSummary objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_IP_ADDRESS_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_ip_address_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_ip_address_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_ip_address_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_T Type

The properties that define a network load balancer. For more information, see Managing a network load balancer. To use any of the API operations, you must be authorized in an IAM policy. If you are not authorized, contact an administrator. If you are an administrator who writes policies to give users access, then see Getting Started with Policies. For information about endpoints and signing API requests, see About the API. For information about available SDKs and tools, see SDKS and Other Tools.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  nlb_ip_version varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  ip_addresses dbms_cloud_oci_network_load_balancer_ip_address_tbl,
  is_private number,
  is_preserve_source_destination number,
  subnet_id varchar2(32767),
  network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  listeners json_element_t,
  backend_sets json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    nlb_ip_version varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    ip_addresses dbms_cloud_oci_network_load_balancer_ip_address_tbl,
    is_private number,
    is_preserve_source_destination number,
    subnet_id varchar2,
    network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    listeners json_element_t,
    backend_sets json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the network load balancer.

compartment_id

(required) The OCID of the compartment containing the network load balancer.

display_name

(required) A user-friendly name, which does not have to be unique, and can be changed. Example: `example_load_balancer`

lifecycle_state

(required) The current state of the network load balancer.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

nlb_ip_version

(optional) IP version associated with the NLB.

Allowed values are: 'IPV4', 'IPV4_AND_IPV6'

time_created

(required) The date and time the network load balancer was created, in the format defined by RFC3339. Example: `2020-05-01T21:10:29.600Z`

time_updated

(optional) The time the network load balancer was updated. An RFC3339 formatted date-time string. Example: `2020-05-01T22:10:29.600Z`

ip_addresses

(required) An array of IP addresses.

is_private

(optional) Whether the network load balancer has a virtual cloud network-local (private) IP address. If \"true\", then the service assigns a private IP address to the network load balancer. If \"false\", then the service assigns a public IP address to the network load balancer. A public network load balancer is accessible from the internet, depending on the security list rules for your virtual cloud network. For more information about public and private network load balancers, see How Network Load Balancing Works. This value is true by default. Example: `true`

is_preserve_source_destination

(optional) When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.

subnet_id

(required) The subnet in which the network load balancer is spawned OCIDs.\"

network_security_group_ids

(optional) An array of network security groups OCIDs associated with the network load balancer. During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups. The benefits of associating the network load balancer with network security groups include: * Network security groups define network security rules to govern ingress and egress traffic for the network load balancer. * The network security rules of other resources can reference the network security groups associated with the network load balancer to ensure access. Example: [\"ocid1.nsg.oc1.phx.unique_ID\"]

listeners

(optional) Listeners associated with the network load balancer.

backend_sets

(optional) Backend sets associated with the network load balancer.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) Key-value pair representing system tags' keys and values scoped to a namespace. Example: `{\"bar-key\": \"value\"}`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_SUMMARY_T Type

Network load balancer object to be used for list operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  nlb_ip_version varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  ip_addresses dbms_cloud_oci_network_load_balancer_ip_address_tbl,
  is_private number,
  is_preserve_source_destination number,
  subnet_id varchar2(32767),
  network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  listeners json_element_t,
  backend_sets json_element_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    nlb_ip_version varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    ip_addresses dbms_cloud_oci_network_load_balancer_ip_address_tbl,
    is_private number,
    is_preserve_source_destination number,
    subnet_id varchar2,
    network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    listeners json_element_t,
    backend_sets json_element_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the network load balancer.

compartment_id

(required) The OCID of the compartment containing the network load balancer.

display_name

(required) A user-friendly name, which does not have to be unique, and can be changed. Example: `example_load_balancer`

lifecycle_state

(required) The current state of the network load balancer.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

nlb_ip_version

(optional) IP version associated with the NLB.

Allowed values are: 'IPV4', 'IPV4_AND_IPV6'

time_created

(required) The date and time the network load balancer was created, in the format defined by RFC3339. Example: `2020-05-01T21:10:29.600Z`

time_updated

(optional) The time the network load balancer was updated. An RFC3339 formatted date-time string. Example: `2020-05-01T22:10:29.600Z`

ip_addresses

(required) An array of IP addresses.

is_private

(optional) Whether the network load balancer has a virtual cloud network-local (private) IP address. If \"true\", then the service assigns a private IP address to the network load balancer. If \"false\", then the service assigns a public IP address to the network load balancer. A public network load balancer is accessible from the internet, depending the security list rules for your virtual cloud network. For more information about public and private network load balancers, see How Network Load Balancing Works. This value is true by default. Example: `true`

is_preserve_source_destination

(optional) When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC. Packets are sent to the backend set without any changes to the source and destination IP.

subnet_id

(required) The subnet in which the network load balancer is spawned OCIDs.\"

network_security_group_ids

(optional) An array of network security groups OCIDs associated with the network load balancer. During the creation of the network load balancer, the service adds the new load balancer to the specified network security groups. The benefits of associating the network load balancer with network security groups include: * Network security groups define network security rules to govern ingress and egress traffic for the network load balancer. * The network security rules of other resources can reference the network security groups associated with the network load balancer to ensure access. Example: [\"ocid1.nsg.oc1.phx.unique_ID\"]

listeners

(optional) Listeners associated with the network load balancer.

backend_sets

(optional) Backend sets associated with the network load balancer.

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

system_tags

(optional) Key-value pair representing system tags' keys and values scoped to a namespace. Example: `{\"bar-key\": \"value\"}`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_COLLECTION_T Type

Wrapper object for an array of NetworkLoadBalancerSummary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_collection_t (
    items dbms_cloud_oci_network_load_balancer_network_load_balancer_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) Array of NetworkLoadBalancerSummary objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_HEALTH_T Type

The health status details for the specified network load balancer. This object does not explicitly enumerate backend sets with a status of `OK`. However, the backend sets are included in the `totalBackendSetCount` sum.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_health_t FORCE AUTHID CURRENT_USER IS OBJECT (
  status varchar2(32767),
  warning_state_backend_set_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  critical_state_backend_set_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  unknown_state_backend_set_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  total_backend_set_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_health_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_health_t (
    status varchar2,
    warning_state_backend_set_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    critical_state_backend_set_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    unknown_state_backend_set_names dbms_cloud_oci_network_load_balancer_varchar2_tbl,
    total_backend_set_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

status

(required) The overall health status of the network load balancer. * **OK:** All backend sets associated with the network load balancer return a status of `OK`. * **WARNING:** At least one of the backend sets associated with the network load balancer returns a status of `WARNING`, no backend sets return a status of `CRITICAL`, and the network load balancer life cycle state is `ACTIVE`. * **CRITICAL:** One or more of the backend sets associated with the network load balancer return a status of `CRITICAL`. * **UNKNOWN:** If any one of the following conditions is true: * The network load balancer life cycle state is not `ACTIVE`. * No backend sets are defined for the network load balancer. * More than half of the backend sets associated with the network load balancer return a status of `UNKNOWN`, none of the backend sets return a status of `WARNING` or `CRITICAL`, and the network load balancer life cycle state is `ACTIVE`. * The system could not retrieve metrics for any reason.

Allowed values are: 'OK', 'WARNING', 'CRITICAL', 'UNKNOWN'

warning_state_backend_set_names

(required) A list of backend sets that are currently in the `WARNING` health state. The list identifies each backend set by the user-friendly name you assigned when you created the backend set. Example: `example_backend_set3`

critical_state_backend_set_names

(required) A list of backend sets that are currently in the `CRITICAL` health state. The list identifies each backend set by the user-friendly name you assigned when you created the backend set. Example: `example_backend_set`

unknown_state_backend_set_names

(required) A list of backend sets that are currently in the `UNKNOWN` health state. The list identifies each backend set by the user-friendly name you assigned when you created the backend set. Example: `example_backend_set2`

total_backend_set_count

(required) The total number of backend sets associated with this network load balancer. Example: `4`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_HEALTH_SUMMARY_T Type

A health status summary for the specified network load balancer

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  network_load_balancer_id varchar2(32767),
  status varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_t (
    network_load_balancer_id varchar2,
    status varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

network_load_balancer_id

(required) The OCID of the network load balancer with which the health status is associated.

status

(required) The overall health status of the network load balancer. * **OK:** All backend sets associated with the network load balancer return a status of `OK`. * **WARNING:** At least one of the backend sets associated with the network load balancer returns a status of `WARNING`, no backend sets return a status of `CRITICAL`, and the network load balancer life cycle state is `ACTIVE`. * **CRITICAL:** One or more of the backend sets associated with the network load balancer returns a status of `CRITICAL`. * **UNKNOWN:** If any one of the following conditions is true: * The network load balancer life cycle state is not `ACTIVE`. * No backend sets are defined for the network load balancer. * More than half of the backend sets associated with the network load balancer return a status of `UNKNOWN`, none of the backend sets returns a status of `WARNING` or `CRITICAL`, and the network load balancer life cycle state is `ACTIVE`. * The system could not retrieve metrics for any reason.

Allowed values are: 'OK', 'WARNING', 'CRITICAL', 'UNKNOWN'

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_HEALTH_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCER_HEALTH_COLLECTION_T Type

Wrapper object for an array of NetworkLoadBalancerHealthSummary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancer_health_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_health_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancer_health_collection_t (
    items dbms_cloud_oci_network_load_balancer_network_load_balancer_health_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of BackendSetSummary objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCERS_POLICY_COLLECTION_T Type

Wrapper object for array of NetworkLoadBalancersPolicySummary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancers_policy_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancers_policy_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancers_policy_collection_t (
    items dbms_cloud_oci_network_load_balancer_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) Array of NetworkLoadBalancersPolicySummary objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_NETWORK_LOAD_BALANCERS_PROTOCOL_COLLECTION_T Type

This object is deprecated. Wrapper object for array of ProtocolSummary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_network_load_balancers_protocol_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancers_protocol_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_network_load_balancers_protocol_collection_t (
    items dbms_cloud_oci_network_load_balancer_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) Array of NetworkLoadBalancersProtocolSummary objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_UPDATE_BACKEND_DETAILS_T Type

The configuration details for updating a backend server.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_update_backend_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  weight number,
  is_backup number,
  is_drain number,
  is_offline number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_backend_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_backend_details_t (
    weight number,
    is_backup number,
    is_drain number,
    is_offline number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

weight

(optional) The load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives three times the number of new connections as a server weighted '1'. For more information about load balancing policies, see How Load Balancing Policies Work. Example: `3`

is_backup

(optional) Whether the network load balancer should treat this server as a backup unit. If `true`, then the network load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as \"isBackup\" fail the health check policy. Example: `false`

is_drain

(optional) Whether the network load balancer should drain this server. Servers marked \"isDrain\" receive no incoming traffic. Example: `false`

is_offline

(optional) Whether the network load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_UPDATE_BACKEND_SET_DETAILS_T Type

The configuration details for updating a load balancer backend set. For more information about backend set configuration, see Managing Backend Sets. **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_update_backend_set_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  policy varchar2(32767),
  is_preserve_source number,
  ip_version varchar2(32767),
  backends dbms_cloud_oci_network_load_balancer_backend_details_tbl,
  health_checker dbms_cloud_oci_network_load_balancer_health_checker_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_backend_set_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_backend_set_details_t (
    policy varchar2,
    is_preserve_source number,
    ip_version varchar2,
    backends dbms_cloud_oci_network_load_balancer_backend_details_tbl,
    health_checker dbms_cloud_oci_network_load_balancer_health_checker_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

policy

(optional) The network load balancer policy for the backend set. To get a list of available policies, use the LIST_NETWORK_LOAD_BALANCERS_POLICIES Function operation. Example: `FIVE_TUPLE`

is_preserve_source

(optional) If this parameter is enabled, then the network load balancer preserves the source IP of the packet when it is forwarded to backends. Backends see the original source IP. If the isPreserveSourceDestination parameter is enabled for the network load balancer resource, then this parameter cannot be disabled. The value is true by default.

ip_version

(optional) The IP version associated with the backend set.

Allowed values are: 'IPV4', 'IPV6'

backends

(optional) An array of backends associated with the backend set.

health_checker

(optional)

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_UPDATE_HEALTH_CHECKER_DETAILS_T Type

The configuration details of the health checker.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_update_health_checker_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  protocol varchar2(32767),
  port number,
  retries number,
  timeout_in_millis number,
  interval_in_millis number,
  url_path varchar2(32767),
  response_body_regex varchar2(32767),
  return_code number,
  request_data clob,
  response_data clob,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_health_checker_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_health_checker_details_t (
    protocol varchar2,
    port number,
    retries number,
    timeout_in_millis number,
    interval_in_millis number,
    url_path varchar2,
    response_body_regex varchar2,
    return_code number,
    request_data clob,
    response_data clob
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

protocol

(optional) The protocol that the health check must use; either HTTP, UDP, or TCP. Example: `HTTP`

Allowed values are: 'HTTP', 'HTTPS', 'TCP', 'UDP'

port

(optional) The backend server port against which to run the health check. Example: `8080`

retries

(optional) The number of retries to attempt before a backend server is considered \"unhealthy\". This number also applies when recovering a server to the \"healthy\" state. Example: `3`

timeout_in_millis

(optional) The maximum time, in milliseconds, to wait for a reply to a health check. A health check is successful only if a reply returns within this timeout period. Example: `3000`

interval_in_millis

(optional) The interval between health checks, in milliseconds. Example: `10000`

url_path

(optional) The path against which to run the health check. Example: `/healthcheck`

response_body_regex

(optional) A regular expression for parsing the response body from the backend server. Example: `^((?!false).|\\s)*$`

return_code

(optional) The status code a healthy backend server should return. If you configure the health check policy to use the HTTP protocol, then you can use common HTTP status codes such as \"200\". Example: `200`

request_data

(optional) Base64 encoded pattern to be sent as UDP or TCP health check probe.

response_data

(optional) Base64 encoded pattern to be validated as UDP or TCP health check probe response.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_UPDATE_LISTENER_DETAILS_T Type

The configuration of the listener. For more information about backend set configuration, see Managing Network Load Balancer Listeners.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_update_listener_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  default_backend_set_name varchar2(32767),
  port number,
  protocol varchar2(32767),
  ip_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_listener_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_listener_details_t (
    default_backend_set_name varchar2,
    port number,
    protocol varchar2,
    ip_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

default_backend_set_name

(optional) The name of the associated backend set. Example: `example_backend_set`

port

(optional) The communication port for the listener. Example: `80`

protocol

(optional) The protocol on which the listener accepts connection requests. For public network load balancers, ANY protocol refers to TCP/UDP. For private network load balancers, ANY protocol refers to TCP/UDP/ICMP (note that ICMP requires isPreserveSourceDestination to be set to true). To get a list of valid protocols, use the LIST_NETWORK_LOAD_BALANCERS_PROTOCOLS Function operation. Example: `TCP`

Allowed values are: 'ANY', 'TCP', 'UDP', 'TCP_AND_UDP'

ip_version

(optional) IP version associated with the listener.

Allowed values are: 'IPV4', 'IPV6'

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_UPDATE_NETWORK_LOAD_BALANCER_DETAILS_T Type

Configuration details to update a network load balancer. **Caution:** Oracle recommends that you avoid using any confidential information when you supply string values using the API.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_update_network_load_balancer_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  is_preserve_source_destination number,
  nlb_ip_version varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_network_load_balancer_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_network_load_balancer_details_t (
    display_name varchar2,
    is_preserve_source_destination number,
    nlb_ip_version varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The user-friendly display name for the network load balancer, which does not have to be unique and can be changed. Avoid entering confidential information. Example: `example_network_load_balancer`

is_preserve_source_destination

(optional) This parameter can be enabled only if backends are compute OCIDs. When enabled, the skipSourceDestinationCheck parameter is automatically enabled on the load balancer VNIC, and packets are sent to the backend with the entire IP header intact.

nlb_ip_version

(optional) IP version associated with the NLB.

Allowed values are: 'IPV4', 'IPV4_AND_IPV6'

freeform_tags

(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_UPDATE_NETWORK_SECURITY_GROUPS_DETAILS_T Type

An object representing an updated list of network security groups that overwrites the existing list of network security groups. * If the network load balancer has no configured network security groups, then the network load balancer uses the network security groups in this list. * If the network load balancer has a list of configured network security groups, then this list replaces the existing list. * If the network load balancer has a list of configured network security groups and this list is empty, then the operation removes all of the network security groups associated with the network load balancer.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_update_network_security_groups_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_network_security_groups_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_update_network_security_groups_details_t (
    network_security_group_ids dbms_cloud_oci_network_load_balancer_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

network_security_group_ids

(optional) An array of network security group OCIDs associated with the network load balancer. During the creation of the network load balancer, the service adds the new network load balancer to the specified network security groups. The benefits of associating the network load balancer with network security groups include: * Network security groups define network security rules to govern ingress and egress traffic for the network load balancer. * The network security rules of other resources can reference the network security groups associated with the network load balancer to ensure access.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_RESOURCE_T Type

A resource that a work request creates or on which the work request operates.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  action_type varchar2(32767),
  identifier varchar2(32767),
  entity_uri varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type that the work request affects.

action_type

(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted remains in the IN_PROGRESS state until work is complete for that resource, at which point the resource transitions to CREATED, UPDATED, or DELETED, respectively.

Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED'

identifier

(required) The identifier of the resource the work request affects.

entity_uri

(optional) The URI path on which the user can perform a GET request to access the resource metadata.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_T Type

A description of work request status.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_network_load_balancer_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_network_load_balancer_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) Type of work request.

Allowed values are: 'CREATE_NETWORK_LOAD_BALANCER', 'UPDATE_NETWORK_LOAD_BALANCER', 'DELETE_NETWORK_LOAD_BALANCER', 'CREATE_BACKEND', 'UPDATE_BACKEND', 'DELETE_BACKEND', 'CREATE_LISTENER', 'UPDATE_LISTENER', 'DELETE_LISTENER', 'CREATE_BACKENDSET', 'UPDATE_BACKENDSET', 'DELETE_BACKENDSET', 'UPDATE_NSGS', 'UPDATE_HEALTH_CHECKER', 'CHANGE_COMPARTMENT', 'ATTACH_NLB_TO_POD', 'DETACH_NLB_FROM_POD'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

id

(required) The identifier of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request. Work requests are scoped to the same compartment as the resource that the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, then the service team must choose the primary resource whose compartment is to be used.

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time that the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time that the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time that the object was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_SUMMARY_T Type

Summary of work request object.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_network_load_balancer_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_network_load_balancer_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) Type of work request.

Allowed values are: 'CREATE_NETWORK_LOAD_BALANCER', 'UPDATE_NETWORK_LOAD_BALANCER', 'DELETE_NETWORK_LOAD_BALANCER', 'CREATE_BACKEND', 'UPDATE_BACKEND', 'DELETE_BACKEND', 'CREATE_LISTENER', 'UPDATE_LISTENER', 'DELETE_LISTENER', 'CREATE_BACKENDSET', 'UPDATE_BACKENDSET', 'DELETE_BACKENDSET', 'UPDATE_NSGS', 'UPDATE_HEALTH_CHECKER', 'CHANGE_COMPARTMENT', 'ATTACH_NLB_TO_POD', 'DETACH_NLB_FROM_POD'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELING', 'CANCELED'

id

(required) The identifier of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request. Work requests are scoped to the same compartment as the resource that the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, then the service team must choose the primary resource whose compartment is to be used.

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

(required) The date and time that the request was created, as described in RFC 3339, section 14.29.

time_started

(optional) The date and time that the request was started, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time that the object was finished, as described in RFC 3339.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_COLLECTION_T Type

Wrapper object for an array of WorkRequest objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_work_request_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_collection_t (
    items dbms_cloud_oci_network_load_balancer_work_request_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of WorkRequest objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_ERROR_T Type

An error encountered while running a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_error_t (
    code varchar2,
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A machine-usable code for the error that occured. Error codes are listed here: (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm)

message

(required) A human-readable description of the issue encountered.

l_timestamp

(required) The time the error occured in the form of an RFC3339 formatted date-time string.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_ERROR_COLLECTION_T Type

Wrapper object for an array of WorkRequestErrorSummary objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_error_collection_t (
    items dbms_cloud_oci_network_load_balancer_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of WorkRequestErrorSummary objects.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_LOG_ENTRY_T Type

A log message from the running of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
  message varchar2(32767),
  l_timestamp timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_log_entry_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) Human-readable log message.

l_timestamp

(required) The time the log message was written displayed as an RFC3339 formatted date-time string.

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_network_load_balancer_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_network_load_balancer_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_NETWORK_LOAD_BALANCER_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

Wrapper object for an array of WorkRequestLogEntry objects.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_network_load_balancer_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_network_load_balancer_work_request_log_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_log_entry_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_network_load_balancer_work_request_log_entry_collection_t (
    items dbms_cloud_oci_network_load_balancer_work_request_log_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(optional) An array of WorkRequestLogEntry objects.

Was this article helpful?