Logging Common Types
DBMS_CLOUD_OCI_LOGGING_VARCHAR2_TBL Type
Nested table type of varchar2(32767).
Syntax
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 |
---|---|
|
(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;
Fields
Field | Description |
---|---|
|
(required) Parameter name. |
|
(required) Allowed values are: 'integer', 'string', 'boolean' |
|
(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;
Fields
Field | Description |
---|---|
|
(optional) Category name. |
|
(optional) Category display name. Avoid entering confidential information. |
|
(optional) Parameters the category supports. |
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 |
---|---|
|
(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 |
---|---|
|
(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 |
---|---|
|
(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 |
---|---|
|
(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 |
---|---|
|
(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 |
---|---|
|
(optional) The OCID of the compartment that the resource belongs to. |
|
(required) |
|
(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 |
---|---|
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(required) The logType that the log object is for, whether custom or service. Allowed values are: 'CUSTOM', 'SERVICE' |
|
(optional) Whether or not this resource is currently enabled. |
|
(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\"}}` |
|
(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) |
|
(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 |
---|---|
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(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\"}}` |
|
(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 |
---|---|
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(required) The search query that is saved. |
|
(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\"}}` |
|
(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 |
---|---|
|
(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 |
---|---|
|
(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 |
---|---|
|
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(required) Whether or not this resource is currently enabled. |
|
(required) |
|
(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\"}}` |
|
(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) The OCID of the compartment that the resource belongs to. |
|
(optional) Description for this resource. |
|
(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 |
---|---|
|
(required) A short error code that defines the error, meant for programmatic parsing. |
|
(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 |
---|---|
|
(required) The Grok pattern. |
|
(optional) The name key to tag this Grok pattern. |
|
(optional) Specify the time field for the event time. If the event doesn't have this field, the current time is used. |
|
(optional) Process value using the specified format. This is available only when time_type is a string. |
|
(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 |
---|---|
|
(required) The OCID of the resource. |
|
(optional) The OCID of the tenancy. |
|
(required) Log group OCID. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(required) The logType that the log object is for, whether custom or service. Allowed values are: 'CUSTOM', 'SERVICE' |
|
(optional) Whether or not this resource is currently enabled. |
|
(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\"}}` |
|
(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) |
|
(required) The pipeline state. Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
|
(optional) Time the resource was created. |
|
(optional) Time the resource was last modified. |
|
(optional) Log retention duration in 30-day increments (30, 60, 90 and so on until 180). |
|
(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 |
---|---|
|
(required) The OCID of the resource. |
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(optional) The log group object state. Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
|
(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\"}}` |
|
(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) Time the resource was created. |
|
(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 |
---|---|
|
(required) The OCID of the resource. |
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(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\"}}` |
|
(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) Time the resource was created. |
|
(optional) Time the resource was last modified. |
|
(optional) The log group object state. Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
DBMS_CLOUD_OCI_LOGGING_LOG_SAVED_SEARCH_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_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 |
---|---|
|
(required) The OCID of the resource. |
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Time the resource was created. |
|
(optional) Time the resource was last modified. |
|
(optional) Description for this resource. |
|
(required) The search query that is saved. |
|
(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\"}}` |
|
(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) The state of the LogSavedSearch Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
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 |
---|---|
|
(required) The OCID of the resource. |
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Time the resource was created. |
|
(optional) Time the resource was last modified. |
|
(optional) Description for this resource. |
|
(optional) The search query that is saved. |
|
(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\"}}` |
|
(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) The state of the LogSavedSearch Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
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 |
---|---|
|
(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 |
---|---|
|
(required) The OCID of the resource. |
|
(required) Log group OCID. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Whether or not this resource is currently enabled. |
|
(required) The pipeline state. Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
|
(required) The logType that the log object is for, whether custom or service. Allowed values are: 'CUSTOM', 'SERVICE' |
|
(optional) |
|
(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\"}}` |
|
(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) Time the resource was created. |
|
(optional) Time the resource was last modified. |
|
(optional) Log retention duration in 30-day increments (30, 60, 90 and so on until 180). |
|
(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 |
---|---|
|
(required) Service generating log. |
|
(required) The unique identifier of the resource emitting the log. |
|
(required) Log object category. |
|
(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 |
---|---|
|
(required) Namespace to emit the operational metrics. |
|
(optional) Resource group to emit the operational metrics. |
DBMS_CLOUD_OCI_LOGGING_OPERATIONAL_METRICS_SOURCE_T Type
Unified monitoring agent operational metrics source object.
Syntax
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 |
---|---|
|
(required) Type of the unified monitoring agent operational metrics source object. Allowed values are: 'UMA_METRICS' |
|
(optional) List of unified monitoring agent operational metrics. |
|
(optional) |
DBMS_CLOUD_OCI_LOGGING_OPERATIONAL_METRICS_DESTINATION_T Type
Unified monitoring agent operational metrics destination object.
Syntax
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 |
---|---|
|
(required) The OCID of the compartment that the resource belongs to. |
DBMS_CLOUD_OCI_LOGGING_OPERATIONAL_METRICS_CONFIGURATION_T Type
Unified monitoring agent operational metrics configuration object.
Syntax
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 |
---|---|
|
(required) |
|
(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 |
---|---|
|
(optional) Resource type name. |
|
(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 |
---|---|
|
(required) Tenant OCID. |
|
(optional) Apollo project namespace, if any. |
|
(required) Service ID as set in Service Principal. |
|
(required) Service endpoint. |
|
(required) User-friendly service name. |
|
(optional) Service ID. |
|
(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 |
---|---|
|
(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;
Fields
Field | Description |
---|---|
|
(required) Type of fluent parser. Allowed values are: 'AUDITD', 'CRI', 'JSON', 'TSV', 'CSV', 'NONE', 'SYSLOG', 'APACHE2', 'APACHE_ERROR', 'MSGPACK', 'REGEXP', 'MULTILINE', 'GROK', 'MULTILINE_GROK' |
|
(optional) Specifies the time field for the event time. If the event doesn't have this field, the current time is used. |
|
(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\" : \"-\" } |
|
(optional) Specify the null value pattern. |
|
(optional) If true, an empty string field is replaced with a null value. |
|
(optional) If true, use Fluent::EventTime.now(current time) as a timestamp when the time_key is specified. |
|
(optional) If true, keep the time field in the record. |
|
(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 |
---|---|
|
(required) The OCID of the resource. |
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(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\"}}` |
|
(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) Time the resource was created. |
|
(optional) Time the resource was last modified. |
|
(required) The pipeline state. Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
|
(required) Whether or not this resource is currently enabled. |
|
(required) State of unified agent service configuration. Allowed values are: 'VALID', 'INVALID' |
|
(required) |
|
(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 |
---|---|
|
(required) The OCID of the resource. |
|
(required) The OCID of the compartment that the resource belongs to. |
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(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\"}}` |
|
(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) Time the resource was created. |
|
(optional) Time the resource was last modified. |
|
(required) The pipeline state. Allowed values are: 'CREATING', 'ACTIVE', 'UPDATING', 'INACTIVE', 'DELETING', 'FAILED' |
|
(required) Whether or not this resource is currently enabled. |
|
(required) Type of Unified Agent service configuration. Allowed values are: 'LOGGING' |
|
(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 |
---|---|
|
(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 |
---|---|
|
(optional) JSON parser time type. Allowed values are: 'FLOAT', 'UNIXTIME', 'STRING' |
|
(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 |
---|---|
|
(optional) If you don't need stream or logtag fields, set this to false. |
|
(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 |
---|---|
|
(optional) CSV delimiter. |
|
(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 |
---|---|
|
(optional) Grok name key. |
|
(optional) Grok failure key. |
|
(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;
Fields
Field | Description |
---|---|
|
(required) Unique name for the source. |
|
(required) Unified schema logging source type. Allowed values are: 'LOG_TAIL', 'WINDOWS_EVENT_LOG' |
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 |
---|---|
|
(required) The OCID of the resource. |
|
(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 |
---|---|
|
(required) Logging source object. |
|
(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 |
---|---|
|
(optional) Grok name key. |
|
(optional) Grok failure key. |
|
(optional) Multiline start regexp pattern. |
|
(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 |
---|---|
|
(optional) First line pattern 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 |
---|---|
|
(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 |
---|---|
|
(required) Regex pattern. |
|
(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 |
---|---|
|
(optional) Time format. |
|
(optional) RFC 5424 time format. |
|
(optional) Syslog message format. Allowed values are: 'RFC3164', 'RFC5424', 'AUTO' |
|
(optional) Specifies with priority or not. Corresponds to the Fluentd with_priority parameter. |
|
(optional) Specifies whether or not to support colonless ident. Corresponds to the Fluentd support_colonless_ident parameter. |
|
(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 |
---|---|
|
(required) Absolute paths for log source files. Wildcards can be used. |
|
(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 |
---|---|
|
(optional) TSV delimiter. |
|
(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 |
---|---|
|
(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 |
---|---|
|
(required) |
|
(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 |
---|---|
|
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Whether or not this resource is currently enabled. |
|
(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\"}}` |
|
(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). |
|
(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 |
---|---|
|
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(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\"}}` |
|
(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 |
---|---|
|
(optional) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(optional) Description for this resource. |
|
(optional) The search query that is saved. |
|
(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\"}}` |
|
(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 |
---|---|
|
(required) The user-friendly display name. This must be unique within the enclosing resource, and it's changeable. Avoid entering confidential information. |
|
(required) Whether or not this resource is currently enabled. |
|
(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\"}}` |
|
(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) Description for this resource. |
|
(required) |
|
(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 |
---|---|
|
(required) The resource type the work request affects. |
|
(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. Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'IN_PROGRESS', 'RELATED' |
|
(required) The resource identifier the work request affects. |
|
(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 |
---|---|
|
(required) The work request OCID. |
|
(required) The type of work the work request is doing. Allowed values are: 'CREATE_LOG', 'UPDATE_LOG', 'DELETE_LOG', 'MOVE_LOG', 'CREATE_LOG_GROUP', 'UPDATE_LOG_GROUP', 'DELETE_LOG_GROUP', 'MOVE_LOG_GROUP', 'CREATE_CONFIGURATION', 'UPDATE_CONFIGURATION', 'DELETE_CONFIGURATION', 'MOVE_CONFIGURATION' |
|
(required) The current status of the work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELLING', 'CANCELED' |
|
(required) The work request's compartment OCID. |
|
(required) The resources this work request affects. |
|
(required) Percentage of the request completed. |
|
(required) The time the work request was accepted. |
|
(optional) The time the work request was started. |
|
(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 |
---|---|
|
(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. |
|
(required) A human readable description of the issue encountered. |
|
(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 |
---|---|
|
(required) Human-readable log message. |
|
(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 |
---|---|
|
(optional) The OCID of the work request. |
|
(optional) The type of work the work request is doing. Allowed values are: 'CREATE_LOG', 'UPDATE_LOG', 'DELETE_LOG', 'MOVE_LOG', 'CREATE_LOG_GROUP', 'UPDATE_LOG_GROUP', 'DELETE_LOG_GROUP', 'MOVE_LOG_GROUP', 'CREATE_CONFIGURATION', 'UPDATE_CONFIGURATION', 'DELETE_CONFIGURATION', 'MOVE_CONFIGURATION' |
|
(optional) The current status of the work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELLING', 'CANCELED' |
|
(optional) The OCID of the work request's compartment. |
|
(optional) The resources this work request affects. |
|
(optional) Percentage of the request completed. |
|
(optional) The time the work request was accepted. |
|
(optional) The time the work request was started. |
|
(optional) The time the work request was finished. |