OS Management Common Types
DBMS_CLOUD_OCI_OS_MANAGEMENT_VARCHAR2_TBL Type
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_ADD_PACKAGES_TO_SOFTWARE_SOURCE_DETAILS_T Type
List of software package names
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_add_packages_to_software_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
package_names dbms_cloud_oci_os_management_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_add_packages_to_software_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_add_packages_to_software_source_details_t (
package_names dbms_cloud_oci_os_management_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) the list of package names |
DBMS_CLOUD_OCI_OS_MANAGEMENT_API_ERROR_T Type
Error Information
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_api_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_api_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_api_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_OS_MANAGEMENT_ATTACH_CHILD_SOFTWARE_SOURCE_TO_MANAGED_INSTANCE_DETAILS_T Type
Information for attaching a software source to a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_attach_child_software_source_to_managed_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
software_source_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_attach_child_software_source_to_managed_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_attach_child_software_source_to_managed_instance_details_t (
software_source_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Software Source |
DBMS_CLOUD_OCI_OS_MANAGEMENT_ATTACH_PARENT_SOFTWARE_SOURCE_TO_MANAGED_INSTANCE_DETAILS_T Type
Information for attaching a software source to a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_attach_parent_software_source_to_managed_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
software_source_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_attach_parent_software_source_to_managed_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_attach_parent_software_source_to_managed_instance_details_t (
software_source_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Software Source |
DBMS_CLOUD_OCI_OS_MANAGEMENT_AUTONOMOUS_SETTINGS_T Type
Managed Instance with Autonomous settings
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_autonomous_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_auto_update_enabled number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_autonomous_settings_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_autonomous_settings_t (
is_auto_update_enabled number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) True if daily updates are enabled |
DBMS_CLOUD_OCI_OS_MANAGEMENT_AVAILABLE_SOFTWARE_SOURCE_SUMMARY_T Type
A software source which can be added to a managed instance. Once a software source is added, packages from that software source can be installed on that managed instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_available_software_source_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
parent_id varchar2(32767),
parent_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_available_software_source_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_available_software_source_summary_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
parent_id varchar2,
parent_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) unique identifier that is immutable on creation |
|
(required) OCID for the Compartment |
|
(required) User friendly name for the software source |
|
(optional) OCID for the parent software source, if there is one |
|
(optional) Display name of the parent software source, if there is one |
DBMS_CLOUD_OCI_OS_MANAGEMENT_ID_T Type
An id along with a name to simplify display for a user
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_id_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_id_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_id_t (
id varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) unique identifier that is immutable on creation |
|
(required) User friendly name |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_SOURCE_ID_T Type
Identifying information for the specified software source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_source_id_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_source_id_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_source_id_t (
name varchar2,
id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) software source name |
|
(required) software source identifier |
DBMS_CLOUD_OCI_OS_MANAGEMENT_ID_TBL Type
Nested table type of dbms_cloud_oci_os_management_id_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_id_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_id_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_SOURCE_ID_TBL Type
Nested table type of dbms_cloud_oci_os_management_software_source_id_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_source_id_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_software_source_id_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_AVAILABLE_UPDATE_SUMMARY_T Type
An update available for a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_available_update_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
update_type varchar2(32767),
l_type varchar2(32767),
installed_version varchar2(32767),
available_version varchar2(32767),
architecture varchar2(32767),
errata dbms_cloud_oci_os_management_id_tbl,
related_cves dbms_cloud_oci_os_management_varchar2_tbl,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_available_update_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_available_update_summary_t (
display_name varchar2,
name varchar2,
update_type varchar2,
l_type varchar2,
installed_version varchar2,
available_version varchar2,
architecture varchar2,
errata dbms_cloud_oci_os_management_id_tbl,
related_cves dbms_cloud_oci_os_management_varchar2_tbl,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Package name |
|
(required) Unique identifier for the package available for update. NOTE - This is not an OCID |
|
(optional) The purpose of this update. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
|
(required) Type of the package |
|
(required) Version of the installed package |
|
(required) Version of the package available for update |
|
(optional) The architecture for which this package was built |
|
(optional) List of errata containing this update |
|
(optional) List of CVEs applicable to this erratum |
|
(optional) list of software sources that provide the software package |
DBMS_CLOUD_OCI_OS_MANAGEMENT_AVAILABLE_WINDOWS_UPDATE_SUMMARY_T Type
An update available for installation on the Windows managed instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_available_windows_update_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
update_type varchar2(32767),
is_eligible_for_installation varchar2(32767),
is_reboot_required_for_installation number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_available_windows_update_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_available_windows_update_summary_t (
display_name varchar2,
name varchar2,
update_type varchar2,
is_eligible_for_installation varchar2,
is_reboot_required_for_installation number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Windows Update name |
|
(required) Unique identifier for the Windows update. NOTE - This is not an OCID, but is a unique identifier assigned by Microsoft. Example: `6981d463-cd91-4a26-b7c4-ea4ded9183ed` |
|
(required) The purpose of this update. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
|
(optional) Indicates whether the update can be installed using OSMS. Allowed values are: 'INSTALLABLE', 'NOT_INSTALLABLE', 'UNKNOWN' |
|
(optional) Indicates whether a reboot may be required to complete installation of this update. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_CHANGE_MANAGED_INSTANCE_GROUP_COMPARTMENT_DETAILS_T Type
Compartment id for a managed instance group
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_change_managed_instance_group_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_change_managed_instance_group_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_change_managed_instance_group_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The OCID of the compartment into which the resource should be moved. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_CHANGE_SCHEDULED_JOB_COMPARTMENT_DETAILS_T Type
Compartment id for a scheduled job
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_change_scheduled_job_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_change_scheduled_job_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_change_scheduled_job_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The OCID of the compartment into which the resource should be moved. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_CHANGE_SOFTWARE_SOURCE_COMPARTMENT_DETAILS_T Type
Compartment id for a software source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_change_software_source_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_change_software_source_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_change_software_source_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The OCID of the compartment into which the resource should be moved. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_CRASH_EVENT_SYSTEM_INFORMATION_T Type
Detailed information about system at the time of the crash.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_crash_event_system_information_t FORCE AUTHID CURRENT_USER IS OBJECT (
architecture varchar2(32767),
ksplice_effective_kernel_version varchar2(32767),
os_family varchar2(32767),
os_name varchar2(32767),
os_kernel_release varchar2(32767),
os_kernel_version varchar2(32767),
os_system_version varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_crash_event_system_information_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_crash_event_system_information_t (
architecture varchar2,
ksplice_effective_kernel_version varchar2,
os_family varchar2,
os_name varchar2,
os_kernel_release varchar2,
os_kernel_version varchar2,
os_system_version varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) system architecture Allowed values are: 'IA_32', 'X86_64', 'AARCH64', 'SPARC', 'AMD64_DEBIAN' |
|
(optional) Active ksplice kernel version (uptrack-uname -r) |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
|
(optional) Operating System Name (OCA value) |
|
(optional) Operating System Kernel Release (uname -v) |
|
(optional) Operating System Kernel Version (uname -r) |
|
(optional) Version of the OS (VERSION from /etc/os-release) |
DBMS_CLOUD_OCI_OS_MANAGEMENT_CREATE_MANAGED_INSTANCE_GROUP_DETAILS_T Type
Detail information for creating a managed instance group
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_create_managed_instance_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_create_managed_instance_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_create_managed_instance_group_details_t (
display_name varchar2,
description varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Managed Instance Group identifier |
|
(optional) Information specified by the user about the managed instance group |
|
(required) OCID for the Compartment |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
DBMS_CLOUD_OCI_OS_MANAGEMENT_PACKAGE_NAME_T Type
Identifying information for the specified package
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_package_name_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_package_name_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_package_name_t (
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) package identifier |
DBMS_CLOUD_OCI_OS_MANAGEMENT_PACKAGE_NAME_TBL Type
Nested table type of dbms_cloud_oci_os_management_package_name_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_package_name_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_package_name_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_CREATE_SCHEDULED_JOB_DETAILS_T Type
Information for creating a Scheduled Job
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_create_scheduled_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
schedule_type varchar2(32767),
time_next_execution timestamp with time zone,
interval_type varchar2(32767),
interval_value varchar2(32767),
managed_instances dbms_cloud_oci_os_management_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
operation_type varchar2(32767),
update_type varchar2(32767),
package_names dbms_cloud_oci_os_management_package_name_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
update_names dbms_cloud_oci_os_management_varchar2_tbl,
os_family varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_create_scheduled_job_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_create_scheduled_job_details_t (
compartment_id varchar2,
display_name varchar2,
description varchar2,
schedule_type varchar2,
time_next_execution timestamp with time zone,
interval_type varchar2,
interval_value varchar2,
managed_instances dbms_cloud_oci_os_management_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
operation_type varchar2,
update_type varchar2,
package_names dbms_cloud_oci_os_management_package_name_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
update_names dbms_cloud_oci_os_management_varchar2_tbl,
os_family varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Compartment |
|
(required) Scheduled Job name |
|
(optional) Details describing the Scheduled Job. |
|
(required) the type of scheduling this Scheduled Job follows Allowed values are: 'ONETIME', 'RECURRING' |
|
(required) the desired time for the next execution of this Scheduled Job |
|
(optional) the interval period for a recurring Scheduled Job (only if schedule type is RECURRING) Allowed values are: 'HOUR', 'DAY', 'WEEK', 'MONTH' |
|
(optional) the value for the interval period for a recurring Scheduled Job (only if schedule type is RECURRING) |
|
(optional) The list of managed instances this scheduled job operates on (mutually exclusive with managedInstanceGroups). Either this or the managedInstanceGroups must be supplied. |
|
(optional) The list of managed instance groups this scheduled job operates on (mutually exclusive with managedInstances). Either this or managedInstances must be supplied. |
|
(required) the type of operation this Scheduled Job performs Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND' |
|
(optional) Type of the update (only if operation type is UPDATEALL) Allowed values are: 'SECURITY', 'BUGFIX', 'ENHANCEMENT', 'OTHER', 'KSPLICE', 'ALL' |
|
(optional) the id of the package (only if operation type is INSTALL/UPDATE/REMOVE) |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) The unique names of the Windows Updates (only if operation type is INSTALL). This is only applicable when the osFamily is for Windows managed instances. |
|
(optional) The Operating System type of the managed instance(s) on which this scheduled job will operate. If not specified, this defaults to Linux. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
DBMS_CLOUD_OCI_OS_MANAGEMENT_CREATE_SOFTWARE_SOURCE_DETAILS_T Type
Description of a software source to be created on the management system
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_create_software_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
arch_type varchar2(32767),
maintainer_name varchar2(32767),
maintainer_email varchar2(32767),
maintainer_phone varchar2(32767),
checksum_type varchar2(32767),
parent_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_create_software_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_create_software_source_details_t (
compartment_id varchar2,
display_name varchar2,
description varchar2,
arch_type varchar2,
maintainer_name varchar2,
maintainer_email varchar2,
maintainer_phone varchar2,
checksum_type varchar2,
parent_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Compartment |
|
(required) User friendly name for the software source |
|
(optional) Information specified by the user about the software source |
|
(required) The architecture type supported by the Software Source Allowed values are: 'IA_32', 'X86_64', 'AARCH64', 'SPARC', 'AMD64_DEBIAN' |
|
(optional) Name of the person maintaining this software source |
|
(optional) Email address of the person maintaining this software source |
|
(optional) Phone number of the person maintaining this software source |
|
(optional) The yum repository checksum type used by this software source Allowed values are: 'SHA1', 'SHA256', 'SHA384', 'SHA512' |
|
(optional) OCID for the parent software source, if there is one |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_DETACH_CHILD_SOFTWARE_SOURCE_FROM_MANAGED_INSTANCE_DETAILS_T Type
Information for detaching a software source from a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_detach_child_software_source_from_managed_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
software_source_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_detach_child_software_source_from_managed_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_detach_child_software_source_from_managed_instance_details_t (
software_source_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Software Source |
DBMS_CLOUD_OCI_OS_MANAGEMENT_DETACH_PARENT_SOFTWARE_SOURCE_FROM_MANAGED_INSTANCE_DETAILS_T Type
Information for detaching a software source from a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_detach_parent_software_source_from_managed_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
software_source_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_detach_parent_software_source_from_managed_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_detach_parent_software_source_from_managed_instance_details_t (
software_source_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Software Source |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_SUMMARY_T Type
Summary information for a software package
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
l_type varchar2(32767),
version varchar2(32767),
architecture varchar2(32767),
checksum varchar2(32767),
checksum_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_summary_t (
display_name varchar2,
name varchar2,
l_type varchar2,
version varchar2,
architecture varchar2,
checksum varchar2,
checksum_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Package name |
|
(required) Unique identifier for the package. NOTE - This is not an OCID |
|
(required) Type of the package |
|
(required) Version of the package |
|
(optional) the architecture for which this software was built |
|
(optional) checksum of the package |
|
(optional) type of the checksum |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_os_management_software_package_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_software_package_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_ERRATUM_T Type
Details about the erratum.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_erratum_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
synopsis varchar2(32767),
issued varchar2(32767),
description varchar2(32767),
updated varchar2(32767),
advisory_type varchar2(32767),
l_from varchar2(32767),
solution varchar2(32767),
references varchar2(32767),
affected_instances dbms_cloud_oci_os_management_id_tbl,
related_cves dbms_cloud_oci_os_management_varchar2_tbl,
software_sources dbms_cloud_oci_os_management_id_tbl,
packages dbms_cloud_oci_os_management_software_package_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_erratum_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_erratum_t (
name varchar2,
id varchar2,
compartment_id varchar2,
synopsis varchar2,
issued varchar2,
description varchar2,
updated varchar2,
advisory_type varchar2,
l_from varchar2,
solution varchar2,
references varchar2,
affected_instances dbms_cloud_oci_os_management_id_tbl,
related_cves dbms_cloud_oci_os_management_varchar2_tbl,
software_sources dbms_cloud_oci_os_management_id_tbl,
packages dbms_cloud_oci_os_management_software_package_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Advisory name |
|
(required) OCID for the Erratum. |
|
(required) OCID for the Compartment. |
|
(optional) Summary description of the erratum. |
|
(optional) date the erratum was issued |
|
(optional) Details describing the erratum. |
|
(optional) most recent date the erratum was updated |
|
(optional) Type of the erratum. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
|
(optional) Information specifying from where the erratum was release. |
|
(optional) Information describing how the erratum can be resolved. |
|
(optional) Information describing how to find more information about the erratum. |
|
(optional) list of managed instances to this erratum |
|
(optional) list of CVEs applicable to this erratum |
|
(optional) list of Software Sources |
|
(optional) list of Packages affected by this erratum |
DBMS_CLOUD_OCI_OS_MANAGEMENT_ERRATUM_SUMMARY_T Type
Important changes for software. This can include security | advisories, bug fixes, or enhancements.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_erratum_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
synopsis varchar2(32767),
issued varchar2(32767),
updated varchar2(32767),
advisory_type varchar2(32767),
related_cves dbms_cloud_oci_os_management_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_erratum_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_erratum_summary_t (
name varchar2,
id varchar2,
compartment_id varchar2,
synopsis varchar2,
issued varchar2,
updated varchar2,
advisory_type varchar2,
related_cves dbms_cloud_oci_os_management_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Advisory name |
|
(required) OCID for the Erratum. |
|
(required) OCID for the Compartment. |
|
(optional) Summary description of the erratum. |
|
(optional) date the erratum was issued |
|
(optional) most recent date the erratum was updated |
|
(optional) Type of the erratum. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
|
(optional) list of CVEs applicable to this erratum |
DBMS_CLOUD_OCI_OS_MANAGEMENT_EVENT_T Type
Description of Event.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_event_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
instance_id varchar2(32767),
compartment_id varchar2(32767),
tenancy_id varchar2(32767),
summary varchar2(32767),
l_timestamp timestamp with time zone,
event_fingerprint varchar2(32767),
l_count number,
event_type varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_t (
id varchar2,
instance_id varchar2,
compartment_id varchar2,
tenancy_id varchar2,
summary varchar2,
l_timestamp timestamp with time zone,
event_fingerprint varchar2,
l_count number,
event_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field | Description |
---|---|
|
(required) OCID identifier of the event |
|
(optional) OCI identifier of the instance where the event occurred |
|
(optional) OCI identifier of the compartement where the instance is |
|
(optional) OCID identifier of the instance tenancy. |
|
(optional) human readable description of the event |
|
(optional) Time of the occurrence of the event |
|
(optional) Unique ID used to group event with the same characteristics together. The list of such groups of event can be retrieved via /recurringEvents/{EventFingerprint} |
|
(optional) Event occurrence count. Number of time the event has happen on the system. |
|
(required) Type of the Event. Allowed values are: 'KERNEL_OOPS', 'KERNEL_CRASH', 'CRASH', 'EXPLOIT_ATTEMPT', 'COMPLIANCE', 'TUNING_SUGGESTION', 'TUNING_APPLIED', 'SECURITY', 'ERROR', 'WARNING' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_EVENT_SUMMARY_T Type
Summary of the Event.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_event_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
instance_id varchar2(32767),
summary varchar2(32767),
event_type varchar2(32767),
l_count number,
l_timestamp timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_summary_t (
id varchar2,
instance_id varchar2,
summary varchar2,
event_type varchar2,
l_count number,
l_timestamp timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID identifier of the event |
|
(required) Unique OCI identifier of the instance where the event occurred |
|
(optional) human readable description of the event |
|
(required) Type of the event. Allowed values are: 'KERNEL_OOPS', 'KERNEL_CRASH', 'CRASH', 'EXPLOIT_ATTEMPT', 'COMPLIANCE', 'TUNING_SUGGESTION', 'TUNING_APPLIED', 'SECURITY', 'ERROR', 'WARNING' |
|
(optional) Event occurrence count. Number of time the same event happened on the system. |
|
(optional) Time of the occurrence of the event |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_EVENT_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_os_management_event_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_event_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_event_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_EVENT_COLLECTION_T Type
Results of a event search. Contains both EventSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_event_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_os_management_event_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_collection_t (
items dbms_cloud_oci_os_management_event_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of events. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_EVENT_CONTENT_T Type
Information about the data collected as a ZIP file when the event occurred.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_event_content_t FORCE AUTHID CURRENT_USER IS OBJECT (
content_availability varchar2(32767),
instance_path varchar2(32767),
l_size number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_content_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_content_t (
content_availability varchar2,
instance_path varchar2,
l_size number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Status of the event content Allowed values are: 'NOT_AVAILABLE', 'AVAILABLE_ON_INSTANCE', 'AVAILABLE_ON_SERVICE', 'AVAILABLE_ON_INSTANCE_AND_SERVICE', 'AVAILABLE_ON_INSTANCE_UPLOAD_IN_PROGRESS' |
|
(optional) Path to the event content on the instance |
|
(optional) size in bytes of the event content (size of the zip file uploaded) |
DBMS_CLOUD_OCI_OS_MANAGEMENT_EVENT_REPORT_T Type
Summary about event occurrences on a system.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_event_report_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_report_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_event_report_t (
l_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) count of events currently registered on the system. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_INSTALLABLE_PACKAGE_SUMMARY_T Type
A software package available for install on a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_installable_package_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
l_type varchar2(32767),
version varchar2(32767),
architecture varchar2(32767),
software_sources dbms_cloud_oci_os_management_software_source_id_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_installable_package_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_installable_package_summary_t (
display_name varchar2,
name varchar2,
l_type varchar2,
version varchar2,
architecture varchar2,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Package name |
|
(required) Unique identifier for the package. NOTE - This is not an OCID |
|
(required) Type of the package |
|
(required) Version of the package |
|
(optional) The architecture for which this package was built |
|
(optional) list of software sources that provide the software package |
DBMS_CLOUD_OCI_OS_MANAGEMENT_INSTALLED_PACKAGE_SUMMARY_T Type
A software package installed on a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_installed_package_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
l_type varchar2(32767),
version varchar2(32767),
architecture varchar2(32767),
install_time varchar2(32767),
issued varchar2(32767),
software_sources dbms_cloud_oci_os_management_software_source_id_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_installed_package_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_installed_package_summary_t (
display_name varchar2,
name varchar2,
l_type varchar2,
version varchar2,
architecture varchar2,
install_time varchar2,
issued varchar2,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Package name |
|
(required) Unique identifier for the package. NOTE - This is not an OCID |
|
(required) Type of the package |
|
(required) Version of the installed package |
|
(optional) The architecture for which this package was built |
|
(optional) Install time of the package |
|
(optional) date the package was issued by a providing erratum (if available) |
|
(optional) list of software sources that provide the software package |
DBMS_CLOUD_OCI_OS_MANAGEMENT_INSTALLED_WINDOWS_UPDATE_SUMMARY_T Type
A Windows update installed on the Windows managed instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_installed_windows_update_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
update_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_installed_windows_update_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_installed_windows_update_summary_t (
display_name varchar2,
name varchar2,
update_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Windows Update name |
|
(required) Unique identifier for the Windows update. NOTE - This is not an OCID, but is a unique identifier assigned by Microsoft. Example: `6981d463-cd91-4a26-b7c4-ea4ded9183ed` |
|
(required) The purpose of this update. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
DBMS_CLOUD_OCI_OS_MANAGEMENT_KERNEL_VM_CORE_INFORMATION_T Type
VMcore information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_kernel_vm_core_information_t FORCE AUTHID CURRENT_USER IS OBJECT (
component varchar2(32767),
backtrace varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_kernel_vm_core_information_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_kernel_vm_core_information_t (
component varchar2,
backtrace varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Kernel module responsible of the crash. |
|
(optional) Crash backtrace. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_KERNEL_CRASH_EVENT_T Type
Information about a Kernel Crash.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_kernel_crash_event_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_os_management_event_t (
reason varchar2(32767),
time_first_occurred timestamp with time zone,
vmcore dbms_cloud_oci_os_management_kernel_vm_core_information_t,
content dbms_cloud_oci_os_management_event_content_t,
system dbms_cloud_oci_os_management_crash_event_system_information_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_kernel_crash_event_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_kernel_crash_event_t (
id varchar2,
instance_id varchar2,
compartment_id varchar2,
tenancy_id varchar2,
summary varchar2,
l_timestamp timestamp with time zone,
event_fingerprint varchar2,
l_count number,
event_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
reason varchar2,
time_first_occurred timestamp with time zone,
vmcore dbms_cloud_oci_os_management_kernel_vm_core_information_t,
content dbms_cloud_oci_os_management_event_content_t,
system dbms_cloud_oci_os_management_crash_event_system_information_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_os_management_kernel_crash_event_t
is a subtype of the dbms_cloud_oci_os_management_event_t
type.
Fields
Field | Description |
---|---|
|
(optional) reason of the crash |
|
(optional) First occurrence time of the event |
|
(optional) |
|
(optional) |
|
(optional) |
DBMS_CLOUD_OCI_OS_MANAGEMENT_KERNEL_OOPS_EVENT_T Type
Information about a Kernel Oops.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_kernel_oops_event_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_os_management_event_t (
reason varchar2(32767),
time_first_occurred timestamp with time zone,
vmcore dbms_cloud_oci_os_management_kernel_vm_core_information_t,
content dbms_cloud_oci_os_management_event_content_t,
system dbms_cloud_oci_os_management_crash_event_system_information_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_kernel_oops_event_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_kernel_oops_event_t (
id varchar2,
instance_id varchar2,
compartment_id varchar2,
tenancy_id varchar2,
summary varchar2,
l_timestamp timestamp with time zone,
event_fingerprint varchar2,
l_count number,
event_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
reason varchar2,
time_first_occurred timestamp with time zone,
vmcore dbms_cloud_oci_os_management_kernel_vm_core_information_t,
content dbms_cloud_oci_os_management_event_content_t,
system dbms_cloud_oci_os_management_crash_event_system_information_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_os_management_kernel_oops_event_t
is a subtype of the dbms_cloud_oci_os_management_event_t
type.
Fields
Field | Description |
---|---|
|
(optional) reason of the crash |
|
(optional) First occurrence time of the event |
|
(optional) |
|
(optional) |
|
(optional) |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_DETAILS_T Type
Updatable information for a module stream
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_details_t (
module_name varchar2,
stream_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of a module |
|
(required) The name of a stream of the specified module |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_PROFILE_DETAILS_T Type
Updatable information for a module stream profile
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_profile_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
profile_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_details_t (
module_name varchar2,
stream_name varchar2,
profile_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of a module |
|
(required) The name of a stream of the specified module |
|
(required) The name of a profile of the specified module stream |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_os_management_module_stream_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_module_stream_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_PROFILE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_os_management_module_stream_profile_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_profile_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_module_stream_profile_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_MANAGE_MODULE_STREAMS_ON_MANAGED_INSTANCE_DETAILS_T Type
The set of changes to make to the state of the modules, streams, and profiles on a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_manage_module_streams_on_managed_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_dry_run number,
enable dbms_cloud_oci_os_management_module_stream_details_tbl,
disable dbms_cloud_oci_os_management_module_stream_details_tbl,
install dbms_cloud_oci_os_management_module_stream_profile_details_tbl,
remove dbms_cloud_oci_os_management_module_stream_profile_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_manage_module_streams_on_managed_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_manage_module_streams_on_managed_instance_details_t (
is_dry_run number,
enable dbms_cloud_oci_os_management_module_stream_details_tbl,
disable dbms_cloud_oci_os_management_module_stream_details_tbl,
install dbms_cloud_oci_os_management_module_stream_profile_details_tbl,
remove dbms_cloud_oci_os_management_module_stream_profile_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Indicates if this operation is a dry run or if the operation should be commited. If set to true, the result of the operation will be evaluated but not committed. If set to false, the operation is committed to the managed instance. The default is false. |
|
(optional) The set of module streams to enable. |
|
(optional) The set of module streams to disable. |
|
(optional) The set of module stream profiles to install. |
|
(optional) The set of module stream profiles to remove. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MANAGED_INSTANCE_T Type
Detail information for an OCI Compute instance that is being managed
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_managed_instance_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
id varchar2(32767),
description varchar2(32767),
last_checkin varchar2(32767),
last_boot varchar2(32767),
updates_available number,
os_name varchar2(32767),
os_version varchar2(32767),
os_kernel_version varchar2(32767),
compartment_id varchar2(32767),
status varchar2(32767),
parent_software_source dbms_cloud_oci_os_management_software_source_id_t,
child_software_sources dbms_cloud_oci_os_management_software_source_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
os_family varchar2(32767),
is_reboot_required number,
notification_topic_id varchar2(32767),
ksplice_effective_kernel_version varchar2(32767),
is_data_collection_authorized number,
autonomous dbms_cloud_oci_os_management_autonomous_settings_t,
security_updates_available number,
bug_updates_available number,
enhancement_updates_available number,
other_updates_available number,
scheduled_job_count number,
work_request_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_t (
display_name varchar2,
id varchar2,
description varchar2,
last_checkin varchar2,
last_boot varchar2,
updates_available number,
os_name varchar2,
os_version varchar2,
os_kernel_version varchar2,
compartment_id varchar2,
status varchar2,
parent_software_source dbms_cloud_oci_os_management_software_source_id_t,
child_software_sources dbms_cloud_oci_os_management_software_source_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
os_family varchar2,
is_reboot_required number,
notification_topic_id varchar2,
ksplice_effective_kernel_version varchar2,
is_data_collection_authorized number,
autonomous dbms_cloud_oci_os_management_autonomous_settings_t,
security_updates_available number,
bug_updates_available number,
enhancement_updates_available number,
other_updates_available number,
scheduled_job_count number,
work_request_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Managed Instance identifier |
|
(required) OCID for the managed instance |
|
(optional) Information specified by the user about the managed instance |
|
(optional) Time at which the instance last checked in |
|
(optional) Time at which the instance last booted |
|
(optional) Number of updates available to be installed |
|
(optional) Operating System Name |
|
(optional) Operating System Version |
|
(optional) Operating System Kernel Version |
|
(required) OCID for the Compartment |
|
(optional) status of the managed instance. Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING' |
|
(optional) the parent (base) Software Source attached to the Managed Instance |
|
(optional) list of child Software Sources attached to the Managed Instance |
|
(optional) The ids of the managed instance groups of which this instance is a member. |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
|
(optional) Indicates whether a reboot is required to complete installation of updates. |
|
(optional) OCID of the ONS topic used to send notification to users |
|
(optional) The ksplice effective kernel version |
|
(optional) True if user allow data collection for this instance |
|
(optional) if present, indicates the Managed Instance is an autonomous instance. Holds all the Autonomous specific information |
|
(optional) Number of security type updates available to be installed |
|
(optional) Number of bug fix type updates available to be installed |
|
(optional) Number of enhancement type updates available to be installed |
|
(optional) Number of non-classified updates available to be installed |
|
(optional) Number of scheduled jobs associated with this instance |
|
(optional) Number of work requests associated with this instance |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MANAGED_INSTANCE_GROUP_T Type
Detail information for a managed instance group
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_managed_instance_group_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
id varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
managed_instances dbms_cloud_oci_os_management_id_tbl,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_group_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_group_t (
display_name varchar2,
id varchar2,
description varchar2,
compartment_id varchar2,
managed_instances dbms_cloud_oci_os_management_id_tbl,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Managed Instance Group identifier |
|
(required) OCID for the managed instance group |
|
(optional) Information specified by the user about the managed instance group |
|
(required) OCID for the Compartment |
|
(optional) list of Managed Instances in the group |
|
(optional) The current state of the Software Source. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MANAGED_INSTANCE_GROUP_SUMMARY_T Type
An group of managed instances that will be managed together
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_managed_instance_group_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
managed_instance_count number,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_group_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_group_summary_t (
display_name varchar2,
id varchar2,
compartment_id varchar2,
description varchar2,
managed_instance_count number,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) user settable name |
|
(required) OCID for the managed instance group |
|
(required) OCID for the Compartment |
|
(optional) Information specified by the user about the managed instance group |
|
(optional) Number of managed instances in this managed instance group |
|
(optional) The current state of the Software Source. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MANAGED_INSTANCE_SUMMARY_T Type
An OCI Compute instance that is being managed
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_managed_instance_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
id varchar2(32767),
last_checkin varchar2(32767),
last_boot varchar2(32767),
updates_available number,
compartment_id varchar2(32767),
description varchar2(32767),
status varchar2(32767),
os_family varchar2(32767),
is_reboot_required number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_managed_instance_summary_t (
display_name varchar2,
id varchar2,
last_checkin varchar2,
last_boot varchar2,
updates_available number,
compartment_id varchar2,
description varchar2,
status varchar2,
os_family varchar2,
is_reboot_required number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) user settable name |
|
(required) OCID for the managed instance |
|
(optional) Time at which the instance last checked in |
|
(optional) Time at which the instance last booted |
|
(optional) Number of updates available to be installed |
|
(required) OCID for the Compartment |
|
(optional) Information specified by the user about the managed instance |
|
(optional) status of the managed instance. Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING' |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
|
(optional) Indicates whether a reboot is required to complete installation of updates. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_T Type
A module stream provided by a software source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
is_default number,
software_source_id varchar2(32767),
architecture varchar2(32767),
description varchar2(32767),
profiles dbms_cloud_oci_os_management_varchar2_tbl,
packages dbms_cloud_oci_os_management_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_t (
module_name varchar2,
stream_name varchar2,
is_default number,
software_source_id varchar2,
architecture varchar2,
description varchar2,
profiles dbms_cloud_oci_os_management_varchar2_tbl,
packages dbms_cloud_oci_os_management_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the module that contains the stream |
|
(required) The name of the stream |
|
(optional) Indicates if this stream is the default for its module. |
|
(optional) The OCID of the software source that provides this module stream. |
|
(optional) The architecture for which the packages in this module stream were built |
|
(optional) A description of the contents of the module stream |
|
(optional) A list of profiles that are part of the stream. Each element in the list is the name of a profile. The name is suitable to use as an argument to other OS Management APIs that interact directly with module stream profiles. However, it is not URL encoded. |
|
(optional) A list of packages that are contained by the stream. Each element in the list is the name of a package. The name is suitable to use as an argument to other OS Management APIs that interact directly with packages. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_PROFILE_ON_MANAGED_INSTANCE_SUMMARY_T Type
Summary information pertaining to a module stream profile on a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
profile_name varchar2(32767),
status varchar2(32767),
time_modified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_t (
module_name varchar2,
stream_name varchar2,
profile_name varchar2,
status varchar2,
time_modified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the module that contains the stream profile |
|
(required) The name of the stream that contains the profile |
|
(required) The name of the profile |
|
(required) The status of the profile. A profile with the \"INSTALLED\" status indicates that the profile has been installed. A profile with the \"AVAILABLE\" status indicates that the profile is not installed, but can be. Allowed values are: 'INSTALLED', 'AVAILABLE' |
|
(optional) The date and time of the last status change for this profile, as described in RFC 3339, section 14.29. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_PROFILE_ON_MANAGED_INSTANCE_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_ON_MANAGED_INSTANCE_SUMMARY_T Type
Summary information pertaining to a module stream on a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_on_managed_instance_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
status varchar2(32767),
profiles dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_tbl,
software_source_id varchar2(32767),
time_modified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_on_managed_instance_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_on_managed_instance_summary_t (
module_name varchar2,
stream_name varchar2,
status varchar2,
profiles dbms_cloud_oci_os_management_module_stream_profile_on_managed_instance_summary_tbl,
software_source_id varchar2,
time_modified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the module that contains the stream. |
|
(required) The name of the stream. |
|
(required) The status of the stream A stream with the \"ENABLED\" status can be used as a source for installing profiles. Streams with this status are also \"ACTIVE\". A stream with the \"DISABLED\" status cannot be the source for installing profiles. To install profiles and packages from this stream, it must be enabled. A stream with the \"ACTIVE\" status can be used as a source for installing profiles. The packages that comprise the stream are also used when a matching package is installed directly. In general, a stream can have this status if it is the default stream for the module and no stream has been explicitly enabled. Allowed values are: 'ENABLED', 'DISABLED', 'ACTIVE' |
|
(optional) The set of profiles that the module stream contains. |
|
(optional) The OCID of the software source that provides this module stream. |
|
(optional) The date and time of the last status change for this profile, as described in RFC 3339, section 14.29. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_PROFILE_T Type
A module stream profile provided by a software source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_profile_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
profile_name varchar2(32767),
is_default number,
description varchar2(32767),
packages dbms_cloud_oci_os_management_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_t (
module_name varchar2,
stream_name varchar2,
profile_name varchar2,
is_default number,
description varchar2,
packages dbms_cloud_oci_os_management_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the module that contains the stream profile |
|
(required) The name of the stream that contains the profile |
|
(required) The name of the profile |
|
(optional) Indicates if this profile is the default for its module stream. |
|
(optional) A description of the contents of the module stream profile |
|
(required) A list of packages that constitute the profile. Each element in the list is the name of a package. The name is suitable to use as an argument to other OS Management APIs that interact directly with packages. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_PROFILE_SUMMARY_T Type
Summary information pertaining to a module stream profile provided by a software source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_profile_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
profile_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_profile_summary_t (
module_name varchar2,
stream_name varchar2,
profile_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the module that contains the stream profile |
|
(required) The name of the stream that contains the profile |
|
(required) The name of the profile |
DBMS_CLOUD_OCI_OS_MANAGEMENT_MODULE_STREAM_SUMMARY_T Type
Summary information pertaining to a module stream provided by a software source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_module_stream_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
stream_name varchar2(32767),
software_source_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_module_stream_summary_t (
module_name varchar2,
stream_name varchar2,
software_source_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the module that contains the stream. |
|
(required) The name of the stream. |
|
(optional) The OCID of the software source that provides this module stream. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_RECURRENCE_T Type
An object for representing a recurrence time interval
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_recurrence_t FORCE AUTHID CURRENT_USER IS OBJECT (
interval_type varchar2(32767),
interval_value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_recurrence_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_recurrence_t (
interval_type varchar2,
interval_value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) the interval period for the recurrence Allowed values are: 'MINUTES', 'HOURS', 'DAYS', 'WEEKS' |
|
(required) the value for the interval period for the recurrence |
DBMS_CLOUD_OCI_OS_MANAGEMENT_RELATED_EVENT_SUMMARY_T Type
Event occurrence on managed instances.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_related_event_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
instance_id varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_related_event_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_related_event_summary_t (
id varchar2,
instance_id varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID identifier of the event |
|
(required) OCID identifier of the instance |
|
(optional) time occurence |
DBMS_CLOUD_OCI_OS_MANAGEMENT_RELATED_EVENT_SUMMARY_TBL Type
Nested table type of dbms_cloud_oci_os_management_related_event_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_related_event_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_related_event_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_RELATED_EVENT_COLLECTION_T Type
Results of a event occurence search. Contains RelatedEventSummary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_related_event_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_os_management_related_event_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_related_event_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_related_event_collection_t (
items dbms_cloud_oci_os_management_related_event_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) List of event occurrence. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_REMOVE_PACKAGES_FROM_SOFTWARE_SOURCE_DETAILS_T Type
List of software package names
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_remove_packages_from_software_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
package_names dbms_cloud_oci_os_management_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_remove_packages_from_software_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_remove_packages_from_software_source_details_t (
package_names dbms_cloud_oci_os_management_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) the list of package names |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SCHEDULED_JOB_T Type
Detailed information about a Scheduled Job
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_scheduled_job_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
schedule_type varchar2(32767),
time_next_execution timestamp with time zone,
time_last_execution timestamp with time zone,
interval_type varchar2(32767),
interval_value varchar2(32767),
managed_instances dbms_cloud_oci_os_management_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
operation_type varchar2(32767),
update_type varchar2(32767),
package_names dbms_cloud_oci_os_management_package_name_tbl,
work_requests dbms_cloud_oci_os_management_id_tbl,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
update_names dbms_cloud_oci_os_management_varchar2_tbl,
os_family varchar2(32767),
is_restricted number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_scheduled_job_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_scheduled_job_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
schedule_type varchar2,
time_next_execution timestamp with time zone,
time_last_execution timestamp with time zone,
interval_type varchar2,
interval_value varchar2,
managed_instances dbms_cloud_oci_os_management_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
operation_type varchar2,
update_type varchar2,
package_names dbms_cloud_oci_os_management_package_name_tbl,
work_requests dbms_cloud_oci_os_management_id_tbl,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
update_names dbms_cloud_oci_os_management_varchar2_tbl,
os_family varchar2,
is_restricted number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Scheduled Job |
|
(optional) OCID for the Compartment |
|
(required) Scheduled Job name |
|
(optional) Details describing the Scheduled Job. |
|
(optional) the type of scheduling this Scheduled Job follows Allowed values are: 'ONETIME', 'RECURRING' |
|
(optional) the time of the next execution of this Scheduled Job |
|
(optional) the time of the last execution of this Scheduled Job |
|
(optional) the interval period for a recurring Scheduled Job (only if schedule type is RECURRING) Allowed values are: 'HOUR', 'DAY', 'WEEK', 'MONTH' |
|
(optional) the value for the interval period for a recurring Scheduled Job (only if schedule type is RECURRING) |
|
(optional) the list of managed instances this scheduled job operates on (mutually exclusive with managedInstanceGroups) |
|
(optional) the list of managed instance groups this scheduled job operates on (mutually exclusive with managedInstances) |
|
(optional) the type of operation this Scheduled Job performs Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND' |
|
(optional) Type of the update (only if operation type is UPDATEALL) Allowed values are: 'SECURITY', 'BUGFIX', 'ENHANCEMENT', 'OTHER', 'KSPLICE', 'ALL' |
|
(optional) the names of the updates (only if operation type is INSTALL/UPDATE/REMOVE) |
|
(optional) list of Work Requests associated with this Scheduled Job |
|
(optional) The current state of the Scheduled Job. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) The unique names of the Windows Updates (only if operation type is INSTALL). This is only applicable when the osFamily is for Windows managed instances. |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
|
(optional) true, if the schedule job has its update capabilities restricted. (Used to track Autonomous Scheduled Job) |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SCHEDULED_JOB_SUMMARY_T Type
Basic information about a Scheduled Job
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_scheduled_job_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
schedule_type varchar2(32767),
time_next_execution timestamp with time zone,
time_last_execution timestamp with time zone,
managed_instances dbms_cloud_oci_os_management_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
operation_type varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2(32767),
is_restricted number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_scheduled_job_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_scheduled_job_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
schedule_type varchar2,
time_next_execution timestamp with time zone,
time_last_execution timestamp with time zone,
managed_instances dbms_cloud_oci_os_management_id_tbl,
managed_instance_groups dbms_cloud_oci_os_management_id_tbl,
operation_type varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
os_family varchar2,
is_restricted number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Scheduled Job |
|
(required) Scheduled Job name |
|
(optional) OCID for the Compartment |
|
(optional) the type of scheduling this Scheduled Job follows Allowed values are: 'ONETIME', 'RECURRING' |
|
(optional) the time/date of the next scheduled execution of this Scheduled Job |
|
(optional) the time/date of the last execution of this Scheduled Job |
|
(optional) the list of managed instances this scheduled job operates on (mutually exclusive with managedInstanceGroups) |
|
(optional) the list of managed instance groups this scheduled job operates on (mutually exclusive with managedInstances) |
|
(optional) the type of operation this Scheduled Job performs Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND' |
|
(optional) The current state of the Scheduled Job. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
|
(optional) true, if the schedule job has its update capabilities restricted. (Used to track Autonomous Scheduled Job) |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_DEPENDENCY_T Type
A dependency for a software package
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_dependency_t FORCE AUTHID CURRENT_USER IS OBJECT (
dependency varchar2(32767),
dependency_type varchar2(32767),
dependency_modifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_dependency_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_dependency_t (
dependency varchar2,
dependency_type varchar2,
dependency_modifier varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) the software package's dependency |
|
(optional) the type of the dependency |
|
(optional) the modifier for the dependency |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_FILE_T Type
A file associated with a package
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_file_t FORCE AUTHID CURRENT_USER IS OBJECT (
path varchar2(32767),
l_type varchar2(32767),
time_modified timestamp with time zone,
checksum varchar2(32767),
checksum_type varchar2(32767),
size_in_bytes number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_file_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_file_t (
path varchar2,
l_type varchar2,
time_modified timestamp with time zone,
checksum varchar2,
checksum_type varchar2,
size_in_bytes number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) file path |
|
(optional) type of the file |
|
(optional) The date and time of the last modification to this file, as described in RFC 3339, section 14.29. |
|
(optional) checksum of the file |
|
(optional) type of the checksum |
|
(optional) size of the file in bytes |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_DEPENDENCY_TBL Type
Nested table type of dbms_cloud_oci_os_management_software_package_dependency_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_dependency_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_software_package_dependency_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_FILE_TBL Type
Nested table type of dbms_cloud_oci_os_management_software_package_file_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_file_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_software_package_file_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_T Type
The details for a software package
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
l_type varchar2(32767),
version varchar2(32767),
architecture varchar2(32767),
last_modified_date varchar2(32767),
checksum varchar2(32767),
checksum_type varchar2(32767),
description varchar2(32767),
size_in_bytes number,
dependencies dbms_cloud_oci_os_management_software_package_dependency_tbl,
files dbms_cloud_oci_os_management_software_package_file_tbl,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_t (
display_name varchar2,
name varchar2,
l_type varchar2,
version varchar2,
architecture varchar2,
last_modified_date varchar2,
checksum varchar2,
checksum_type varchar2,
description varchar2,
size_in_bytes number,
dependencies dbms_cloud_oci_os_management_software_package_dependency_tbl,
files dbms_cloud_oci_os_management_software_package_file_tbl,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Package name |
|
(required) Unique identifier for the package. NOTE - This is not an OCID |
|
(required) Type of the package |
|
(required) Version of the package |
|
(optional) the architecture for which this software was built |
|
(optional) date of the last update to the package |
|
(optional) checksum of the package |
|
(optional) type of the checksum |
|
(optional) description of the package |
|
(optional) size of the package in bytes |
|
(optional) list of dependencies for the software package |
|
(optional) list of files for the software package |
|
(optional) list of software sources that provide the software package |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_PACKAGE_SEARCH_SUMMARY_T Type
Summary information for a software package
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_package_search_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
l_type varchar2(32767),
version varchar2(32767),
architecture varchar2(32767),
summary varchar2(32767),
advisory_type varchar2(32767),
errata dbms_cloud_oci_os_management_id_tbl,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_search_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_package_search_summary_t (
display_name varchar2,
name varchar2,
l_type varchar2,
version varchar2,
architecture varchar2,
summary varchar2,
advisory_type varchar2,
errata dbms_cloud_oci_os_management_id_tbl,
software_sources dbms_cloud_oci_os_management_software_source_id_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Package name |
|
(required) Unique identifier for the package. NOTE - This is not an OCID |
|
(required) Type of the package |
|
(required) Version of the package |
|
(optional) the architecture for which this software was built |
|
(optional) a summary description of the software package |
|
(optional) Type of the erratum. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
|
(optional) List of errata containing this software package |
|
(optional) list of software sources that provide the software package |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_SOURCE_T Type
A software source contains a collection of packages
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_source_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
repo_type varchar2(32767),
arch_type varchar2(32767),
url varchar2(32767),
parent_id varchar2(32767),
parent_name varchar2(32767),
checksum_type varchar2(32767),
maintainer_name varchar2(32767),
maintainer_email varchar2(32767),
maintainer_phone varchar2(32767),
gpg_key_url varchar2(32767),
gpg_key_id varchar2(32767),
gpg_key_fingerprint varchar2(32767),
status varchar2(32767),
lifecycle_state varchar2(32767),
packages number,
associated_managed_instances dbms_cloud_oci_os_management_id_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_source_t (
id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
repo_type varchar2,
arch_type varchar2,
url varchar2,
parent_id varchar2,
parent_name varchar2,
checksum_type varchar2,
maintainer_name varchar2,
maintainer_email varchar2,
maintainer_phone varchar2,
gpg_key_url varchar2,
gpg_key_id varchar2,
gpg_key_fingerprint varchar2,
status varchar2,
lifecycle_state varchar2,
packages number,
associated_managed_instances dbms_cloud_oci_os_management_id_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Software Source |
|
(required) OCID for the Compartment |
|
(required) User friendly name for the software source |
|
(optional) Information specified by the user about the software source |
|
(required) Type of the Software Source |
|
(optional) The architecture type supported by the Software Source Allowed values are: 'IA_32', 'X86_64', 'AARCH64', 'SPARC', 'AMD64_DEBIAN' |
|
(required) URL for the repostiory |
|
(optional) OCID for the parent software source, if there is one |
|
(optional) Display name the parent software source, if there is one |
|
(optional) The yum repository checksum type used by this software source Allowed values are: 'SHA1', 'SHA256', 'SHA384', 'SHA512' |
|
(optional) Name of the person maintaining this software source |
|
(optional) Email address of the person maintaining this software source |
|
(optional) Phone number of the person maintaining this software source |
|
(optional) URL of the GPG key for this software source |
|
(optional) ID of the GPG key for this software source |
|
(optional) Fingerprint of the GPG key for this software source |
|
(optional) status of the software source. Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING' |
|
(optional) The current state of the Software Source. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) Number of packages |
|
(optional) list of the Managed Instances associated with this Software Sources |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_SOFTWARE_SOURCE_SUMMARY_T Type
A software source contains a collection of packages
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_software_source_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
repo_type varchar2(32767),
status varchar2(32767),
packages number,
lifecycle_state varchar2(32767),
parent_id varchar2(32767),
parent_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_source_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_software_source_summary_t (
id varchar2,
description varchar2,
compartment_id varchar2,
display_name varchar2,
repo_type varchar2,
status varchar2,
packages number,
lifecycle_state varchar2,
parent_id varchar2,
parent_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) OCID for the Software Source |
|
(optional) Information specified by the user about the software source |
|
(required) OCID for the Compartment |
|
(required) User friendly name for the software source |
|
(required) Type of the Software Source |
|
(optional) status of the software source. Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING' |
|
(optional) Number of packages |
|
(optional) The current state of the software source. Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED' |
|
(optional) OCID for the parent software source, if there is one |
|
(optional) Display name the parent software source, if there is one |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_EVENT_DETAILS_T Type
Information for updating an event associated with a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_event_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_event_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_event_details_t (
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MANAGED_INSTANCE_DETAILS_T Type
Information to update a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_managed_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
notification_topic_id varchar2(32767),
is_data_collection_authorized number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_managed_instance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_managed_instance_details_t (
notification_topic_id varchar2,
is_data_collection_authorized number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) OCID of the ONS topic used to send notification to users |
|
(optional) True if user allow data collection for this instance |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MANAGED_INSTANCE_GROUP_DETAILS_T Type
Information for updating a managed instance group
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_managed_instance_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_managed_instance_group_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_managed_instance_group_details_t (
display_name varchar2,
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Managed Instance Group identifier |
|
(optional) Information specified by the user about the managed instance group |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MODULE_STREAM_PROFILE_DETAILS_T Type
Information detailing the state of a module stream profile
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_module_stream_profile_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
profile_name varchar2(32767),
status varchar2(32767),
is_default number,
time_modified timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_stream_profile_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_stream_profile_details_t (
profile_name varchar2,
status varchar2,
is_default number,
time_modified timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the profile of the parent stream |
|
(required) The status of the profile. A profile with the \"INSTALLED\" status indicates that the profile has been installed. A profile with the \"AVAILABLE\" status indicates that the profile is not installed, but can be. Allowed values are: 'INSTALLED', 'AVAILABLE' |
|
(optional) Indicates if the module stream profile is the default |
|
(required) The date and time of the last status change for this object, as described in RFC 3339, section 14.29. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MODULE_STREAM_PROFILE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_os_management_update_module_stream_profile_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_module_stream_profile_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_update_module_stream_profile_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MODULE_STREAM_DETAILS_T Type
Information detailing the state of a module stream
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_module_stream_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
stream_name varchar2(32767),
status varchar2(32767),
time_modified timestamp with time zone,
software_source_name varchar2(32767),
software_source_url varchar2(32767),
is_default number,
profiles dbms_cloud_oci_os_management_update_module_stream_profile_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_stream_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_stream_details_t (
stream_name varchar2,
status varchar2,
time_modified timestamp with time zone,
software_source_name varchar2,
software_source_url varchar2,
is_default number,
profiles dbms_cloud_oci_os_management_update_module_stream_profile_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of the stream of the parent module |
|
(required) The status of the stream A stream with the \"ENABLED\" status can be used as a source for installing profiles. Streams with this status are also \"ACTIVE\". A stream with the \"DISABLED\" status cannot be the source for installing profiles. To install profiles and packages from this stream, it must be enabled. A stream with the \"ACTIVE\" status can be used as a source for installing profiles. The packages that comprise the stream are also used when a matching package is installed directly. In general, a stream can have this status if it is the default stream for the module and no stream has been explicitly enabled. Allowed values are: 'ENABLED', 'DISABLED', 'ACTIVE' |
|
(required) The date and time of the last status change for this object, as described in RFC 3339, section 14.29. |
|
(optional) The name of the software source that publishes this stream. |
|
(optional) The URL of the software source that publishes this stream. |
|
(optional) Indicates if the module stream is the default |
|
(optional) The profiles of the stream |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MODULE_STREAM_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_os_management_update_module_stream_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_module_stream_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_update_module_stream_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MODULE_DETAILS_T Type
A description of a module and its stream
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_module_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
module_name varchar2(32767),
streams dbms_cloud_oci_os_management_update_module_stream_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_details_t (
module_name varchar2,
streams dbms_cloud_oci_os_management_update_module_stream_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The name of a module |
|
(optional) The streams of the module |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MODULE_DETAILS_TBL Type
Nested table type of dbms_cloud_oci_os_management_update_module_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_module_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_update_module_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_MODULE_STREAM_STATE_DETAILS_T Type
A complete description of the state of modules on a managed instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_module_stream_state_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
modules dbms_cloud_oci_os_management_update_module_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_stream_state_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_module_stream_state_details_t (
modules dbms_cloud_oci_os_management_update_module_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) The modules known to a managed instance |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_SCHEDULED_JOB_DETAILS_T Type
Information for updating a Scheduled Job
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_scheduled_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
schedule_type varchar2(32767),
time_next_execution timestamp with time zone,
interval_type varchar2(32767),
interval_value varchar2(32767),
operation_type varchar2(32767),
update_type varchar2(32767),
package_names dbms_cloud_oci_os_management_package_name_tbl,
update_names dbms_cloud_oci_os_management_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_scheduled_job_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_scheduled_job_details_t (
display_name varchar2,
description varchar2,
schedule_type varchar2,
time_next_execution timestamp with time zone,
interval_type varchar2,
interval_value varchar2,
operation_type varchar2,
update_type varchar2,
package_names dbms_cloud_oci_os_management_package_name_tbl,
update_names dbms_cloud_oci_os_management_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) Scheduled Job name |
|
(optional) Details describing the Scheduled Job. |
|
(optional) the type of scheduling this Scheduled Job follows Allowed values are: 'ONETIME', 'RECURRING' |
|
(optional) the desired time for the next execution of this Scheduled Job |
|
(optional) the interval period for a recurring Scheduled Job (only if schedule type is RECURRING) Allowed values are: 'HOUR', 'DAY', 'WEEK', 'MONTH' |
|
(optional) the value for the interval period for a recurring Scheduled Job (only if schedule type is RECURRING) |
|
(optional) the type of operation this Scheduled Job performs Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND' |
|
(optional) Type of the update (only if operation type is UPDATEALL) Allowed values are: 'SECURITY', 'BUGFIX', 'ENHANCEMENT', 'OTHER', 'KSPLICE', 'ALL' |
|
(optional) the id of the package (only if operation type is INSTALL/UPDATE/REMOVE) |
|
(optional) The unique names of the Windows Updates (only if operation type is INSTALL). This is only applicable when the osFamily is for Windows managed instances. |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_UPDATE_SOFTWARE_SOURCE_DETAILS_T Type
Information for updating a software source on the management system
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_update_software_source_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
maintainer_name varchar2(32767),
maintainer_email varchar2(32767),
maintainer_phone varchar2(32767),
checksum_type varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_software_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_update_software_source_details_t (
display_name varchar2,
description varchar2,
maintainer_name varchar2,
maintainer_email varchar2,
maintainer_phone varchar2,
checksum_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(optional) User friendly name for the software source |
|
(optional) Information specified by the user about the software source |
|
(optional) Name of the person maintaining this software source |
|
(optional) Email address of the person maintaining this software source |
|
(optional) Phone number of the person maintaining this software source |
|
(optional) The yum repository checksum type used by this software source Allowed values are: 'SHA1', 'SHA256', 'SHA384', 'SHA512' |
|
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}` |
|
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` |
DBMS_CLOUD_OCI_OS_MANAGEMENT_WINDOWS_UPDATE_T Type
An update available for a Windows managed instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_windows_update_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
description varchar2(32767),
update_type varchar2(32767),
size_in_bytes number,
is_eligible_for_installation varchar2(32767),
installation_requirements dbms_cloud_oci_os_management_varchar2_tbl,
is_reboot_required_for_installation number,
kb_article_ids dbms_cloud_oci_os_management_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_windows_update_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_windows_update_t (
display_name varchar2,
name varchar2,
description varchar2,
update_type varchar2,
size_in_bytes number,
is_eligible_for_installation varchar2,
installation_requirements dbms_cloud_oci_os_management_varchar2_tbl,
is_reboot_required_for_installation number,
kb_article_ids dbms_cloud_oci_os_management_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Windows Update name. |
|
(required) Unique identifier for the Windows update. NOTE - This is not an OCID, but is a unique identifier assigned by Microsoft. Example: `6981d463-cd91-4a26-b7c4-ea4ded9183ed` |
|
(optional) Information about the Windows Update. |
|
(required) The purpose of this update. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
|
(optional) size of the package in bytes |
|
(optional) Indicates whether the update can be installed using OSMS. Allowed values are: 'INSTALLABLE', 'NOT_INSTALLABLE', 'UNKNOWN' |
|
(optional) List of requirements forinstalling on a managed instances Allowed values are: 'EULA_ACCEPTANCE_REQUIRED', 'SOFTWARE_MEDIA_REQUIRED', 'USER_INTERACTION_REQUIRED' |
|
(optional) Indicates whether a reboot may be required to complete installation of this update. |
|
(optional) List of the Microsoft Knowledge Base Article Ids related to this Windows Update. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_WINDOWS_UPDATE_SUMMARY_T Type
An update available for a Windows managed instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_windows_update_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
name varchar2(32767),
update_type varchar2(32767),
installable varchar2(32767),
is_reboot_required_for_installation number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_windows_update_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_windows_update_summary_t (
display_name varchar2,
name varchar2,
update_type varchar2,
installable varchar2,
is_reboot_required_for_installation number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) Windows Update name |
|
(required) Unique identifier for the Windows update. NOTE - This is not an OCID, but is a unique identifier assigned by Microsoft. Example: `6981d463-cd91-4a26-b7c4-ea4ded9183ed` |
|
(required) The purpose of this update. Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER' |
|
(optional) Indicates whether the update can be installed using OSMS. Allowed values are: 'INSTALLABLE', 'NOT_INSTALLABLE', 'UNKNOWN' |
|
(optional) Indicates whether a reboot may be required to complete installation of this update. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_WORK_REQUEST_RESOURCE_T Type
A resource created, operated on or used by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
name varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
name varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) The resource type for the work request. |
|
(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. If the request failed for that resource, the state will be FAILED. Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'FAILED', 'IN_PROGRESS', 'INSTALLED', 'REMOVED' |
|
(required) The identifier of the resource. Not all resources will have an id. |
|
(optional) The name of the resource. Not all resources will have a name specified. |
|
(required) The URI path that the user can do a GET on to access the resource metadata. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_WORK_REQUEST_RESOURCE_TBL Type
Nested table type of dbms_cloud_oci_os_management_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_os_management_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_OS_MANAGEMENT_WORK_REQUEST_T Type
A description of workrequest status
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
message varchar2(32767),
managed_instance_id dbms_cloud_oci_os_management_id_t,
resources dbms_cloud_oci_os_management_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,
os_family varchar2(32767),
parent_id varchar2(32767),
children_ids dbms_cloud_oci_os_management_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
description varchar2,
message varchar2,
managed_instance_id dbms_cloud_oci_os_management_id_t,
resources dbms_cloud_oci_os_management_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,
os_family varchar2,
parent_id varchar2,
children_ids dbms_cloud_oci_os_management_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) the type of operation this Work Request performs Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND' |
|
(required) status of current work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELLING', 'CANCELED' |
|
(required) The id of the work request. |
|
(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used |
|
(optional) Description of the type of work. |
|
(optional) A progress or error message, if there is any. |
|
(optional) |
|
(required) The resources affected by this work request. |
|
(required) Percentage of the request completed. |
|
(required) The date and time the request was created, as described in RFC 3339, section 14.29. |
|
(optional) The date and time the request was started, as described in RFC 3339, section 14.29. |
|
(optional) The date and time the object was finished, as described in RFC 3339. |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |
|
(optional) The parent of this work request, if one exists. |
|
(optional) A list of the IDs of any children of this work request |
DBMS_CLOUD_OCI_OS_MANAGEMENT_WORK_REQUEST_ERROR_T Type
Human readable error message describing why the work request failed
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_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_os_management_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_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. |
|
(required) A human readable description of the issue encountered. |
|
(optional) The date and time the error happened, as described in RFC 3339, section 14.29. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_WORK_REQUEST_LOG_ENTRY_T Type
Human readable log message describing what the work request is doing
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_work_request_log_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
l_timestamp timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) A human readable log message. |
|
(required) The date and time the error happened, as described in RFC 3339, section 14.29. |
DBMS_CLOUD_OCI_OS_MANAGEMENT_WORK_REQUEST_SUMMARY_T Type
A work request summary
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_os_management_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
operation_type varchar2(32767),
status varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
description varchar2(32767),
message varchar2(32767),
percent_complete number,
time_accepted timestamp with time zone,
os_family varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_os_management_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
description varchar2,
message varchar2,
percent_complete number,
time_accepted timestamp with time zone,
os_family varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field | Description |
---|---|
|
(required) the type of operation this Work Request performs Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND' |
|
(required) status of current work request. Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'FAILED', 'SUCCEEDED', 'CANCELLING', 'CANCELED' |
|
(required) The id of the work request. |
|
(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used |
|
(optional) Description of the type of work. |
|
(optional) A progress or error message, if there is any. |
|
(optional) Percentage of the request completed. |
|
(required) The date and time the request was created, as described in RFC 3339, section 14.29. |
|
(optional) The Operating System type of the managed instance. Allowed values are: 'LINUX', 'WINDOWS', 'ALL' |