CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_ARCHIVING_T Type 🔗
Log archiving configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_archiving_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_archiving_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_archiving_t (
is_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_enabled
(optional) True if archiving enabled. This field is now deprecated, you should use Service Connector Hub to enable archiving.
DBMS_CLOUD_OCI_LOGGING_PARAMETER_T Type 🔗
Parameters that a resource category supports.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_parameter_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
l_type varchar2(32767),
pattern varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_parameter_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_parameter_t (
name varchar2,
l_type varchar2,
pattern varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) Java regex pattern to validate a parameter value.
DBMS_CLOUD_OCI_LOGGING_PARAMETER_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_parameter_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_parameter_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_parameter_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_CATEGORY_T Type 🔗
Categories for resources.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_category_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
display_name varchar2(32767),
parameters dbms_cloud_oci_logging_parameter_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_category_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_category_t (
name varchar2,
display_name varchar2,
parameters dbms_cloud_oci_logging_parameter_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_CHANGE_LOG_GROUP_COMPARTMENT_DETAILS_T Type 🔗
Contains details indicating which compartment the resource should move to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_change_log_group_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_log_group_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_log_group_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The compartment into which the resource should be moved.
DBMS_CLOUD_OCI_LOGGING_CHANGE_LOG_LOG_GROUP_DETAILS_T Type 🔗
Contains details indicating which log group the log should move to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_change_log_log_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
target_log_group_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_log_log_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_log_log_group_details_t (
target_log_group_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
target_log_group_id
(optional) Log group OCID.
DBMS_CLOUD_OCI_LOGGING_CHANGE_LOG_SAVED_SEARCH_COMPARTMENT_DETAILS_T Type 🔗
Contains details indicating which compartment the resource should move to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_change_log_saved_search_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_log_saved_search_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_log_saved_search_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_LOGGING_CHANGE_UNIFIED_AGENT_CONFIGURATION_COMPARTMENT_DETAILS_T Type 🔗
Contains details indicating which compartment the resource should move to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_change_unified_agent_configuration_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_unified_agent_configuration_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_change_unified_agent_configuration_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_LOGGING_SOURCE_T Type 🔗
The source the log object comes from.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_source_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_source_t (
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
source_type
(required) The log source. * **OCISERVICE:** Oracle Service.
Allowed values are: 'OCISERVICE'
DBMS_CLOUD_OCI_LOGGING_CONFIGURATION_T Type 🔗
Log object configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
source dbms_cloud_oci_logging_source_t,
archiving dbms_cloud_oci_logging_archiving_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_configuration_t (
compartment_id varchar2,
source dbms_cloud_oci_logging_source_t,
archiving dbms_cloud_oci_logging_archiving_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) The OCID of the compartment that the resource belongs to.
source
(required)
archiving
(optional)
DBMS_CLOUD_OCI_LOGGING_CREATE_LOG_DETAILS_T Type 🔗
The details to create a log object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_create_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
log_type varchar2(32767),
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
configuration dbms_cloud_oci_logging_configuration_t,
retention_duration number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_log_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_log_details_t (
display_name varchar2,
log_type varchar2,
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
configuration dbms_cloud_oci_logging_configuration_t,
retention_duration number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
log_type
(required) The logType that the log object is for, whether custom or service.
Allowed values are: 'CUSTOM', 'SERVICE'
is_enabled
(optional) Whether or not this resource is currently enabled.
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\"}}`
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\"}`
configuration
(optional)
retention_duration
(optional) Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
DBMS_CLOUD_OCI_LOGGING_CREATE_LOG_GROUP_DETAILS_T Type 🔗
The details to create a log group.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_create_log_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_log_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_log_group_details_t (
compartment_id varchar2,
display_name varchar2,
description varchar2,
defined_tags json_element_t,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment that the resource belongs to.
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
description
(optional) Description for this resource.
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\"}}`
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\"}`
DBMS_CLOUD_OCI_LOGGING_CREATE_LOG_SAVED_SEARCH_DETAILS_T Type 🔗
A LogSavedSearch that can be used to save and share a given search result.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_create_log_saved_search_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
name varchar2(32767),
description varchar2(32767),
query varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_log_saved_search_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_log_saved_search_details_t (
compartment_id varchar2,
name varchar2,
description varchar2,
query varchar2,
defined_tags json_element_t,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment that the resource belongs to.
name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
description
(optional) Description for this resource.
query
(required) The search query that is saved.
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\"}}`
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\"}`
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_SERVICE_CONFIGURATION_DETAILS_T Type 🔗
Top level Unified Agent service configuration object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_service_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
configuration_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_service_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_service_configuration_details_t (
configuration_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
configuration_type
(required) Type of Unified Agent service configuration.
Allowed values are: 'LOGGING'
DBMS_CLOUD_OCI_LOGGING_GROUP_ASSOCIATION_DETAILS_T Type 🔗
Groups using the configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_group_association_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
group_list dbms_cloud_oci_logging_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_group_association_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_group_association_details_t (
group_list dbms_cloud_oci_logging_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
group_list
(optional) list of group/dynamic group ids associated with this configuration.
DBMS_CLOUD_OCI_LOGGING_CREATE_UNIFIED_AGENT_CONFIGURATION_DETAILS_T Type 🔗
Unified Agent configuration creation object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_create_unified_agent_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
is_enabled number,
service_configuration dbms_cloud_oci_logging_unified_agent_service_configuration_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
compartment_id varchar2(32767),
description varchar2(32767),
group_association dbms_cloud_oci_logging_group_association_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_unified_agent_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_create_unified_agent_configuration_details_t (
display_name varchar2,
is_enabled number,
service_configuration dbms_cloud_oci_logging_unified_agent_service_configuration_details_t,
defined_tags json_element_t,
freeform_tags json_element_t,
compartment_id varchar2,
description varchar2,
group_association dbms_cloud_oci_logging_group_association_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
is_enabled
(required) Whether or not this resource is currently enabled.
service_configuration
(required)
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\"}}`
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\"}`
compartment_id
(required) The OCID of the compartment that the resource belongs to.
description
(optional) Description for this resource.
group_association
(optional)
DBMS_CLOUD_OCI_LOGGING_ERROR_T Type 🔗
An error has occurred.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_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_LOGGING_GROK_PATTERN_T Type 🔗
Grok pattern object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_grok_pattern_t FORCE AUTHID CURRENT_USER IS OBJECT (
pattern varchar2(32767),
name varchar2(32767),
field_time_key varchar2(32767),
field_time_format varchar2(32767),
field_time_zone varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_grok_pattern_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_grok_pattern_t (
pattern varchar2,
name varchar2,
field_time_key varchar2,
field_time_format varchar2,
field_time_zone varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
pattern
(required) The Grok pattern.
name
(optional) The name key to tag this Grok pattern.
field_time_key
(optional) Specify the time field for the event time. If the event doesn't have this field, the current time is used.
field_time_format
(optional) Process value using the specified format. This is available only when time_type is a string.
field_time_zone
(optional) Use the specified time zone. The time value can be parsed or formatted in the specified time zone.
DBMS_CLOUD_OCI_LOGGING_LOG_T Type 🔗
Represents a log object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
tenancy_id varchar2(32767),
log_group_id varchar2(32767),
display_name varchar2(32767),
log_type varchar2(32767),
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
configuration dbms_cloud_oci_logging_configuration_t,
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
retention_duration number,
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_t (
id varchar2,
tenancy_id varchar2,
log_group_id varchar2,
display_name varchar2,
log_type varchar2,
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
configuration dbms_cloud_oci_logging_configuration_t,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
retention_duration number,
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
tenancy_id
(optional) The OCID of the tenancy.
log_group_id
(required) Log group OCID.
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
log_type
(required) The logType that the log object is for, whether custom or service.
Allowed values are: 'CUSTOM', 'SERVICE'
is_enabled
(optional) Whether or not this resource is currently enabled.
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\"}}`
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\"}`
(optional) Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
compartment_id
(optional) The OCID of the compartment that the resource belongs to.
DBMS_CLOUD_OCI_LOGGING_LOG_GROUP_T Type 🔗
Represents a LogGroup object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_group_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_group_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_group_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
lifecycle_state varchar2,
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
compartment_id
(required) The OCID of the compartment that the resource belongs to.
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
(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\"}}`
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\"}`
time_created
(optional) Time the resource was created.
time_last_modified
(optional) Time the resource was last modified.
DBMS_CLOUD_OCI_LOGGING_LOG_GROUP_SUMMARY_T Type 🔗
Log group configuration summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_group_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_group_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_group_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
compartment_id
(required) The OCID of the compartment that the resource belongs to.
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
description
(optional) Description for this resource.
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\"}}`
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\"}`
A LogSavedSearch that can be used to save and share a given search result.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_saved_search_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
name varchar2(32767),
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
description varchar2(32767),
query varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_saved_search_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_saved_search_t (
id varchar2,
compartment_id varchar2,
name varchar2,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
description varchar2,
query varchar2,
defined_tags json_element_t,
freeform_tags json_element_t,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
compartment_id
(required) The OCID of the compartment that the resource belongs to.
name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
time_created
(optional) Time the resource was created.
time_last_modified
(optional) Time the resource was last modified.
description
(optional) Description for this resource.
query
(required) The search query that is saved.
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\"}}`
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\"}`
DBMS_CLOUD_OCI_LOGGING_LOG_SAVED_SEARCH_SUMMARY_T Type 🔗
A summary of a LogSavedSearch that can be used to save and share a given search result.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_saved_search_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
name varchar2(32767),
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
description varchar2(32767),
query varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_saved_search_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_saved_search_summary_t (
id varchar2,
compartment_id varchar2,
name varchar2,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
description varchar2,
query varchar2,
defined_tags json_element_t,
freeform_tags json_element_t,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
compartment_id
(required) The OCID of the compartment that the resource belongs to.
name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
time_created
(optional) Time the resource was created.
time_last_modified
(optional) Time the resource was last modified.
description
(optional) Description for this resource.
query
(optional) The search query that is saved.
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\"}}`
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\"}`
DBMS_CLOUD_OCI_LOGGING_LOG_SAVED_SEARCH_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_log_saved_search_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_saved_search_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_log_saved_search_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_LOG_SAVED_SEARCH_SUMMARY_COLLECTION_T Type 🔗
A collection of LogSavedSearchSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_saved_search_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_logging_log_saved_search_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_saved_search_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_saved_search_summary_collection_t (
items dbms_cloud_oci_logging_log_saved_search_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The Saved Seach Summaries
DBMS_CLOUD_OCI_LOGGING_LOG_SUMMARY_T Type 🔗
Log object configuration summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_log_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
log_group_id varchar2(32767),
display_name varchar2(32767),
is_enabled number,
lifecycle_state varchar2(32767),
log_type varchar2(32767),
configuration dbms_cloud_oci_logging_configuration_t,
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
retention_duration number,
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_log_summary_t (
id varchar2,
log_group_id varchar2,
display_name varchar2,
is_enabled number,
lifecycle_state varchar2,
log_type varchar2,
configuration dbms_cloud_oci_logging_configuration_t,
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
retention_duration number,
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
log_group_id
(required) Log group OCID.
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
is_enabled
(optional) Whether or not this resource is currently enabled.
(required) The logType that the log object is for, whether custom or service.
Allowed values are: 'CUSTOM', 'SERVICE'
configuration
(optional)
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\"}}`
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\"}`
time_created
(optional) Time the resource was created.
time_last_modified
(optional) Time the resource was last modified.
retention_duration
(optional) Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
compartment_id
(optional) The OCID of the compartment that the resource belongs to.
DBMS_CLOUD_OCI_LOGGING_OCI_SERVICE_T Type 🔗
OCI service logging configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_oci_service_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_source_t (
service varchar2(32767),
l_resource varchar2(32767),
category varchar2(32767),
parameters json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_oci_service_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_oci_service_t (
source_type varchar2,
service varchar2,
l_resource varchar2,
category varchar2,
parameters json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_oci_service_t is a subtype of the dbms_cloud_oci_logging_source_t type.
Fields
Field
Description
service
(required) Service generating log.
l_resource
(required) The unique identifier of the resource emitting the log.
category
(required) Log object category.
parameters
(optional) Log category parameters are stored here.
DBMS_CLOUD_OCI_LOGGING_OPERATIONAL_METRICS_RECORD_INPUT_T Type 🔗
Record section of OperationalMetricsSource object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_operational_metrics_record_input_t FORCE AUTHID CURRENT_USER IS OBJECT (
namespace varchar2(32767),
resource_group varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_record_input_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_record_input_t (
namespace varchar2,
resource_group varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
namespace
(required) Namespace to emit the operational metrics.
resource_group
(optional) Resource group to emit the operational metrics.
DBMS_CLOUD_OCI_LOGGING_OPERATIONAL_METRICS_SOURCE_T Type 🔗
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_operational_metrics_source_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
metrics dbms_cloud_oci_logging_varchar2_tbl,
record_input dbms_cloud_oci_logging_operational_metrics_record_input_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_source_t (
l_type varchar2,
metrics dbms_cloud_oci_logging_varchar2_tbl,
record_input dbms_cloud_oci_logging_operational_metrics_record_input_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_type
(required) Type of the unified monitoring agent operational metrics source object.
Allowed values are: 'UMA_METRICS'
metrics
(optional) List of unified monitoring agent operational metrics.
record_input
(optional)
DBMS_CLOUD_OCI_LOGGING_OPERATIONAL_METRICS_DESTINATION_T Type 🔗
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_operational_metrics_destination_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_destination_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_destination_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment that the resource belongs to.
DBMS_CLOUD_OCI_LOGGING_OPERATIONAL_METRICS_CONFIGURATION_T Type 🔗
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_operational_metrics_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
source dbms_cloud_oci_logging_operational_metrics_source_t,
destination dbms_cloud_oci_logging_operational_metrics_destination_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_operational_metrics_configuration_t (
source dbms_cloud_oci_logging_operational_metrics_source_t,
destination dbms_cloud_oci_logging_operational_metrics_destination_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source
(required)
destination
(required)
DBMS_CLOUD_OCI_LOGGING_CATEGORY_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_category_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_category_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_category_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_RESOURCE_TYPE_T Type 🔗
Type of resource that a service provides.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_resource_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
categories dbms_cloud_oci_logging_category_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_resource_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_resource_type_t (
name varchar2,
categories dbms_cloud_oci_logging_category_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Resource type name.
categories
(optional) Categories for resources.
DBMS_CLOUD_OCI_LOGGING_RESOURCE_TYPE_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_resource_type_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_resource_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_resource_type_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_SERVICE_SUMMARY_T Type 🔗
Summary of services that are integrated with public logging.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_service_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
tenant_id varchar2(32767),
namespace varchar2(32767),
service_principal_name varchar2(32767),
endpoint varchar2(32767),
name varchar2(32767),
id varchar2(32767),
resource_types dbms_cloud_oci_logging_resource_type_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_service_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_service_summary_t (
tenant_id varchar2,
namespace varchar2,
service_principal_name varchar2,
endpoint varchar2,
name varchar2,
id varchar2,
resource_types dbms_cloud_oci_logging_resource_type_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
tenant_id
(required) Tenant OCID.
namespace
(optional) Apollo project namespace, if any.
service_principal_name
(required) Service ID as set in Service Principal.
endpoint
(required) Service endpoint.
name
(required) User-friendly service name.
id
(optional) Service ID.
resource_types
(required) Type of resource that a service provides.
DBMS_CLOUD_OCI_LOGGING_SOURCE_UPDATE_DETAILS_T Type 🔗
Source updated configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_source_update_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
parameters json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_source_update_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_source_update_details_t (
parameters json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
parameters
(optional) Log category parameters are stored here.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_PARSER_T Type 🔗
Source parser object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_parser_t FORCE AUTHID CURRENT_USER IS OBJECT (
parser_type varchar2(32767),
field_time_key varchar2(32767),
types json_element_t,
null_value_pattern varchar2(32767),
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Specifies the time field for the event time. If the event doesn't have this field, the current time is used.
types
(optional) Specify types for converting a field into another type. For example, With this configuration: <parse> @type csv keys time,host,req_id,user time_key time </parse> This incoming event: \"2013/02/28 12:00:00,192.168.0.1,111,-\" is parsed as: 1362020400 (2013/02/28/ 12:00:00) record: { \"host\" : \"192.168.0.1\", \"req_id\" : \"111\", \"user\" : \"-\" }
null_value_pattern
(optional) Specify the null value pattern.
is_null_empty_string
(optional) If true, an empty string field is replaced with a null value.
is_estimate_current_event
(optional) If true, use Fluent::EventTime.now(current time) as a timestamp when the time_key is specified.
is_keep_time_key
(optional) If true, keep the time field in the record.
timeout_in_milliseconds
(optional) Specify the timeout for parse processing. This is mainly for detecting an incorrect regexp pattern.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_APACHE2_PARSER_T Type 🔗
Apache 2 log parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_apache2_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_apache2_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_apache2_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_apache2_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_APACHE_ERROR_PARSER_T Type 🔗
Apache error log parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_apache_error_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_apache_error_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_apache_error_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_apache_error_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_AUDITD_PARSER_T Type 🔗
auditd parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_auditd_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_auditd_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_auditd_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_auditd_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_CONFIGURATION_T Type 🔗
Top Unified Agent configuration object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
lifecycle_state varchar2(32767),
is_enabled number,
configuration_state varchar2(32767),
service_configuration dbms_cloud_oci_logging_unified_agent_service_configuration_details_t,
group_association dbms_cloud_oci_logging_group_association_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_configuration_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
lifecycle_state varchar2,
is_enabled number,
configuration_state varchar2,
service_configuration dbms_cloud_oci_logging_unified_agent_service_configuration_details_t,
group_association dbms_cloud_oci_logging_group_association_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
compartment_id
(required) The OCID of the compartment that the resource belongs to.
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
description
(optional) Description for this resource.
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\"}}`
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\"}`
(required) Whether or not this resource is currently enabled.
configuration_state
(required) State of unified agent service configuration.
Allowed values are: 'VALID', 'INVALID'
service_configuration
(required)
group_association
(required)
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_CONFIGURATION_SUMMARY_T Type 🔗
Unified Agent configuration summary object returned by the list API.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_configuration_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
lifecycle_state varchar2(32767),
is_enabled number,
configuration_type varchar2(32767),
configuration_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_configuration_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_configuration_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
defined_tags json_element_t,
freeform_tags json_element_t,
time_created timestamp with time zone,
time_last_modified timestamp with time zone,
lifecycle_state varchar2,
is_enabled number,
configuration_type varchar2,
configuration_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) The OCID of the resource.
compartment_id
(required) The OCID of the compartment that the resource belongs to.
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
description
(optional) Description for this resource.
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\"}}`
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\"}`
(required) Whether or not this resource is currently enabled.
configuration_type
(required) Type of Unified Agent service configuration.
Allowed values are: 'LOGGING'
configuration_state
(required) State of unified agent service configuration.
Allowed values are: 'VALID', 'INVALID'
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_CONFIGURATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_unified_agent_configuration_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_configuration_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_unified_agent_configuration_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_CONFIGURATION_COLLECTION_T Type 🔗
Results of a UnifiedAgentConfiguration search. Contains UnifiedAgentConfigurationSummary items.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_configuration_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_logging_unified_agent_configuration_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_configuration_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_configuration_collection_t (
items dbms_cloud_oci_logging_unified_agent_configuration_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of UnifiedAgentConfigurationSummary.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_JSON_PARSER_T Type 🔗
JSON parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_json_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
time_type varchar2(32767),
time_format varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_json_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_json_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
time_type varchar2,
time_format varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_json_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
time_type
(optional) JSON parser time type.
Allowed values are: 'FLOAT', 'UNIXTIME', 'STRING'
time_format
(optional) Process time value using the specified format.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_CRI_PARSER_T Type 🔗
CRI parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_cri_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
is_merge_cri_fields number,
nested_parser dbms_cloud_oci_logging_unified_json_parser_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_cri_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_cri_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
is_merge_cri_fields number,
nested_parser dbms_cloud_oci_logging_unified_json_parser_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_cri_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
is_merge_cri_fields
(optional) If you don't need stream or logtag fields, set this to false.
nested_parser
(optional) Optional nested JSON Parser for CRI. Supported fields are fieldTimeKey, timeFormat, and isKeepTimeKey.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_CSV_PARSER_T Type 🔗
CSV Parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_csv_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
delimiter varchar2(32767),
keys dbms_cloud_oci_logging_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_csv_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_csv_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
delimiter varchar2,
keys dbms_cloud_oci_logging_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_csv_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
delimiter
(optional) CSV delimiter.
keys
(required) CSV keys.
DBMS_CLOUD_OCI_LOGGING_GROK_PATTERN_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_grok_pattern_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_grok_pattern_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_grok_pattern_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_GROK_PARSER_T Type 🔗
Grok parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_grok_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
grok_name_key varchar2(32767),
grok_failure_key varchar2(32767),
patterns dbms_cloud_oci_logging_grok_pattern_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_grok_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_grok_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
grok_name_key varchar2,
grok_failure_key varchar2,
patterns dbms_cloud_oci_logging_grok_pattern_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_grok_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
grok_name_key
(optional) Grok name key.
grok_failure_key
(optional) Grok failure key.
patterns
(required) Grok pattern object.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_LOGGING_SOURCE_T Type 🔗
Logging source object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_logging_source_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_logging_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_logging_source_t (
name varchar2,
source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_LOGGING_DESTINATION_T Type 🔗
Logging destination object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_logging_destination_t FORCE AUTHID CURRENT_USER IS OBJECT (
log_object_id varchar2(32767),
operational_metrics_configuration dbms_cloud_oci_logging_operational_metrics_configuration_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_logging_destination_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_logging_destination_t (
log_object_id varchar2,
operational_metrics_configuration dbms_cloud_oci_logging_operational_metrics_configuration_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
log_object_id
(required) The OCID of the resource.
operational_metrics_configuration
(optional)
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_LOGGING_SOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_unified_agent_logging_source_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_logging_source_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_unified_agent_logging_source_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_LOGGING_CONFIGURATION_T Type 🔗
Unified Agent logging service configuration object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_logging_configuration_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_service_configuration_details_t (
sources dbms_cloud_oci_logging_unified_agent_logging_source_tbl,
destination dbms_cloud_oci_logging_unified_agent_logging_destination_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_logging_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_logging_configuration_t (
configuration_type varchar2,
sources dbms_cloud_oci_logging_unified_agent_logging_source_tbl,
destination dbms_cloud_oci_logging_unified_agent_logging_destination_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_logging_configuration_t is a subtype of the dbms_cloud_oci_logging_unified_agent_service_configuration_details_t type.
Fields
Field
Description
sources
(required) Logging source object.
destination
(required)
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_MSGPACK_PARSER_T Type 🔗
Msgpack parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_msgpack_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_msgpack_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_msgpack_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_msgpack_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_MULTILINE_GROK_PARSER_T Type 🔗
Multiline grok parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_multiline_grok_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
grok_name_key varchar2(32767),
grok_failure_key varchar2(32767),
multi_line_start_regexp varchar2(32767),
patterns dbms_cloud_oci_logging_grok_pattern_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_multiline_grok_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_multiline_grok_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
grok_name_key varchar2,
grok_failure_key varchar2,
multi_line_start_regexp varchar2,
patterns dbms_cloud_oci_logging_grok_pattern_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_multiline_grok_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
grok_name_key
(optional) Grok name key.
grok_failure_key
(optional) Grok failure key.
multi_line_start_regexp
(optional) Multiline start regexp pattern.
patterns
(required) Grok pattern object.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_MULTILINE_PARSER_T Type 🔗
Multiline parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_multiline_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
format_firstline varchar2(32767),
format dbms_cloud_oci_logging_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_multiline_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_multiline_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
format_firstline varchar2,
format dbms_cloud_oci_logging_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_multiline_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
format_firstline
(optional) First line pattern format.
format
(required) Mutiline pattern format.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_NONE_PARSER_T Type 🔗
This parser signifies a non-parser, and puts the entire log line in a message_key.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_none_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
message_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_none_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_none_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
message_key varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_none_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
message_key
(optional) Specifies the field name to contain logs.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_REGEX_PARSER_T Type 🔗
Regexp parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_regex_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
expression varchar2(32767),
time_format varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_regex_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_regex_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
expression varchar2,
time_format varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_regex_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
expression
(required) Regex pattern.
time_format
(optional) Time format.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_SYSLOG_PARSER_T Type 🔗
Syslog Parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_syslog_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
time_format varchar2(32767),
rfc5424_time_format varchar2(32767),
message_format varchar2(32767),
is_with_priority number,
is_support_colonless_ident number,
syslog_parser_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_syslog_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_syslog_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
time_format varchar2,
rfc5424_time_format varchar2,
message_format varchar2,
is_with_priority number,
is_support_colonless_ident number,
syslog_parser_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_syslog_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
time_format
(optional) Time format.
rfc5424_time_format
(optional) RFC 5424 time format.
message_format
(optional) Syslog message format.
Allowed values are: 'RFC3164', 'RFC5424', 'AUTO'
is_with_priority
(optional) Specifies with priority or not. Corresponds to the Fluentd with_priority parameter.
is_support_colonless_ident
(optional) Specifies whether or not to support colonless ident. Corresponds to the Fluentd support_colonless_ident parameter.
syslog_parser_type
(optional) Syslog parser type.
Allowed values are: 'STRING', 'REGEXP'
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_TAIL_LOG_SOURCE_T Type 🔗
Tail log source object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_tail_log_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_logging_source_t (
paths dbms_cloud_oci_logging_varchar2_tbl,
parser dbms_cloud_oci_logging_unified_agent_parser_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_tail_log_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_tail_log_source_t (
name varchar2,
source_type varchar2,
paths dbms_cloud_oci_logging_varchar2_tbl,
parser dbms_cloud_oci_logging_unified_agent_parser_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_tail_log_source_t is a subtype of the dbms_cloud_oci_logging_unified_agent_logging_source_t type.
Fields
Field
Description
paths
(required) Absolute paths for log source files. Wildcards can be used.
parser
(optional)
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_TSV_PARSER_T Type 🔗
TSV Parser.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_tsv_parser_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_parser_t (
delimiter varchar2(32767),
keys dbms_cloud_oci_logging_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_tsv_parser_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_tsv_parser_t (
parser_type varchar2,
field_time_key varchar2,
types json_element_t,
null_value_pattern varchar2,
is_null_empty_string number,
is_estimate_current_event number,
is_keep_time_key number,
timeout_in_milliseconds number,
delimiter varchar2,
keys dbms_cloud_oci_logging_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_tsv_parser_t is a subtype of the dbms_cloud_oci_logging_unified_agent_parser_t type.
Fields
Field
Description
delimiter
(optional) TSV delimiter.
keys
(required) TSV keys.
DBMS_CLOUD_OCI_LOGGING_UNIFIED_AGENT_WINDOWS_EVENT_SOURCE_T Type 🔗
Windows events log source object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_unified_agent_windows_event_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_logging_unified_agent_logging_source_t (
channels dbms_cloud_oci_logging_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_windows_event_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_unified_agent_windows_event_source_t (
name varchar2,
source_type varchar2,
channels dbms_cloud_oci_logging_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_logging_unified_agent_windows_event_source_t is a subtype of the dbms_cloud_oci_logging_unified_agent_logging_source_t type.
Fields
Field
Description
channels
(required) Windows event log channels.
DBMS_CLOUD_OCI_LOGGING_UPDATE_CONFIGURATION_DETAILS_T Type 🔗
The updatable configuration properties.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_update_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source dbms_cloud_oci_logging_source_update_details_t,
archiving dbms_cloud_oci_logging_archiving_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_configuration_details_t (
source dbms_cloud_oci_logging_source_update_details_t,
archiving dbms_cloud_oci_logging_archiving_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source
(required)
archiving
(optional)
DBMS_CLOUD_OCI_LOGGING_UPDATE_LOG_DETAILS_T Type 🔗
Update log object properties.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_update_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
retention_duration number,
configuration dbms_cloud_oci_logging_update_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_log_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_log_details_t (
display_name varchar2,
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
retention_duration number,
configuration dbms_cloud_oci_logging_update_configuration_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
is_enabled
(optional) Whether or not this resource is currently enabled.
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\"}}`
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\"}`
retention_duration
(optional) Log retention duration in 30-day increments (30, 60, 90 and so on until 180).
configuration
(optional)
DBMS_CLOUD_OCI_LOGGING_UPDATE_LOG_GROUP_DETAILS_T Type 🔗
The details to update a log group.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_update_log_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_log_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_log_group_details_t (
display_name varchar2,
description varchar2,
defined_tags json_element_t,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
description
(optional) Description for this resource.
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\"}}`
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\"}`
DBMS_CLOUD_OCI_LOGGING_UPDATE_LOG_SAVED_SEARCH_DETAILS_T Type 🔗
The update details to update a LogSavedSearch.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_update_log_saved_search_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
description varchar2(32767),
query varchar2(32767),
defined_tags json_element_t,
freeform_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_log_saved_search_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_log_saved_search_details_t (
name varchar2,
description varchar2,
query varchar2,
defined_tags json_element_t,
freeform_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
description
(optional) Description for this resource.
query
(optional) The search query that is saved.
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\"}}`
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\"}`
DBMS_CLOUD_OCI_LOGGING_UPDATE_UNIFIED_AGENT_CONFIGURATION_DETAILS_T Type 🔗
Update Object for the Unified Agent configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_update_unified_agent_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
description varchar2(32767),
service_configuration dbms_cloud_oci_logging_unified_agent_service_configuration_details_t,
group_association dbms_cloud_oci_logging_group_association_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_unified_agent_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_update_unified_agent_configuration_details_t (
display_name varchar2,
is_enabled number,
defined_tags json_element_t,
freeform_tags json_element_t,
description varchar2,
service_configuration dbms_cloud_oci_logging_unified_agent_service_configuration_details_t,
group_association dbms_cloud_oci_logging_group_association_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information.
is_enabled
(required) Whether or not this resource is currently enabled.
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\"}}`
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\"}`
description
(optional) Description for this resource.
service_configuration
(required)
group_association
(optional)
DBMS_CLOUD_OCI_LOGGING_WORK_REQUEST_RESOURCE_T Type 🔗
A resource created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_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_logging_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_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 work request affects.
action_type
(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted 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.
(required) The resource identifier the work request affects.
entity_uri
(optional) The URI path that the user can do a GET on to access the resource metadata.
DBMS_CLOUD_OCI_LOGGING_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_logging_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_logging_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_LOGGING_WORK_REQUEST_T Type 🔗
A work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
operation_type varchar2(32767),
status varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_logging_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_logging_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_work_request_t (
id varchar2,
operation_type varchar2,
status varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_logging_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
id
(required) The work request OCID.
operation_type
(required) The type of work the work request is doing.
(required) The resources this work request affects.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The time the work request was accepted.
time_started
(optional) The time the work request was started.
time_finished
(optional) The time the work request was finished.
DBMS_CLOUD_OCI_LOGGING_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_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_logging_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_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 at https://docs.us-phoenix-1.oraclecloud.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 date and time string.
DBMS_CLOUD_OCI_LOGGING_WORK_REQUEST_LOG_T Type 🔗
A log message from the execution of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_work_request_log_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_work_request_log_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_work_request_log_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 date and time string.
DBMS_CLOUD_OCI_LOGGING_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_logging_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
operation_type varchar2(32767),
status varchar2(32767),
compartment_id varchar2(32767),
resources dbms_cloud_oci_logging_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_logging_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_logging_work_request_summary_t (
id varchar2,
operation_type varchar2,
status varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_logging_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
id
(optional) The OCID of the work request.
operation_type
(optional) The type of work the work request is doing.