Web Application Firewall Common Types

DBMS_CLOUD_OCI_WAF_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_POLICY_RULE_T Type

Base schema for WebAppFirewallPolicyRules, including properties common to all of them.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_policy_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  name varchar2(32767),
  condition_language varchar2(32767),
  condition varchar2(32767),
  action_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_policy_rule_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_policy_rule_t (
    l_type varchar2,
    name varchar2,
    condition_language varchar2,
    condition varchar2,
    action_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of WebAppFirewallPolicyRule.

Allowed values are: 'ACCESS_CONTROL', 'PROTECTION', 'REQUEST_RATE_LIMITING'

name

(required) Rule name. Must be unique within the module.

condition_language

(optional) The language used to parse condition from field `condition`. Available languages: * **JMESPATH** an extended JMESPath language syntax.

Allowed values are: 'JMESPATH'

condition

(optional) An expression that determines whether or not the rule action should be executed.

action_name

(required) References action by name from actions defined in WebAppFirewallPolicy.

DBMS_CLOUD_OCI_WAF_ACCESS_CONTROL_RULE_T Type

Rule that represents Request/Response Access Control. Only actions of the following types are allowed to be referenced in this rule: * CHECK * ALLOW * RETURN_HTTP_RESPONSE

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_access_control_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_web_app_firewall_policy_rule_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_access_control_rule_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_access_control_rule_t (
    l_type varchar2,
    name varchar2,
    condition_language varchar2,
    condition varchar2,
    action_name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_access_control_rule_t is a subtype of the dbms_cloud_oci_waf_web_app_firewall_policy_rule_t type.

DBMS_CLOUD_OCI_WAF_ACTION_T Type

An object that represents action and its options. The action can be terminating, if it stops further execution of rules and modules. And non-terminating, if it does not interrupt execution flow.

Syntax

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

Fields

Field Description

l_type

(required) * **CHECK** is a non-terminating action that does not stop the execution of rules in current module, just emits a log message documenting result of rule execution. * **ALLOW** is a non-terminating action which upon matching rule skips all remaining rules in the current module. * **RETURN_HTTP_RESPONSE** is a terminating action which is executed immediately, returns a defined HTTP response.

Allowed values are: 'CHECK', 'ALLOW', 'RETURN_HTTP_RESPONSE'

name

(required) Action name. Can be used to reference the action.

DBMS_CLOUD_OCI_WAF_ALLOW_ACTION_T Type

An object that represents an action which upon matching rule skips all remaining rules in the current module.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_allow_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_action_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_allow_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_allow_action_t (
    l_type varchar2,
    name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_allow_action_t is a subtype of the dbms_cloud_oci_waf_action_t type.

DBMS_CLOUD_OCI_WAF_CHANGE_NETWORK_ADDRESS_LIST_COMPARTMENT_DETAILS_T Type

Updates compartmentId of resource.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_WAF_CHANGE_RESOURCE_COMPARTMENT_DETAILS_T Type

Updates compartmentId of resource.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_WAF_CHANGE_WEB_APP_FIREWALL_COMPARTMENT_DETAILS_T Type

Updates compartmentId of resource.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_WAF_CHANGE_WEB_APP_FIREWALL_POLICY_COMPARTMENT_DETAILS_T Type

Updates compartmentId of resource.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the resource should be moved.

DBMS_CLOUD_OCI_WAF_CHECK_ACTION_T Type

An object that represents an action which does not stop the execution of rules in current module, just emits a log message documenting result of rule execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_check_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_action_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_check_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_check_action_t (
    l_type varchar2,
    name varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_check_action_t is a subtype of the dbms_cloud_oci_waf_action_t type.

DBMS_CLOUD_OCI_WAF_COLLABORATIVE_CAPABILITY_WEIGHT_T Type

Defines how much a contributing capability contributes towards the action threshold of a collaborative protection capability.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_collaborative_capability_weight_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  display_name varchar2(32767),
  weight number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_collaborative_capability_weight_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_collaborative_capability_weight_t (
    key varchar2,
    display_name varchar2,
    weight number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) Unique key of contributing protection capability.

display_name

(required) The display name of contributing protection capability.

weight

(required) The weight of contributing protection capability.

DBMS_CLOUD_OCI_WAF_COLLABORATIVE_CAPABILITY_WEIGHT_OVERRIDE_T Type

Collaborative capability key and overriding weight.

Syntax

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

Fields

Field Description

key

(required) Unique key of collaborative capability for which weight will be overridden.

weight

(required) The value of weight to set.

DBMS_CLOUD_OCI_WAF_CREATE_NETWORK_ADDRESS_LIST_DETAILS_T Type

The information about new NetworkAddressList.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_create_network_address_list_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_network_address_list_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_network_address_list_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) NetworkAddressList display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

l_type

(required) Type of NetworkAddressList.

Allowed values are: 'ADDRESSES', 'VCN_ADDRESSES'

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\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_CREATE_NETWORK_ADDRESS_LIST_ADDRESSES_DETAILS_T Type

The information about new NetworkAddressListAddresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_create_network_address_list_addresses_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_create_network_address_list_details_t (
  addresses dbms_cloud_oci_waf_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_network_address_list_addresses_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_network_address_list_addresses_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    addresses dbms_cloud_oci_waf_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_create_network_address_list_addresses_details_t is a subtype of the dbms_cloud_oci_waf_create_network_address_list_details_t type.

Fields

Field Description

addresses

(required) A list of IP address prefixes in CIDR notation. To specify all addresses, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_PRIVATE_ADDRESSES_T Type

A pair of VCN OCID and private IP address prefix in CIDR notation.

Syntax

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

Fields

Field Description

vcn_id

(required) The OCID of the VCN.

addresses

(required) A private IP address or CIDR IP address range.

DBMS_CLOUD_OCI_WAF_PRIVATE_ADDRESSES_TBL Type

Nested table type of dbms_cloud_oci_waf_private_addresses_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_private_addresses_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_private_addresses_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_CREATE_NETWORK_ADDRESS_LIST_VCN_ADDRESSES_DETAILS_T Type

The information about new NetworkAddressListVcnAddresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_create_network_address_list_vcn_addresses_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_create_network_address_list_details_t (
  vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_network_address_list_vcn_addresses_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_network_address_list_vcn_addresses_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_create_network_address_list_vcn_addresses_details_t is a subtype of the dbms_cloud_oci_waf_create_network_address_list_details_t type.

Fields

Field Description

vcn_addresses

(required) A list of private address prefixes, each associated with a particular VCN. To specify all addresses in a VCN, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_CREATE_WEB_APP_FIREWALL_DETAILS_T Type

The information about new Web App Firewall.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_create_web_app_firewall_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  backend_type varchar2(32767),
  compartment_id varchar2(32767),
  web_app_firewall_policy_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_web_app_firewall_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_web_app_firewall_details_t (
    display_name varchar2,
    backend_type varchar2,
    compartment_id varchar2,
    web_app_firewall_policy_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) WebAppFirewall display name, can be renamed.

backend_type

(required) Type of the WebAppFirewall, as example LOAD_BALANCER.

Allowed values are: 'LOAD_BALANCER'

compartment_id

(required) The OCID of the compartment.

web_app_firewall_policy_id

(required) The OCID of WebAppFirewallPolicy, which is attached to the resource.

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\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_CREATE_WEB_APP_FIREWALL_LOAD_BALANCER_DETAILS_T Type

The information about new WebAppFirewallLoadBalancer.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_create_web_app_firewall_load_balancer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_create_web_app_firewall_details_t (
  load_balancer_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_web_app_firewall_load_balancer_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_web_app_firewall_load_balancer_details_t (
    display_name varchar2,
    backend_type varchar2,
    compartment_id varchar2,
    web_app_firewall_policy_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    load_balancer_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_create_web_app_firewall_load_balancer_details_t is a subtype of the dbms_cloud_oci_waf_create_web_app_firewall_details_t type.

Fields

Field Description

load_balancer_id

(required) LoadBalancer OCID to which the WebAppFirewallPolicy is attached to.

DBMS_CLOUD_OCI_WAF_ACCESS_CONTROL_RULE_TBL Type

Nested table type of dbms_cloud_oci_waf_access_control_rule_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_access_control_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_access_control_rule_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_REQUEST_ACCESS_CONTROL_T Type

Module that allows inspection of HTTP request properties and to return a defined HTTP response. In this module, rules with the name 'Default Action' are not allowed, since this name is reserved for default action logs.

Syntax

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

Fields

Field Description

default_action_name

(required) References an default Action to take if no AccessControlRule was matched. Allowed action types: * **ALLOW** continues execution of other modules and their rules. * **RETURN_HTTP_RESPONSE** terminates further execution of modules and rules and returns defined HTTP response.

rules

(optional) Ordered list of AccessControlRules. Rules are executed in order of appearance in this array.

DBMS_CLOUD_OCI_WAF_REQUEST_RATE_LIMITING_CONFIGURATION_T Type

Rate limiting configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_request_rate_limiting_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  period_in_seconds number,
  requests_limit number,
  action_duration_in_seconds number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_rate_limiting_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_rate_limiting_configuration_t (
    period_in_seconds number,
    requests_limit number,
    action_duration_in_seconds number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

period_in_seconds

(required) Evaluation period in seconds.

requests_limit

(required) Requests allowed per evaluation period.

action_duration_in_seconds

(optional) Duration of block action application in seconds when `requestsLimit` is reached. Optional and can be 0 (no block duration).

DBMS_CLOUD_OCI_WAF_REQUEST_RATE_LIMITING_CONFIGURATION_TBL Type

Nested table type of dbms_cloud_oci_waf_request_rate_limiting_configuration_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_request_rate_limiting_configuration_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_request_rate_limiting_configuration_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_REQUEST_RATE_LIMITING_RULE_T Type

Rule that represents RequestRateLimitingConfigurations. Only actions of the following types are allowed to be referenced in this rule: * CHECK * RETURN_HTTP_RESPONSE

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_request_rate_limiting_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_web_app_firewall_policy_rule_t (
  configurations dbms_cloud_oci_waf_request_rate_limiting_configuration_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_rate_limiting_rule_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_rate_limiting_rule_t (
    l_type varchar2,
    name varchar2,
    condition_language varchar2,
    condition varchar2,
    action_name varchar2,
    configurations dbms_cloud_oci_waf_request_rate_limiting_configuration_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_request_rate_limiting_rule_t is a subtype of the dbms_cloud_oci_waf_web_app_firewall_policy_rule_t type.

Fields

Field Description

configurations

(required) Rate Limiting Configurations. Each configuration counts requests towards its own `requestsLimit`.

DBMS_CLOUD_OCI_WAF_REQUEST_RATE_LIMITING_RULE_TBL Type

Nested table type of dbms_cloud_oci_waf_request_rate_limiting_rule_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_request_rate_limiting_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_request_rate_limiting_rule_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_REQUEST_RATE_LIMITING_T Type

Module that allows inspection of HTTP connection properties and to limit requests frequency for a given key.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_request_rate_limiting_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rules dbms_cloud_oci_waf_request_rate_limiting_rule_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_rate_limiting_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_rate_limiting_t (
    rules dbms_cloud_oci_waf_request_rate_limiting_rule_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rules

(optional) Ordered list of RequestRateLimitingRules. Rules are executed in order of appearance in this array.

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_EXCLUSIONS_T Type

Identifies specific HTTP message parameters to exclude from inspection by a protection capability.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_capability_exclusions_t FORCE AUTHID CURRENT_USER IS OBJECT (
  request_cookies dbms_cloud_oci_waf_varchar2_tbl,
  args dbms_cloud_oci_waf_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_exclusions_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_exclusions_t (
    request_cookies dbms_cloud_oci_waf_varchar2_tbl,
    args dbms_cloud_oci_waf_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

request_cookies

(optional) List of HTTP request cookie values (by cookie name) to exclude from inspecting. Example: If we have cookie 'cookieName=cookieValue' and requestCookies=['cookieName'], both 'cookieName' and 'cookieValue' will not be inspected.

args

(optional) List of URL query parameter values from form-urlencoded XML, JSON, AMP, or POST payloads to exclude from inspecting. Example: If we have query parameter 'argumentName=argumentValue' and args=['argumentName'], both 'argumentName' and 'argumentValue' will not be inspected.

DBMS_CLOUD_OCI_WAF_COLLABORATIVE_CAPABILITY_WEIGHT_OVERRIDE_TBL Type

Nested table type of dbms_cloud_oci_waf_collaborative_capability_weight_override_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_collaborative_capability_weight_override_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_collaborative_capability_weight_override_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_T Type

References an OCI-managed protection capability. Checks if HTTP requests/responses are malicious.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_capability_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  version number,
  exclusions dbms_cloud_oci_waf_protection_capability_exclusions_t,
  action_name varchar2(32767),
  collaborative_action_threshold number,
  collaborative_weights dbms_cloud_oci_waf_collaborative_capability_weight_override_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_t (
    key varchar2,
    version number,
    exclusions dbms_cloud_oci_waf_protection_capability_exclusions_t,
    action_name varchar2,
    collaborative_action_threshold number,
    collaborative_weights dbms_cloud_oci_waf_collaborative_capability_weight_override_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) Unique key of referenced protection capability.

version

(required) Version of referenced protection capability.

exclusions

(optional)

action_name

(optional) Override action to take if capability was triggered, defined in Protection Rule for this capability. Only actions of type CHECK are allowed.

collaborative_action_threshold

(optional) The minimum sum of weights of associated collaborative protection capabilities that have triggered which must be reached in order for _this_ capability to trigger. This field is ignored for non-collaborative capabilities.

collaborative_weights

(optional) Explicit weight values to use for associated collaborative protection capabilities.

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_SETTINGS_T Type

Settings for protection capabilities

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_capability_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
  max_number_of_arguments number,
  max_single_argument_length number,
  max_total_argument_length number,
  max_http_request_headers number,
  max_http_request_header_length number,
  allowed_http_methods dbms_cloud_oci_waf_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_settings_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_settings_t (
    max_number_of_arguments number,
    max_single_argument_length number,
    max_total_argument_length number,
    max_http_request_headers number,
    max_http_request_header_length number,
    allowed_http_methods dbms_cloud_oci_waf_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

max_number_of_arguments

(optional) Maximum number of arguments allowed. Used in protection capability 920380: Number of Arguments Limits.

max_single_argument_length

(optional) Maximum allowed length of a single argument. Used in protection capability 920370: Limit argument value length.

max_total_argument_length

(optional) Maximum allowed total length of all arguments. Used in protection capability 920390: Limit arguments total length.

max_http_request_headers

(optional) Maximum number of headers allowed in an HTTP request. Used in protection capability 9200014: Limit Number of Request Headers.

max_http_request_header_length

(optional) Maximum allowed length of headers in an HTTP request. Used in protection capability: 9200024: Limit length of request header size.

allowed_http_methods

(optional) List of allowed HTTP methods. Each value as a RFC7230 formated token string. Used in protection capability 911100: Restrict HTTP Request Methods.

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_TBL Type

Nested table type of dbms_cloud_oci_waf_protection_capability_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_capability_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_protection_capability_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_PROTECTION_RULE_T Type

Rule that represents Request/Response Protection. Only actions of the following types are allowed to be referenced in this rule: * CHECK * RETURN_HTTP_RESPONSE

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_web_app_firewall_policy_rule_t (
  protection_capabilities dbms_cloud_oci_waf_protection_capability_tbl,
  protection_capability_settings dbms_cloud_oci_waf_protection_capability_settings_t,
  is_body_inspection_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_rule_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_rule_t (
    l_type varchar2,
    name varchar2,
    condition_language varchar2,
    condition varchar2,
    action_name varchar2,
    protection_capabilities dbms_cloud_oci_waf_protection_capability_tbl,
    protection_capability_settings dbms_cloud_oci_waf_protection_capability_settings_t,
    is_body_inspection_enabled number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_protection_rule_t is a subtype of the dbms_cloud_oci_waf_web_app_firewall_policy_rule_t type.

Fields

Field Description

protection_capabilities

(required) An ordered list that references OCI-managed protection capabilities. Referenced protection capabilities are not necessarily executed in order of appearance. Their execution order is decided at runtime for improved performance. The array cannot contain entries with the same pair of capability key and version more than once.

protection_capability_settings

(optional)

is_body_inspection_enabled

(optional) Enables/disables body inspection for this protection rule. Only Protection Rules in RequestProtection can have this option enabled. Response body inspection will be available at a later date.

DBMS_CLOUD_OCI_WAF_PROTECTION_RULE_TBL Type

Nested table type of dbms_cloud_oci_waf_protection_rule_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_protection_rule_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_REQUEST_PROTECTION_T Type

Module that allows to enable OCI-managed protection capabilities for incoming HTTP requests.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_request_protection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rules dbms_cloud_oci_waf_protection_rule_tbl,
  body_inspection_size_limit_in_bytes number,
  body_inspection_size_limit_exceeded_action_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_protection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_request_protection_t (
    rules dbms_cloud_oci_waf_protection_rule_tbl,
    body_inspection_size_limit_in_bytes number,
    body_inspection_size_limit_exceeded_action_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rules

(optional) Ordered list of ProtectionRules. Rules are executed in order of appearance in this array. ProtectionRules in this array can only use protection Capabilities of REQUEST_PROTECTION_CAPABILITY type.

body_inspection_size_limit_in_bytes

(optional) Maximum size of inspected HTTP message body in bytes. Actions to take if this limit is exceeded are defined in `bodyInspectionSizeLimitExceededActionName`. Body inspection maximum size allowed is defined with per-tenancy limit: 8192 bytes.

body_inspection_size_limit_exceeded_action_name

(optional) References action by name from actions defined in WebAppFirewallPolicy. Executed if HTTP message body size exceeds limit set in field `bodyInspectionSizeLimitInBytes`. If this field is `null` HTTP message body will inspected up to `bodyInspectionSizeLimitInBytes` and the rest will not be inspected by Protection Capabilities. Allowed action types: * **RETURN_HTTP_RESPONSE** terminates further execution of modules and rules and returns defined HTTP response.

DBMS_CLOUD_OCI_WAF_RESPONSE_ACCESS_CONTROL_T Type

Module that allows inspection of HTTP response properties and to return a defined HTTP response.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_response_access_control_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rules dbms_cloud_oci_waf_access_control_rule_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_response_access_control_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_response_access_control_t (
    rules dbms_cloud_oci_waf_access_control_rule_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rules

(optional) Ordered list of AccessControlRules. Rules are executed in order of appearance in this array.

DBMS_CLOUD_OCI_WAF_RESPONSE_PROTECTION_T Type

Module that allows to enable OCI-managed protection capabilities for HTTP responses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_response_protection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  rules dbms_cloud_oci_waf_protection_rule_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_response_protection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_response_protection_t (
    rules dbms_cloud_oci_waf_protection_rule_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

rules

(optional) Ordered list of ProtectionRules. Rules are executed in order of appearance in this array. ProtectionRules in this array can only use protection capabilities of RESPONSE_PROTECTION_CAPABILITY type.

DBMS_CLOUD_OCI_WAF_ACTION_TBL Type

Nested table type of dbms_cloud_oci_waf_action_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_action_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_action_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_CREATE_WEB_APP_FIREWALL_POLICY_DETAILS_T Type

The information about new WebAppFirewallPolicy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_create_web_app_firewall_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  actions dbms_cloud_oci_waf_action_tbl,
  request_access_control dbms_cloud_oci_waf_request_access_control_t,
  request_rate_limiting dbms_cloud_oci_waf_request_rate_limiting_t,
  request_protection dbms_cloud_oci_waf_request_protection_t,
  response_access_control dbms_cloud_oci_waf_response_access_control_t,
  response_protection dbms_cloud_oci_waf_response_protection_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_web_app_firewall_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_create_web_app_firewall_policy_details_t (
    display_name varchar2,
    compartment_id varchar2,
    actions dbms_cloud_oci_waf_action_tbl,
    request_access_control dbms_cloud_oci_waf_request_access_control_t,
    request_rate_limiting dbms_cloud_oci_waf_request_rate_limiting_t,
    request_protection dbms_cloud_oci_waf_request_protection_t,
    response_access_control dbms_cloud_oci_waf_response_access_control_t,
    response_protection dbms_cloud_oci_waf_response_protection_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

display_name

(optional) WebAppFirewallPolicy display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

actions

(optional) Predefined actions for use in multiple different rules. Not all actions are supported in every module. Some actions terminate further execution of modules and rules in a module and some do not. Actions names must be unique within this array.

request_access_control

(optional)

request_rate_limiting

(optional)

request_protection

(optional)

response_access_control

(optional)

response_protection

(optional)

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\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_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_WAF_HTTP_RESPONSE_BODY_T Type

Type of returned HTTP response body.

Syntax

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

Fields

Field Description

l_type

(required) Type of HttpResponseBody.

Allowed values are: 'STATIC_TEXT'

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_T Type

IP addresses that can be used between different WebAppFirewallPolicies.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_network_address_list_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the NetworkAddressList.

display_name

(required) NetworkAddressList display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

time_created

(required) The time the NetworkAddressList was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the NetworkAddressList was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the NetworkAddressList.

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.

l_type

(required) Type of NetworkAddressList.

Allowed values are: 'ADDRESSES', 'VCN_ADDRESSES'

freeform_tags

(required) 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

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

system_tags

(required) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_ADDRESSES_T Type

A NetworkAddressList that contains addresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_network_address_list_addresses_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_network_address_list_t (
  addresses dbms_cloud_oci_waf_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_addresses_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_addresses_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    addresses dbms_cloud_oci_waf_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_network_address_list_addresses_t is a subtype of the dbms_cloud_oci_waf_network_address_list_t type.

Fields

Field Description

addresses

(required) A list of IP address prefixes in CIDR notation. To specify all addresses, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_SUMMARY_T Type

Summary of NetworkAddressList.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_network_address_list_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the NetworkAddressList.

display_name

(required) NetworkAddressList display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

time_created

(required) The time the NetworkAddressList was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the NetworkAddressList was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the NetworkAddress List.

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.

l_type

(required) Type of NetworkAddressList.

Allowed values are: 'ADDRESSES', 'VCN_ADDRESSES'

freeform_tags

(required) 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

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

system_tags

(required) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_ADDRESSES_SUMMARY_T Type

Summary of NetworkAddressListAddresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_network_address_list_addresses_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_network_address_list_summary_t (
  addresses dbms_cloud_oci_waf_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_addresses_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_addresses_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    addresses dbms_cloud_oci_waf_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_network_address_list_addresses_summary_t is a subtype of the dbms_cloud_oci_waf_network_address_list_summary_t type.

Fields

Field Description

addresses

(required) A list of IP address prefixes in CIDR notation. To specify all addresses, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_waf_network_address_list_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_network_address_list_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_network_address_list_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_COLLECTION_T Type

Contains NetworkAddressListSummary items.

Syntax

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

Fields

Field Description

items

(required) A list of NetworkAddressListSummary objects.

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_VCN_ADDRESSES_T Type

A NetworkAddressList that contains VCN addresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_network_address_list_vcn_addresses_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_network_address_list_t (
  vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_vcn_addresses_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_vcn_addresses_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_network_address_list_vcn_addresses_t is a subtype of the dbms_cloud_oci_waf_network_address_list_t type.

Fields

Field Description

vcn_addresses

(required) A list of private address prefixes, each associated with a particular VCN. To specify all addresses in a VCN, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_NETWORK_ADDRESS_LIST_VCN_ADDRESSES_SUMMARY_T Type

Summary of NetworkAddressListVcnAddresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_network_address_list_vcn_addresses_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_network_address_list_summary_t (
  vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_vcn_addresses_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_network_address_list_vcn_addresses_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_network_address_list_vcn_addresses_summary_t is a subtype of the dbms_cloud_oci_waf_network_address_list_summary_t type.

Fields

Field Description

vcn_addresses

(required) A list of private address prefixes, each associated with a particular VCN. To specify all addresses in a VCN, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_COLLABORATIVE_CAPABILITY_WEIGHT_TBL Type

Nested table type of dbms_cloud_oci_waf_collaborative_capability_weight_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_collaborative_capability_weight_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_collaborative_capability_weight_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_SUMMARY_T Type

A summary of available OCI-managed protection capabilities in WebAppFirewallPolicy. Protection capabilies checks HTTP requests/responses if they are malicious.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_capability_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  version number,
  is_latest_version number,
  group_tags dbms_cloud_oci_waf_varchar2_tbl,
  l_type varchar2(32767),
  collaborative_action_threshold number,
  collaborative_weights dbms_cloud_oci_waf_collaborative_capability_weight_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_protection_capability_summary_t (
    key varchar2,
    display_name varchar2,
    description varchar2,
    version number,
    is_latest_version number,
    group_tags dbms_cloud_oci_waf_varchar2_tbl,
    l_type varchar2,
    collaborative_action_threshold number,
    collaborative_weights dbms_cloud_oci_waf_collaborative_capability_weight_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) Unique key of protection capability.

display_name

(required) The display name of protection capability.

description

(required) The description of protection capability.

version

(required) The version of protection capability.

is_latest_version

(required) The field that shows if this is the latest version of protection capability.

group_tags

(optional) The list of unique names protection capability group tags that are associated with this capability. Example: [\"PCI\", \"Recommended\"]

l_type

(required) The type of protection capability. * **REQUEST_PROTECTION_CAPABILITY** can only be used in `requestProtection` module of WebAppFirewallPolicy. * **RESPONSE_PROTECTION_CAPABILITY** can only be used in `responseProtection` module of WebAppFirewallPolicy.

Allowed values are: 'REQUEST_PROTECTION_CAPABILITY', 'RESPONSE_PROTECTION_CAPABILITY'

collaborative_action_threshold

(optional) The default collaborative action threshold for OCI-managed collaborative protection capability. Collaborative protection capabilities are made of several simple, non-collaborative protection capabilities (referred to as `contributing capabilities` later on) which have weights assigned to them. These weights can be found in the `collaborativeWeights` array. For incoming/outgoing HTTP messages, all contributing capabilities are executed and the sum of all triggered contributing capabilities weights is calculated. Only if this sum is greater than or equal to `collaborativeActionThreshold` is the incoming/outgoing HTTP message marked as malicious. This field is ignored for non-collaborative capabilities.

collaborative_weights

(optional) The weights of contributing capabilities. Defines how much each contributing capability contributes towards the action threshold of a collaborative protection capability. This field is ignored for non-collaborative capabilities.

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_waf_protection_capability_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_capability_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_protection_capability_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_COLLECTION_T Type

Result of a protection capabilities search.

Syntax

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

Fields

Field Description

items

(required) List of protection capabilities.

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_GROUP_TAG_SUMMARY_T Type

Object representing protection cabapility group tag and its metadata.

Syntax

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

Fields

Field Description

name

(required) Unique name of protection capability group tag.

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_GROUP_TAG_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_waf_protection_capability_group_tag_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_protection_capability_group_tag_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_protection_capability_group_tag_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_PROTECTION_CAPABILITY_GROUP_TAG_COLLECTION_T Type

Result of a protection capabilities group tags search.

Syntax

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

Fields

Field Description

items

(required) List of protection capabilities group tags.

DBMS_CLOUD_OCI_WAF_RESPONSE_HEADER_T Type

A header field to add to a response.

Syntax

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

Fields

Field Description

name

(required) The name of the header field.

value

(required) The value of the header field.

DBMS_CLOUD_OCI_WAF_RESPONSE_HEADER_TBL Type

Nested table type of dbms_cloud_oci_waf_response_header_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_response_header_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_response_header_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_RETURN_HTTP_RESPONSE_ACTION_T Type

An object that represents an action which returns a defined HTTP response.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_return_http_response_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_action_t (
  code number,
  headers dbms_cloud_oci_waf_response_header_tbl,
  body dbms_cloud_oci_waf_http_response_body_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_return_http_response_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_return_http_response_action_t (
    l_type varchar2,
    name varchar2,
    code number,
    headers dbms_cloud_oci_waf_response_header_tbl,
    body dbms_cloud_oci_waf_http_response_body_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_return_http_response_action_t is a subtype of the dbms_cloud_oci_waf_action_t type.

Fields

Field Description

code

(required) Response code. The following response codes are valid values for this property: * 2xx 200 OK 201 Created 202 Accepted 206 Partial Content * 3xx 300 Multiple Choices 301 Moved Permanently 302 Found 303 See Other 307 Temporary Redirect * 4xx 400 Bad Request 401 Unauthorized 403 Forbidden 404 Not Found 405 Method Not Allowed 408 Request Timeout 409 Conflict 411 Length Required 412 Precondition Failed 413 Payload Too Large 414 URI Too Long 415 Unsupported Media Type 416 Range Not Satisfiable 422 Unprocessable Entity 429 Too Many Requests 494 Request Header Too Large 495 Cert Error 496 No Cert 497 HTTP to HTTPS * 5xx 500 Internal Server Error 501 Not Implemented 502 Bad Gateway 503 Service Unavailable 504 Gateway Timeout 507 Insufficient Storage Example: `200`

headers

(optional) Adds headers defined in this array for HTTP response. Hop-by-hop headers are not allowed to be set: * Connection * Keep-Alive * Proxy-Authenticate * Proxy-Authorization * TE * Trailer * Transfer-Encoding * Upgrade

body

(optional)

DBMS_CLOUD_OCI_WAF_STATIC_TEXT_HTTP_RESPONSE_BODY_T Type

Allows returning static text as HTTP response body. Example: { \"type\": \"STATIC_TEXT\", \"text\": \"{\\\\"code\\\": 403,\\\\"message\\\":\\\"Unauthorised\\\"\}\" }

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_static_text_http_response_body_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_http_response_body_t (
  text varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_static_text_http_response_body_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_static_text_http_response_body_t (
    l_type varchar2,
    text varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_static_text_http_response_body_t is a subtype of the dbms_cloud_oci_waf_http_response_body_t type.

Fields

Field Description

text

(required) Static response body text.

DBMS_CLOUD_OCI_WAF_UPDATE_NETWORK_ADDRESS_LIST_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_update_network_address_list_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_network_address_list_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_network_address_list_details_t (
    display_name varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) NetworkAddressList display name, can be renamed.

l_type

(required) Type of NetworkAddressList.

Allowed values are: 'ADDRESSES', 'VCN_ADDRESSES'

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\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_UPDATE_NETWORK_ADDRESS_LIST_ADDRESSES_DETAILS_T Type

The information to be updated for NetworkAddressListAddresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_update_network_address_list_addresses_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_update_network_address_list_details_t (
  addresses dbms_cloud_oci_waf_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_network_address_list_addresses_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_network_address_list_addresses_details_t (
    display_name varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    addresses dbms_cloud_oci_waf_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_update_network_address_list_addresses_details_t is a subtype of the dbms_cloud_oci_waf_update_network_address_list_details_t type.

Fields

Field Description

addresses

(optional) A list of IP address prefixes in CIDR notation. To specify all addresses, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_UPDATE_NETWORK_ADDRESS_LIST_VCN_ADDRESSES_DETAILS_T Type

The information to be updated for NetworkAddressListVcnAddresses.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_update_network_address_list_vcn_addresses_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_update_network_address_list_details_t (
  vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_network_address_list_vcn_addresses_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_network_address_list_vcn_addresses_details_t (
    display_name varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcn_addresses dbms_cloud_oci_waf_private_addresses_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_update_network_address_list_vcn_addresses_details_t is a subtype of the dbms_cloud_oci_waf_update_network_address_list_details_t type.

Fields

Field Description

vcn_addresses

(optional) A list of private address prefixes, each associated with a particular VCN. To specify all addresses in a VCN, use \"0.0.0.0/0\" for IPv4 and \"::/0\" for IPv6.

DBMS_CLOUD_OCI_WAF_UPDATE_WEB_APP_FIREWALL_DETAILS_T Type

The information to be updated for WebAppFirewall.

Syntax

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

Fields

Field Description

display_name

(optional) WebAppFirewall display name, can be renamed.

web_app_firewall_policy_id

(optional) The OCID of WebAppFirewallPolicy, which is attached to the resource. This update guarantees that the resource always has WebAppFirewallPolicy attached at any time.

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\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_UPDATE_WEB_APP_FIREWALL_POLICY_DETAILS_T Type

The information to be updated. When updating WebAppFirewallPolicy, shallow merge is used for all top-level fields, meaning that top-level fields with defined values are completely overwritten and top-level fields without defined values are unchanged.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_update_web_app_firewall_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  actions dbms_cloud_oci_waf_action_tbl,
  request_access_control dbms_cloud_oci_waf_request_access_control_t,
  request_rate_limiting dbms_cloud_oci_waf_request_rate_limiting_t,
  request_protection dbms_cloud_oci_waf_request_protection_t,
  response_access_control dbms_cloud_oci_waf_response_access_control_t,
  response_protection dbms_cloud_oci_waf_response_protection_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_web_app_firewall_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_update_web_app_firewall_policy_details_t (
    display_name varchar2,
    actions dbms_cloud_oci_waf_action_tbl,
    request_access_control dbms_cloud_oci_waf_request_access_control_t,
    request_rate_limiting dbms_cloud_oci_waf_request_rate_limiting_t,
    request_protection dbms_cloud_oci_waf_request_protection_t,
    response_access_control dbms_cloud_oci_waf_response_access_control_t,
    response_protection dbms_cloud_oci_waf_response_protection_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

display_name

(optional) WebAppFirewallPolicy display name, can be renamed.

actions

(optional) Predefined actions for use in multiple different rules. Not all actions are supported in every module. Some actions terminate further execution of modules and rules in a module and some do not. Actions names must be unique within this array.

request_access_control

(optional)

request_rate_limiting

(optional)

request_protection

(optional)

response_access_control

(optional)

response_protection

(optional)

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\"}}`

system_tags

(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_T Type

A resource connecting a WebAppFirewallPolicy to a backend of particular type, applying that policy's coverage to the backend.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  backend_type varchar2(32767),
  web_app_firewall_policy_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    backend_type varchar2,
    web_app_firewall_policy_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the WebAppFirewall.

display_name

(required) WebAppFirewall display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

backend_type

(required) Type of the WebAppFirewall, as example LOAD_BALANCER.

Allowed values are: 'LOAD_BALANCER'

web_app_firewall_policy_id

(required) The OCID of WebAppFirewallPolicy, which is attached to the resource.

time_created

(required) The time the WebAppFirewall was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the WebAppFirewall was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the WebAppFirewall.

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.

freeform_tags

(required) 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

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

system_tags

(required) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_SUMMARY_T Type

Summary of the WebAppFirewall.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  backend_type varchar2(32767),
  web_app_firewall_policy_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    backend_type varchar2,
    web_app_firewall_policy_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) The OCID of the WebAppFirewall.

display_name

(required) WebAppFirewall display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

backend_type

(required) Type of the WebAppFirewall, as example LOAD_BALANCER.

Allowed values are: 'LOAD_BALANCER'

web_app_firewall_policy_id

(required) The OCID of WebAppFirewallPolicy, which is attached to the resource.

time_created

(required) The time the WebAppFirewall was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the WebAppFirewall was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the WebAppFirewall.

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.

freeform_tags

(required) 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

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

system_tags

(required) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_waf_web_app_firewall_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_web_app_firewall_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_COLLECTION_T Type

Result of a WebAppFirewall list operation.

Syntax

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

Fields

Field Description

items

(required) List of WebAppFirewalls.

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_LOAD_BALANCER_T Type

WebAppFirewall to a LoadBalancer resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_load_balancer_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_web_app_firewall_t (
  load_balancer_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_load_balancer_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_load_balancer_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    backend_type varchar2,
    web_app_firewall_policy_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    load_balancer_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_web_app_firewall_load_balancer_t is a subtype of the dbms_cloud_oci_waf_web_app_firewall_t type.

Fields

Field Description

load_balancer_id

(required) LoadBalancer OCID to which the WebAppFirewallPolicy is attached to.

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_LOAD_BALANCER_SUMMARY_T Type

Summary of the WebAppFirewallLoadBalancer.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_load_balancer_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_waf_web_app_firewall_summary_t (
  load_balancer_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_load_balancer_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_load_balancer_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    backend_type varchar2,
    web_app_firewall_policy_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    load_balancer_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_waf_web_app_firewall_load_balancer_summary_t is a subtype of the dbms_cloud_oci_waf_web_app_firewall_summary_t type.

Fields

Field Description

load_balancer_id

(required) LoadBalancer OCID to which the WebAppFirewallPolicy is attached to.

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_POLICY_T Type

The details of WebAppFirewallPolicy. A policy is comprised of rules, which allows executing inspections of incoming/outgoing HTTP message parameters and execution of actions, based on results of rules execution. In policy, rules are grouped into modules by their functionality. Modules can be further divided by the type of HTTP messages they handle: Modules that inspect incoming HTTP request. These modules are executed in the order they are enumerated here: * requestAccessControl * requestRateLimiting * requestProtection Modules that inspect outgoing HTTP responses. These modules are executed in the order they are enumerated here: * responseAccessControl * responseProtection

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  actions dbms_cloud_oci_waf_action_tbl,
  request_access_control dbms_cloud_oci_waf_request_access_control_t,
  request_rate_limiting dbms_cloud_oci_waf_request_rate_limiting_t,
  request_protection dbms_cloud_oci_waf_request_protection_t,
  response_access_control dbms_cloud_oci_waf_response_access_control_t,
  response_protection dbms_cloud_oci_waf_response_protection_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_policy_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    actions dbms_cloud_oci_waf_action_tbl,
    request_access_control dbms_cloud_oci_waf_request_access_control_t,
    request_rate_limiting dbms_cloud_oci_waf_request_rate_limiting_t,
    request_protection dbms_cloud_oci_waf_request_protection_t,
    response_access_control dbms_cloud_oci_waf_response_access_control_t,
    response_protection dbms_cloud_oci_waf_response_protection_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 WebAppFirewallPolicy.

display_name

(required) WebAppFirewallPolicy display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

time_created

(required) The time the WebAppFirewallPolicy was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the WebAppFirewallPolicy was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the WebAppFirewallPolicy.

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.

actions

(optional) Predefined actions for use in multiple different rules. Not all actions are supported in every module. Some actions terminate further execution of modules and rules in a module and some do not. Actions names must be unique within this array.

request_access_control

(optional)

request_rate_limiting

(optional)

request_protection

(optional)

response_access_control

(optional)

response_protection

(optional)

freeform_tags

(required) 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

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

system_tags

(required) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_POLICY_SUMMARY_T Type

Summary of the WebAppFirewallPolicy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_policy_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_policy_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_web_app_firewall_policy_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    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 WebAppFirewallPolicy.

display_name

(required) WebAppFirewallPolicy display name, can be renamed.

compartment_id

(required) The OCID of the compartment.

time_created

(required) The time the WebAppFirewallPolicy was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the WebAppFirewallPolicy was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the WebAppFirewallPolicy.

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.

freeform_tags

(required) 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

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

system_tags

(required) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_POLICY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_waf_web_app_firewall_policy_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_web_app_firewall_policy_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_web_app_firewall_policy_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_WEB_APP_FIREWALL_POLICY_COLLECTION_T Type

Contains WebAppFirewallPolicySummary items.

Syntax

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

Fields

Field Description

items

(required) A list of WebAppFirewallPolicySummary objects.

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a WorkRequest.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_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_waf_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_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 the WorkRequest affects.

action_type

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

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

identifier

(required) The OCID of the resource the WorkRequest affects.

entity_uri

(optional) The URI path that the user can do a GET on to access the resource metadata.

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_waf_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_T Type

A description of WorkRequest status

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_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_waf_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_waf_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_waf_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 the WorkRequest

Allowed values are: 'CREATE_WAF_POLICY', 'UPDATE_WAF_POLICY', 'DELETE_WAF_POLICY', 'MOVE_WAF_POLICY', 'CREATE_NETWORK_ADDRESS_LIST', 'UPDATE_NETWORK_ADDRESS_LIST', 'DELETE_NETWORK_ADDRESS_LIST', 'MOVE_NETWORK_ADDRESS_LIST', 'CREATE_WEB_APP_FIREWALL', 'UPDATE_WEB_APP_FIREWALL', 'DELETE_WEB_APP_FIREWALL', 'MOVE_WEB_APP_FIREWALL'

status

(required) Status of current work request.

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

id

(required) The OCID of the WorkRequest.

compartment_id

(required) The OCID of the compartment that contains the WorkRequest. WorkRequests should be scoped to the same compartment as the resource the work request affects.

resources

(required) The resources affected by this WorkRequest.

percent_complete

(required) Percentage of the request completed.

time_accepted

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

time_started

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

time_finished

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

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_TBL Type

Nested table type of dbms_cloud_oci_waf_work_request_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_work_request_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_work_request_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_COLLECTION_T Type

Result of a WorkRequest search. Contains both WorkRequest items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of WorkRequests.

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_ERROR_T Type

An error encountered while executing a WorkRequest.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_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_waf_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_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 on 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. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_waf_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_ERROR_COLLECTION_T Type

Result of a WorkRequestError search. Contains both WorkRequestError items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of WorkRequestError objects.

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_LOG_ENTRY_T Type

A log message from the execution of a WorkRequest.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_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_waf_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_waf_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. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_waf_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_waf_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_waf_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_WAF_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

Result of a WorkRequestLog search. Contains both WorkRequestLog items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of WorkRequestLogEntries.

Was this article helpful?