Health Checks Common Types

DBMS_CLOUD_OCI_HEALTHCHECKS_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_HEALTHCHECKS_CHANGE_HTTP_MONITOR_COMPARTMENT_DETAILS_T Type

The request body used to move a monitor into a compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_change_http_monitor_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_change_http_monitor_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_change_http_monitor_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_HEALTHCHECKS_CHANGE_PING_MONITOR_COMPARTMENT_DETAILS_T Type

The request body used to move a monitor into a compartment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_change_ping_monitor_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_change_ping_monitor_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_change_ping_monitor_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_HEALTHCHECKS_CONNECTION_T Type

The network connection results.

Syntax

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

Fields

Field Description

address

(optional) The connection IP address.

port

(optional) The port.

DBMS_CLOUD_OCI_HEALTHCHECKS_CREATE_HTTP_MONITOR_DETAILS_T Type

The request body used to create an HTTP monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_create_http_monitor_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  method varchar2(32767),
  path varchar2(32767),
  headers json_element_t,
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_http_monitor_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_http_monitor_details_t (
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    method varchar2,
    path varchar2,
    headers json_element_t,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    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.

targets

(required) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(required)

Allowed values are: 'HTTP', 'HTTPS'

method

(optional)

Allowed values are: 'GET', 'HEAD'

path

(optional) The optional URL path to probe, including query parameters.

headers

(optional) A dictionary of HTTP request headers. *Note:* Monitors and probes do not support the use of the `Authorization` HTTP header.

display_name

(required) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(required) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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_HEALTHCHECKS_CREATE_ON_DEMAND_HTTP_PROBE_DETAILS_T Type

The request body used to create an on-demand HTTP probe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_create_on_demand_http_probe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  method varchar2(32767),
  path varchar2(32767),
  headers json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_on_demand_http_probe_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_on_demand_http_probe_details_t (
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    method varchar2,
    path varchar2,
    headers json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment.

targets

(required) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(required)

Allowed values are: 'HTTP', 'HTTPS'

method

(optional)

Allowed values are: 'GET', 'HEAD'

path

(optional) The optional URL path to probe, including query parameters.

headers

(optional) A dictionary of HTTP request headers. *Note:* Monitors and probes do not support the use of the `Authorization` HTTP header.

DBMS_CLOUD_OCI_HEALTHCHECKS_CREATE_ON_DEMAND_PING_PROBE_DETAILS_T Type

The request body used to create an on-demand ping probe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_create_on_demand_ping_probe_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_on_demand_ping_probe_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_on_demand_ping_probe_details_t (
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment.

targets

(required) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(required)

Allowed values are: 'ICMP', 'TCP'

DBMS_CLOUD_OCI_HEALTHCHECKS_CREATE_PING_MONITOR_DETAILS_T Type

The request body used to create a Ping monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_create_ping_monitor_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_ping_monitor_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_create_ping_monitor_details_t (
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    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.

targets

(required) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(required)

Allowed values are: 'ICMP', 'TCP'

display_name

(required) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(required) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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_HEALTHCHECKS_DNS_T Type

The DNS resolution results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_dns_t FORCE AUTHID CURRENT_USER IS OBJECT (
  domain_lookup_duration number,
  addresses dbms_cloud_oci_healthchecks_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_dns_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_dns_t (
    domain_lookup_duration number,
    addresses dbms_cloud_oci_healthchecks_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

domain_lookup_duration

(optional) Total DNS resolution duration, in milliseconds. Calculated using `domainLookupEnd` minus `domainLookupStart`.

addresses

(optional) The addresses returned by DNS resolution.

DBMS_CLOUD_OCI_HEALTHCHECKS_ERROR_T Type

An error response.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_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. See API Errors.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_HEALTHCHECKS_GEOLOCATION_T Type

Geographic information about a vantage point.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_geolocation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  geo_key varchar2(32767),
  admin_div_code varchar2(32767),
  city_name varchar2(32767),
  country_code varchar2(32767),
  country_name varchar2(32767),
  latitude number,
  longitude number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_geolocation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_geolocation_t (
    geo_key varchar2,
    admin_div_code varchar2,
    city_name varchar2,
    country_code varchar2,
    country_name varchar2,
    latitude number,
    longitude number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

geo_key

(optional) An opaque identifier for the geographic location of the vantage point.

admin_div_code

(optional) The ISO 3166-2 code for this location's first-level administrative division, either a US state or Canadian province. Only included for locations in the US or Canada. For a list of codes, see Country Codes.

city_name

(optional) Common English-language name for the city.

country_code

(optional) The ISO 3166-1 alpha-2 country code. For a list of codes, see Country Codes.

country_name

(optional) The common English-language name for the country.

latitude

(optional) Degrees north of the Equator.

longitude

(optional) Degrees east of the prime meridian.

DBMS_CLOUD_OCI_HEALTHCHECKS_ROUTING_T Type

The routing information for a vantage point.

Syntax

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

Fields

Field Description

as_label

(optional) The registry label for `asn`, usually the name of the organization that owns the ASN. May be omitted or null.

asn

(optional) The Autonomous System Number (ASN) identifying the organization responsible for routing packets to `prefix`.

prefix

(optional) An IP prefix (CIDR syntax) that is less specific than `address`, through which `address` is routed.

weight

(optional) An integer between 0 and 100 used to select between multiple origin ASNs when routing to `prefix`. Most prefixes have exactly one origin ASN, in which case `weight` will be 100.

DBMS_CLOUD_OCI_HEALTHCHECKS_ROUTING_TBL Type

Nested table type of dbms_cloud_oci_healthchecks_routing_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_routing_tbl FORCE IS TABLE OF (dbms_cloud_oci_healthchecks_routing_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_HEALTHCHECKS_HEALTH_CHECKS_VANTAGE_POINT_SUMMARY_T Type

Information about a vantage point.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_health_checks_vantage_point_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  provider_name varchar2(32767),
  name varchar2(32767),
  geo dbms_cloud_oci_healthchecks_geolocation_t,
  routing dbms_cloud_oci_healthchecks_routing_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_health_checks_vantage_point_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_health_checks_vantage_point_summary_t (
    display_name varchar2,
    provider_name varchar2,
    name varchar2,
    geo dbms_cloud_oci_healthchecks_geolocation_t,
    routing dbms_cloud_oci_healthchecks_routing_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The display name for the vantage point. Display names are determined by the best information available and may change over time.

provider_name

(optional) The organization on whose infrastructure this vantage point resides. Provider names are not unique, as Oracle Cloud Infrastructure maintains many vantage points in each major provider.

name

(optional) The unique, permanent name for the vantage point.

geo

(optional)

routing

(optional) An array of objects that describe how traffic to this vantage point is routed, including which prefixes and ASNs connect it to the internet. The addresses are sorted from the most-specific to least-specific prefix (the smallest network to largest network). When a prefix has multiple origin ASNs (MOAS routing), they are sorted by weight (highest to lowest). Weight is determined by the total percentage of peers observing the prefix originating from an ASN. Only present if `fields` includes `routing`. The field will be null if the address's routing information is unknown.

DBMS_CLOUD_OCI_HEALTHCHECKS_HTTP_MONITOR_T Type

This model contains all of the mutable and immutable properties for an HTTP monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_http_monitor_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  results_url varchar2(32767),
  home_region varchar2(32767),
  time_created timestamp with time zone,
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  method varchar2(32767),
  path varchar2(32767),
  headers json_element_t,
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_monitor_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_monitor_t (
    id varchar2,
    results_url varchar2,
    home_region varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    method varchar2,
    path varchar2,
    headers json_element_t,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the resource.

results_url

(optional) A URL for fetching the probe results.

home_region

(optional) The region where updates must be made and where results must be fetched from.

time_created

(optional) The RFC 3339-formatted creation date and time of the probe.

compartment_id

(optional) The OCID of the compartment.

targets

(optional) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(optional)

Allowed values are: 'HTTP', 'HTTPS'

method

(optional)

Allowed values are: 'GET', 'HEAD'

path

(optional) The optional URL path to probe, including query parameters.

headers

(optional) A dictionary of HTTP request headers. *Note:* Monitors and probes do not support the use of the `Authorization` HTTP header.

display_name

(optional) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(optional) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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_HEALTHCHECKS_HTTP_MONITOR_SUMMARY_T Type

A summary containing all of the mutable and immutable properties for an HTTP monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_http_monitor_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  results_url varchar2(32767),
  home_region varchar2(32767),
  time_created timestamp with time zone,
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  protocol varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_monitor_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_monitor_summary_t (
    id varchar2,
    results_url varchar2,
    home_region varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    protocol varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the resource.

results_url

(optional) A URL for fetching the probe results.

home_region

(optional) The region where updates must be made and where results must be fetched from.

time_created

(optional) The RFC 3339-formatted creation date and time of the probe.

compartment_id

(optional) The OCID of the compartment.

display_name

(optional) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(optional) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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

protocol

(optional)

Allowed values are: 'HTTP', 'HTTPS'

DBMS_CLOUD_OCI_HEALTHCHECKS_HTTP_PROBE_T Type

A summary that contains all of the mutable and immutable properties for an HTTP probe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_http_probe_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  results_url varchar2(32767),
  home_region varchar2(32767),
  time_created timestamp with time zone,
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  method varchar2(32767),
  path varchar2(32767),
  headers json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_probe_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_probe_t (
    id varchar2,
    results_url varchar2,
    home_region varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    method varchar2,
    path varchar2,
    headers json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the resource.

results_url

(optional) A URL for fetching the probe results.

home_region

(optional) The region where updates must be made and where results must be fetched from.

time_created

(optional) The RFC 3339-formatted creation date and time of the probe.

compartment_id

(optional) The OCID of the compartment.

targets

(optional) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(optional)

Allowed values are: 'HTTP', 'HTTPS'

method

(optional)

Allowed values are: 'GET', 'HEAD'

path

(optional) The optional URL path to probe, including query parameters.

headers

(optional) A dictionary of HTTP request headers. *Note:* Monitors and probes do not support the use of the `Authorization` HTTP header.

DBMS_CLOUD_OCI_HEALTHCHECKS_TCP_CONNECTION_T Type

TCP connection results. All durations are in milliseconds.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_tcp_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  address varchar2(32767),
  port number,
  connect_duration number,
  secure_connect_duration number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_tcp_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_tcp_connection_t (
    address varchar2,
    port number,
    connect_duration number,
    secure_connect_duration number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

address

(optional) The connection IP address.

port

(optional) The port.

connect_duration

(optional) Total connect duration, calculated using `connectEnd` minus `connectStart`.

secure_connect_duration

(optional) The duration to secure the connection. This value will be zero for insecure connections. Calculated using `connectEnd` minus `secureConnectionStart`.

DBMS_CLOUD_OCI_HEALTHCHECKS_HTTP_PROBE_RESULT_SUMMARY_T Type

The results returned by running an HTTP probe. All times and durations are returned in milliseconds. All times are relative to the POSIX epoch (1970-01-01T00:00Z). Time properties conform to W3C Resource Timing. For more information, see PerformanceResourceTiming interface.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_http_probe_result_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  probe_configuration_id varchar2(32767),
  start_time number,
  target varchar2(32767),
  vantage_point_name varchar2(32767),
  is_timed_out number,
  is_healthy number,
  error_category varchar2(32767),
  error_message varchar2(32767),
  protocol varchar2(32767),
  connection dbms_cloud_oci_healthchecks_tcp_connection_t,
  dns dbms_cloud_oci_healthchecks_dns_t,
  status_code number,
  domain_lookup_start number,
  domain_lookup_end number,
  connect_start number,
  secure_connection_start number,
  connect_end number,
  fetch_start number,
  request_start number,
  response_start number,
  response_end number,
  duration number,
  encoded_body_size number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_probe_result_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_http_probe_result_summary_t (
    key varchar2,
    probe_configuration_id varchar2,
    start_time number,
    target varchar2,
    vantage_point_name varchar2,
    is_timed_out number,
    is_healthy number,
    error_category varchar2,
    error_message varchar2,
    protocol varchar2,
    connection dbms_cloud_oci_healthchecks_tcp_connection_t,
    dns dbms_cloud_oci_healthchecks_dns_t,
    status_code number,
    domain_lookup_start number,
    domain_lookup_end number,
    connect_start number,
    secure_connection_start number,
    connect_end number,
    fetch_start number,
    request_start number,
    response_start number,
    response_end number,
    duration number,
    encoded_body_size number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(optional) A value identifying this specific probe result. The key is only unique within the results of its probe configuration. The key may be reused after 90 days.

probe_configuration_id

(optional) The OCID of the monitor or on-demand probe responsible for creating this result.

start_time

(optional) The date and time the probe was executed, expressed in milliseconds since the POSIX epoch. This field is defined by the PerformanceResourceTiming interface of the W3C Resource Timing specification. For more information, see Resource Timing.

target

(optional) The target hostname or IP address of the probe.

vantage_point_name

(optional) The name of the vantage point that executed the probe.

is_timed_out

(optional) True if the probe did not complete before the configured `timeoutInSeconds` value.

is_healthy

(optional) True if the probe result is determined to be healthy based on probe type-specific criteria. For HTTP probes, a probe result is considered healthy if the HTTP response code is greater than or equal to 200 and less than 300.

error_category

(optional) The category of error if an error occurs executing the probe. The `errorMessage` field provides a message with the error details. * NONE - No error * DNS - DNS errors * TRANSPORT - Transport-related errors, for example a \"TLS certificate expired\" error. * NETWORK - Network-related errors, for example a \"network unreachable\" error. * SYSTEM - Internal system errors.

Allowed values are: 'NONE', 'DNS', 'TRANSPORT', 'NETWORK', 'SYSTEM'

error_message

(optional) The error information indicating why a probe execution failed.

protocol

(optional)

Allowed values are: 'HTTP', 'HTTPS'

connection

(optional)

dns

(optional)

status_code

(optional) The HTTP response status code.

domain_lookup_start

(optional) The time immediately before the vantage point starts the domain name lookup for the resource.

domain_lookup_end

(optional) The time immediately before the vantage point finishes the domain name lookup for the resource.

connect_start

(optional) The time immediately before the vantage point starts establishing the connection to the server to retrieve the resource.

secure_connection_start

(optional) The time immediately before the vantage point starts the handshake process to secure the current connection.

connect_end

(optional) The time immediately after the vantage point finishes establishing the connection to the server to retrieve the resource.

fetch_start

(optional) The time immediately before the vantage point starts to fetch the resource.

request_start

(optional) The time immediately before the vantage point starts requesting the resource from the server.

response_start

(optional) The time immediately after the vantage point's HTTP parser receives the first byte of the response.

response_end

(optional) The time immediately after the vantage point receives the last byte of the response or immediately before the transport connection is closed, whichever comes first.

duration

(optional) The total duration from start of request until response is fully consumed or the connection is closed.

encoded_body_size

(optional) The size, in octets, of the payload body prior to removing any applied content-codings.

DBMS_CLOUD_OCI_HEALTHCHECKS_PING_MONITOR_T Type

A summary containing all of the mutable and immutable properties for a ping monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_ping_monitor_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  results_url varchar2(32767),
  home_region varchar2(32767),
  time_created timestamp with time zone,
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_monitor_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_monitor_t (
    id varchar2,
    results_url varchar2,
    home_region varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the resource.

results_url

(optional) A URL for fetching the probe results.

home_region

(optional) The region where updates must be made and where results must be fetched from.

time_created

(optional) The RFC 3339-formatted creation date and time of the probe.

compartment_id

(optional) The OCID of the compartment.

targets

(optional) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(optional)

Allowed values are: 'ICMP', 'TCP'

display_name

(optional) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(optional) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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_HEALTHCHECKS_PING_MONITOR_SUMMARY_T Type

This model contains all of the mutable and immutable summary properties for an HTTP monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_ping_monitor_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  results_url varchar2(32767),
  home_region varchar2(32767),
  time_created timestamp with time zone,
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  protocol varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_monitor_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_monitor_summary_t (
    id varchar2,
    results_url varchar2,
    home_region varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    protocol varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the resource.

results_url

(optional) A URL for fetching the probe results.

home_region

(optional) The region where updates must be made and where results must be fetched from.

time_created

(optional) The RFC 3339-formatted creation date and time of the probe.

compartment_id

(optional) The OCID of the compartment.

display_name

(optional) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(optional) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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

protocol

(optional)

Allowed values are: 'ICMP', 'TCP'

DBMS_CLOUD_OCI_HEALTHCHECKS_PING_PROBE_T Type

This model contains all of the mutable and immutable properties for a ping probe.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_ping_probe_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  results_url varchar2(32767),
  home_region varchar2(32767),
  time_created timestamp with time zone,
  compartment_id varchar2(32767),
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_probe_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_probe_t (
    id varchar2,
    results_url varchar2,
    home_region varchar2,
    time_created timestamp with time zone,
    compartment_id varchar2,
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The OCID of the resource.

results_url

(optional) A URL for fetching the probe results.

home_region

(optional) The region where updates must be made and where results must be fetched from.

time_created

(optional) The RFC 3339-formatted creation date and time of the probe.

compartment_id

(optional) The OCID of the compartment.

targets

(optional) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(optional)

Allowed values are: 'ICMP', 'TCP'

DBMS_CLOUD_OCI_HEALTHCHECKS_PING_PROBE_RESULT_SUMMARY_T Type

The results returned by running a ping probe. All times and durations are returned in milliseconds. All times are relative to the POSIX epoch (1970-01-01T00:00Z).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_ping_probe_result_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  probe_configuration_id varchar2(32767),
  start_time number,
  target varchar2(32767),
  vantage_point_name varchar2(32767),
  is_timed_out number,
  is_healthy number,
  error_category varchar2(32767),
  error_message varchar2(32767),
  protocol varchar2(32767),
  connection dbms_cloud_oci_healthchecks_connection_t,
  dns dbms_cloud_oci_healthchecks_dns_t,
  domain_lookup_start number,
  domain_lookup_end number,
  latency_in_ms number,
  icmp_code number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_probe_result_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_ping_probe_result_summary_t (
    key varchar2,
    probe_configuration_id varchar2,
    start_time number,
    target varchar2,
    vantage_point_name varchar2,
    is_timed_out number,
    is_healthy number,
    error_category varchar2,
    error_message varchar2,
    protocol varchar2,
    connection dbms_cloud_oci_healthchecks_connection_t,
    dns dbms_cloud_oci_healthchecks_dns_t,
    domain_lookup_start number,
    domain_lookup_end number,
    latency_in_ms number,
    icmp_code number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(optional) A value identifying this specific probe result. The key is only unique within the results of its probe configuration. The key may be reused after 90 days.

probe_configuration_id

(optional) The OCID of the monitor or on-demand probe responsible for creating this result.

start_time

(optional) The date and time the probe was executed, expressed in milliseconds since the POSIX epoch. This field is defined by the PerformanceResourceTiming interface of the W3C Resource Timing specification. For more information, see Resource Timing.

target

(optional) The target hostname or IP address of the probe.

vantage_point_name

(optional) The name of the vantage point that executed the probe.

is_timed_out

(optional) True if the probe did not complete before the configured `timeoutInSeconds` value.

is_healthy

(optional) True if the probe result is determined to be healthy based on probe type-specific criteria. For HTTP probes, a probe result is considered healthy if the HTTP response code is greater than or equal to 200 and less than 300.

error_category

(optional) The category of error if an error occurs executing the probe. The `errorMessage` field provides a message with the error details. * NONE - No error * DNS - DNS errors * TRANSPORT - Transport-related errors, for example a \"TLS certificate expired\" error. * NETWORK - Network-related errors, for example a \"network unreachable\" error. * SYSTEM - Internal system errors.

Allowed values are: 'NONE', 'DNS', 'TRANSPORT', 'NETWORK', 'SYSTEM'

error_message

(optional) The error information indicating why a probe execution failed.

protocol

(optional)

Allowed values are: 'ICMP', 'TCP'

connection

(optional)

dns

(optional)

domain_lookup_start

(optional) The time immediately before the vantage point starts the domain name lookup for the resource.

domain_lookup_end

(optional) The time immediately before the vantage point finishes the domain name lookup for the resource.

latency_in_ms

(optional) The latency of the probe execution, in milliseconds.

icmp_code

(optional) The ICMP code of the response message. This field is not used when the protocol is set to TCP. For more information on ICMP codes, see Internet Control Message Protocol (ICMP) Parameters.

DBMS_CLOUD_OCI_HEALTHCHECKS_UPDATE_HTTP_MONITOR_DETAILS_T Type

The request body used to update an HTTP monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_update_http_monitor_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  method varchar2(32767),
  path varchar2(32767),
  headers json_element_t,
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_update_http_monitor_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_update_http_monitor_details_t (
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    method varchar2,
    path varchar2,
    headers json_element_t,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets

(optional) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(optional)

Allowed values are: 'HTTP', 'HTTPS'

method

(optional)

Allowed values are: 'GET', 'HEAD'

path

(optional) The optional URL path to probe, including query parameters.

headers

(optional) A dictionary of HTTP request headers. *Note:* Monitors and probes do not support the use of the `Authorization` HTTP header.

display_name

(optional) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(optional) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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_HEALTHCHECKS_UPDATE_PING_MONITOR_DETAILS_T Type

The request body used to update a ping monitor.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_healthchecks_update_ping_monitor_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets dbms_cloud_oci_healthchecks_varchar2_tbl,
  vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
  port number,
  timeout_in_seconds number,
  protocol varchar2(32767),
  display_name varchar2(32767),
  interval_in_seconds number,
  is_enabled number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_update_ping_monitor_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_healthchecks_update_ping_monitor_details_t (
    targets dbms_cloud_oci_healthchecks_varchar2_tbl,
    vantage_point_names dbms_cloud_oci_healthchecks_varchar2_tbl,
    port number,
    timeout_in_seconds number,
    protocol varchar2,
    display_name varchar2,
    interval_in_seconds number,
    is_enabled number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets

(optional) A list of targets (hostnames or IP addresses) of the probe.

vantage_point_names

(optional) A list of names of vantage points from which to execute the probe.

port

(optional) The port on which to probe endpoints. If unspecified, probes will use the default port of their protocol.

timeout_in_seconds

(optional) The probe timeout in seconds. Valid values: 10, 20, 30, and 60. The probe timeout must be less than or equal to `intervalInSeconds` for monitors.

protocol

(optional)

Allowed values are: 'ICMP', 'TCP'

display_name

(optional) A user-friendly and mutable name suitable for display in a user interface.

interval_in_seconds

(optional) The monitor interval in seconds. Valid values: 10, 30, and 60.

is_enabled

(optional) Enables or disables the monitor. Set to 'true' to launch monitoring.

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