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

package_names

(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

code

(required) A short error code that defines the error, meant for programmatic parsing.

message

(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

software_source_id

(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

software_source_id

(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

is_auto_update_enabled

(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

id

(required) unique identifier that is immutable on creation

compartment_id

(required) OCID for the Compartment

display_name

(required) User friendly name for the software source

parent_id

(optional) OCID for the parent software source, if there is one

parent_name

(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

id

(required) unique identifier that is immutable on creation

display_name

(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

name

(optional) software source name

id

(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

display_name

(required) Package name

name

(required) Unique identifier for the package available for update. NOTE - This is not an OCID

update_type

(optional) The purpose of this update.

Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER'

l_type

(required) Type of the package

installed_version

(required) Version of the installed package

available_version

(required) Version of the package available for update

architecture

(optional) The architecture for which this package was built

errata

(optional) List of errata containing this update

related_cves

(optional) List of CVEs applicable to this erratum

software_sources

(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

display_name

(required) Windows Update name

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`

update_type

(required) The purpose of this update.

Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER'

is_eligible_for_installation

(optional) Indicates whether the update can be installed using OSMS.

Allowed values are: 'INSTALLABLE', 'NOT_INSTALLABLE', 'UNKNOWN'

is_reboot_required_for_installation

(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

compartment_id

(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

compartment_id

(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

compartment_id

(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

architecture

(optional) system architecture

Allowed values are: 'IA_32', 'X86_64', 'AARCH64', 'SPARC', 'AMD64_DEBIAN'

ksplice_effective_kernel_version

(optional) Active ksplice kernel version (uptrack-uname -r)

os_family

(optional) The Operating System type of the managed instance.

Allowed values are: 'LINUX', 'WINDOWS', 'ALL'

os_name

(optional) Operating System Name (OCA value)

os_kernel_release

(optional) Operating System Kernel Release (uname -v)

os_kernel_version

(optional) Operating System Kernel Version (uname -r)

os_system_version

(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

display_name

(required) Managed Instance Group identifier

description

(optional) Information specified by the user about the managed instance group

compartment_id

(required) OCID for the Compartment

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

os_family

(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

name

(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

compartment_id

(required) OCID for the Compartment

display_name

(required) Scheduled Job name

description

(optional) Details describing the Scheduled Job.

schedule_type

(required) the type of scheduling this Scheduled Job follows

Allowed values are: 'ONETIME', 'RECURRING'

time_next_execution

(required) the desired time for the next execution of this Scheduled Job

interval_type

(optional) the interval period for a recurring Scheduled Job (only if schedule type is RECURRING)

Allowed values are: 'HOUR', 'DAY', 'WEEK', 'MONTH'

interval_value

(optional) the value for the interval period for a recurring Scheduled Job (only if schedule type is RECURRING)

managed_instances

(optional) The list of managed instances this scheduled job operates on (mutually exclusive with managedInstanceGroups). Either this or the managedInstanceGroups must be supplied.

managed_instance_groups

(optional) The list of managed instance groups this scheduled job operates on (mutually exclusive with managedInstances). Either this or managedInstances must be supplied.

operation_type

(required) the type of operation this Scheduled Job performs

Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND'

update_type

(optional) Type of the update (only if operation type is UPDATEALL)

Allowed values are: 'SECURITY', 'BUGFIX', 'ENHANCEMENT', 'OTHER', 'KSPLICE', 'ALL'

package_names

(optional) the id of the package (only if operation type is INSTALL/UPDATE/REMOVE)

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

update_names

(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.

os_family

(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

compartment_id

(required) OCID for the Compartment

display_name

(required) User friendly name for the software source

description

(optional) Information specified by the user about the software source

arch_type

(required) The architecture type supported by the Software Source

Allowed values are: 'IA_32', 'X86_64', 'AARCH64', 'SPARC', 'AMD64_DEBIAN'

maintainer_name

(optional) Name of the person maintaining this software source

maintainer_email

(optional) Email address of the person maintaining this software source

maintainer_phone

(optional) Phone number of the person maintaining this software source

checksum_type

(optional) The yum repository checksum type used by this software source

Allowed values are: 'SHA1', 'SHA256', 'SHA384', 'SHA512'

parent_id

(optional) OCID for the parent software source, if there is one

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

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

software_source_id

(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

software_source_id

(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

display_name

(required) Package name

name

(required) Unique identifier for the package. NOTE - This is not an OCID

l_type

(required) Type of the package

version

(required) Version of the package

architecture

(optional) the architecture for which this software was built

checksum

(optional) checksum of the package

checksum_type

(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

name

(required) Advisory name

id

(required) OCID for the Erratum.

compartment_id

(required) OCID for the Compartment.

synopsis

(optional) Summary description of the erratum.

issued

(optional) date the erratum was issued

description

(optional) Details describing the erratum.

updated

(optional) most recent date the erratum was updated

advisory_type

(optional) Type of the erratum.

Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER'

l_from

(optional) Information specifying from where the erratum was release.

solution

(optional) Information describing how the erratum can be resolved.

references

(optional) Information describing how to find more information about the erratum.

affected_instances

(optional) list of managed instances to this erratum

related_cves

(optional) list of CVEs applicable to this erratum

software_sources

(optional) list of Software Sources

packages

(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

name

(required) Advisory name

id

(required) OCID for the Erratum.

compartment_id

(required) OCID for the Compartment.

synopsis

(optional) Summary description of the erratum.

issued

(optional) date the erratum was issued

updated

(optional) most recent date the erratum was updated

advisory_type

(optional) Type of the erratum.

Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER'

related_cves

(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

id

(required) OCID identifier of the event

instance_id

(optional) OCI identifier of the instance where the event occurred

compartment_id

(optional) OCI identifier of the compartement where the instance is

tenancy_id

(optional) OCID identifier of the instance tenancy.

summary

(optional) human readable description of the event

l_timestamp

(optional) Time of the occurrence of the event

event_fingerprint

(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}

l_count

(optional) Event occurrence count. Number of time the event has happen on the system.

event_type

(required) Type of the Event.

Allowed values are: 'KERNEL_OOPS', 'KERNEL_CRASH', 'CRASH', 'EXPLOIT_ATTEMPT', 'COMPLIANCE', 'TUNING_SUGGESTION', 'TUNING_APPLIED', 'SECURITY', 'ERROR', 'WARNING'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_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

id

(required) OCID identifier of the event

instance_id

(required) Unique OCI identifier of the instance where the event occurred

summary

(optional) human readable description of the event

event_type

(required) Type of the event.

Allowed values are: 'KERNEL_OOPS', 'KERNEL_CRASH', 'CRASH', 'EXPLOIT_ATTEMPT', 'COMPLIANCE', 'TUNING_SUGGESTION', 'TUNING_APPLIED', 'SECURITY', 'ERROR', 'WARNING'

l_count

(optional) Event occurrence count. Number of time the same event happened on the system.

l_timestamp

(optional) Time of the occurrence of the event

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_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

items

(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

content_availability

(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'

instance_path

(optional) Path to the event content on the instance

l_size

(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

l_count

(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

display_name

(required) Package name

name

(required) Unique identifier for the package. NOTE - This is not an OCID

l_type

(required) Type of the package

version

(required) Version of the package

architecture

(optional) The architecture for which this package was built

software_sources

(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

display_name

(required) Package name

name

(required) Unique identifier for the package. NOTE - This is not an OCID

l_type

(required) Type of the package

version

(required) Version of the installed package

architecture

(optional) The architecture for which this package was built

install_time

(optional) Install time of the package

issued

(optional) date the package was issued by a providing erratum (if available)

software_sources

(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

display_name

(required) Windows Update name

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`

update_type

(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

component

(optional) Kernel module responsible of the crash.

backtrace

(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

reason

(optional) reason of the crash

time_first_occurred

(optional) First occurrence time of the event

vmcore

(optional)

content

(optional)

system

(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

reason

(optional) reason of the crash

time_first_occurred

(optional) First occurrence time of the event

vmcore

(optional)

content

(optional)

system

(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

module_name

(required) The name of a module

stream_name

(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

module_name

(required) The name of a module

stream_name

(required) The name of a stream of the specified module

profile_name

(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

is_dry_run

(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.

enable

(optional) The set of module streams to enable.

disable

(optional) The set of module streams to disable.

install

(optional) The set of module stream profiles to install.

remove

(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

display_name

(required) Managed Instance identifier

id

(required) OCID for the managed instance

description

(optional) Information specified by the user about the managed instance

last_checkin

(optional) Time at which the instance last checked in

last_boot

(optional) Time at which the instance last booted

updates_available

(optional) Number of updates available to be installed

os_name

(optional) Operating System Name

os_version

(optional) Operating System Version

os_kernel_version

(optional) Operating System Kernel Version

compartment_id

(required) OCID for the Compartment

status

(optional) status of the managed instance.

Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING'

parent_software_source

(optional) the parent (base) Software Source attached to the Managed Instance

child_software_sources

(optional) list of child Software Sources attached to the Managed Instance

managed_instance_groups

(optional) The ids of the managed instance groups of which this instance is a member.

os_family

(optional) The Operating System type of the managed instance.

Allowed values are: 'LINUX', 'WINDOWS', 'ALL'

is_reboot_required

(optional) Indicates whether a reboot is required to complete installation of updates.

notification_topic_id

(optional) OCID of the ONS topic used to send notification to users

ksplice_effective_kernel_version

(optional) The ksplice effective kernel version

is_data_collection_authorized

(optional) True if user allow data collection for this instance

autonomous

(optional) if present, indicates the Managed Instance is an autonomous instance. Holds all the Autonomous specific information

security_updates_available

(optional) Number of security type updates available to be installed

bug_updates_available

(optional) Number of bug fix type updates available to be installed

enhancement_updates_available

(optional) Number of enhancement type updates available to be installed

other_updates_available

(optional) Number of non-classified updates available to be installed

scheduled_job_count

(optional) Number of scheduled jobs associated with this instance

work_request_count

(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

display_name

(required) Managed Instance Group identifier

id

(required) OCID for the managed instance group

description

(optional) Information specified by the user about the managed instance group

compartment_id

(required) OCID for the Compartment

managed_instances

(optional) list of Managed Instances in the group

lifecycle_state

(optional) The current state of the Software Source.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

os_family

(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

display_name

(required) user settable name

id

(required) OCID for the managed instance group

compartment_id

(required) OCID for the Compartment

description

(optional) Information specified by the user about the managed instance group

managed_instance_count

(optional) Number of managed instances in this managed instance group

lifecycle_state

(optional) The current state of the Software Source.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

os_family

(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

display_name

(required) user settable name

id

(required) OCID for the managed instance

last_checkin

(optional) Time at which the instance last checked in

last_boot

(optional) Time at which the instance last booted

updates_available

(optional) Number of updates available to be installed

compartment_id

(required) OCID for the Compartment

description

(optional) Information specified by the user about the managed instance

status

(optional) status of the managed instance.

Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING'

os_family

(optional) The Operating System type of the managed instance.

Allowed values are: 'LINUX', 'WINDOWS', 'ALL'

is_reboot_required

(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

module_name

(required) The name of the module that contains the stream

stream_name

(required) The name of the stream

is_default

(optional) Indicates if this stream is the default for its module.

software_source_id

(optional) The OCID of the software source that provides this module stream.

architecture

(optional) The architecture for which the packages in this module stream were built

description

(optional) A description of the contents of the module stream

profiles

(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.

packages

(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

module_name

(required) The name of the module that contains the stream profile

stream_name

(required) The name of the stream that contains the profile

profile_name

(required) The name of the profile

status

(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'

time_modified

(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

module_name

(required) The name of the module that contains the stream.

stream_name

(required) The name of the stream.

status

(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'

profiles

(optional) The set of profiles that the module stream contains.

software_source_id

(optional) The OCID of the software source that provides this module stream.

time_modified

(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

module_name

(required) The name of the module that contains the stream profile

stream_name

(required) The name of the stream that contains the profile

profile_name

(required) The name of the profile

is_default

(optional) Indicates if this profile is the default for its module stream.

description

(optional) A description of the contents of the module stream profile

packages

(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

module_name

(required) The name of the module that contains the stream profile

stream_name

(required) The name of the stream that contains the profile

profile_name

(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

module_name

(required) The name of the module that contains the stream.

stream_name

(required) The name of the stream.

software_source_id

(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

interval_type

(required) the interval period for the recurrence

Allowed values are: 'MINUTES', 'HOURS', 'DAYS', 'WEEKS'

interval_value

(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

id

(required) OCID identifier of the event

instance_id

(required) OCID identifier of the instance

l_timestamp

(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

items

(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

package_names

(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

id

(required) OCID for the Scheduled Job

compartment_id

(optional) OCID for the Compartment

display_name

(required) Scheduled Job name

description

(optional) Details describing the Scheduled Job.

schedule_type

(optional) the type of scheduling this Scheduled Job follows

Allowed values are: 'ONETIME', 'RECURRING'

time_next_execution

(optional) the time of the next execution of this Scheduled Job

time_last_execution

(optional) the time of the last execution of this Scheduled Job

interval_type

(optional) the interval period for a recurring Scheduled Job (only if schedule type is RECURRING)

Allowed values are: 'HOUR', 'DAY', 'WEEK', 'MONTH'

interval_value

(optional) the value for the interval period for a recurring Scheduled Job (only if schedule type is RECURRING)

managed_instances

(optional) the list of managed instances this scheduled job operates on (mutually exclusive with managedInstanceGroups)

managed_instance_groups

(optional) the list of managed instance groups this scheduled job operates on (mutually exclusive with managedInstances)

operation_type

(optional) the type of operation this Scheduled Job performs

Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND'

update_type

(optional) Type of the update (only if operation type is UPDATEALL)

Allowed values are: 'SECURITY', 'BUGFIX', 'ENHANCEMENT', 'OTHER', 'KSPLICE', 'ALL'

package_names

(optional) the names of the updates (only if operation type is INSTALL/UPDATE/REMOVE)

work_requests

(optional) list of Work Requests associated with this Scheduled Job

lifecycle_state

(optional) The current state of the Scheduled Job.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

update_names

(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.

os_family

(optional) The Operating System type of the managed instance.

Allowed values are: 'LINUX', 'WINDOWS', 'ALL'

is_restricted

(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

id

(required) OCID for the Scheduled Job

display_name

(required) Scheduled Job name

compartment_id

(optional) OCID for the Compartment

schedule_type

(optional) the type of scheduling this Scheduled Job follows

Allowed values are: 'ONETIME', 'RECURRING'

time_next_execution

(optional) the time/date of the next scheduled execution of this Scheduled Job

time_last_execution

(optional) the time/date of the last execution of this Scheduled Job

managed_instances

(optional) the list of managed instances this scheduled job operates on (mutually exclusive with managedInstanceGroups)

managed_instance_groups

(optional) the list of managed instance groups this scheduled job operates on (mutually exclusive with managedInstances)

operation_type

(optional) the type of operation this Scheduled Job performs

Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND'

lifecycle_state

(optional) The current state of the Scheduled Job.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

os_family

(optional) The Operating System type of the managed instance.

Allowed values are: 'LINUX', 'WINDOWS', 'ALL'

is_restricted

(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

dependency

(optional) the software package's dependency

dependency_type

(optional) the type of the dependency

dependency_modifier

(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

path

(optional) file path

l_type

(optional) type of the file

time_modified

(optional) The date and time of the last modification to this file, as described in RFC 3339, section 14.29.

checksum

(optional) checksum of the file

checksum_type

(optional) type of the checksum

size_in_bytes

(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

display_name

(required) Package name

name

(required) Unique identifier for the package. NOTE - This is not an OCID

l_type

(required) Type of the package

version

(required) Version of the package

architecture

(optional) the architecture for which this software was built

last_modified_date

(optional) date of the last update to the package

checksum

(optional) checksum of the package

checksum_type

(optional) type of the checksum

description

(optional) description of the package

size_in_bytes

(optional) size of the package in bytes

dependencies

(optional) list of dependencies for the software package

files

(optional) list of files for the software package

software_sources

(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

display_name

(required) Package name

name

(required) Unique identifier for the package. NOTE - This is not an OCID

l_type

(required) Type of the package

version

(required) Version of the package

architecture

(optional) the architecture for which this software was built

summary

(optional) a summary description of the software package

advisory_type

(optional) Type of the erratum.

Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER'

errata

(optional) List of errata containing this software package

software_sources

(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

id

(required) OCID for the Software Source

compartment_id

(required) OCID for the Compartment

display_name

(required) User friendly name for the software source

description

(optional) Information specified by the user about the software source

repo_type

(required) Type of the Software Source

arch_type

(optional) The architecture type supported by the Software Source

Allowed values are: 'IA_32', 'X86_64', 'AARCH64', 'SPARC', 'AMD64_DEBIAN'

url

(required) URL for the repostiory

parent_id

(optional) OCID for the parent software source, if there is one

parent_name

(optional) Display name the parent software source, if there is one

checksum_type

(optional) The yum repository checksum type used by this software source

Allowed values are: 'SHA1', 'SHA256', 'SHA384', 'SHA512'

maintainer_name

(optional) Name of the person maintaining this software source

maintainer_email

(optional) Email address of the person maintaining this software source

maintainer_phone

(optional) Phone number of the person maintaining this software source

gpg_key_url

(optional) URL of the GPG key for this software source

gpg_key_id

(optional) ID of the GPG key for this software source

gpg_key_fingerprint

(optional) Fingerprint of the GPG key for this software source

status

(optional) status of the software source.

Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING'

lifecycle_state

(optional) The current state of the Software Source.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

packages

(optional) Number of packages

associated_managed_instances

(optional) list of the Managed Instances associated with this Software Sources

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

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

id

(required) OCID for the Software Source

description

(optional) Information specified by the user about the software source

compartment_id

(required) OCID for the Compartment

display_name

(required) User friendly name for the software source

repo_type

(required) Type of the Software Source

status

(optional) status of the software source.

Allowed values are: 'NORMAL', 'UNREACHABLE', 'ERROR', 'WARNING'

packages

(optional) Number of packages

lifecycle_state

(optional) The current state of the software source.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'DELETING', 'DELETED', 'FAILED'

parent_id

(optional) OCID for the parent software source, if there is one

parent_name

(optional) Display name the parent software source, if there is one

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

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

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

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

notification_topic_id

(optional) OCID of the ONS topic used to send notification to users

is_data_collection_authorized

(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

display_name

(optional) Managed Instance Group identifier

description

(optional) Information specified by the user about the managed instance group

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

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

profile_name

(required) The name of the profile of the parent stream

status

(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'

is_default

(optional) Indicates if the module stream profile is the default

time_modified

(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

stream_name

(required) The name of the stream of the parent module

status

(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'

time_modified

(required) The date and time of the last status change for this object, as described in RFC 3339, section 14.29.

software_source_name

(optional) The name of the software source that publishes this stream.

software_source_url

(optional) The URL of the software source that publishes this stream.

is_default

(optional) Indicates if the module stream is the default

profiles

(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

module_name

(required) The name of a module

streams

(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

modules

(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

display_name

(optional) Scheduled Job name

description

(optional) Details describing the Scheduled Job.

schedule_type

(optional) the type of scheduling this Scheduled Job follows

Allowed values are: 'ONETIME', 'RECURRING'

time_next_execution

(optional) the desired time for the next execution of this Scheduled Job

interval_type

(optional) the interval period for a recurring Scheduled Job (only if schedule type is RECURRING)

Allowed values are: 'HOUR', 'DAY', 'WEEK', 'MONTH'

interval_value

(optional) the value for the interval period for a recurring Scheduled Job (only if schedule type is RECURRING)

operation_type

(optional) the type of operation this Scheduled Job performs

Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND'

update_type

(optional) Type of the update (only if operation type is UPDATEALL)

Allowed values are: 'SECURITY', 'BUGFIX', 'ENHANCEMENT', 'OTHER', 'KSPLICE', 'ALL'

package_names

(optional) the id of the package (only if operation type is INSTALL/UPDATE/REMOVE)

update_names

(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.

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

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

display_name

(optional) User friendly name for the software source

description

(optional) Information specified by the user about the software source

maintainer_name

(optional) Name of the person maintaining this software source

maintainer_email

(optional) Email address of the person maintaining this software source

maintainer_phone

(optional) Phone number of the person maintaining this software source

checksum_type

(optional) The yum repository checksum type used by this software source

Allowed values are: 'SHA1', 'SHA256', 'SHA384', 'SHA512'

freeform_tags

(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`

defined_tags

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

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

display_name

(required) Windows Update name.

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`

description

(optional) Information about the Windows Update.

update_type

(required) The purpose of this update.

Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER'

size_in_bytes

(optional) size of the package in bytes

is_eligible_for_installation

(optional) Indicates whether the update can be installed using OSMS.

Allowed values are: 'INSTALLABLE', 'NOT_INSTALLABLE', 'UNKNOWN'

installation_requirements

(optional) List of requirements forinstalling on a managed instances

Allowed values are: 'EULA_ACCEPTANCE_REQUIRED', 'SOFTWARE_MEDIA_REQUIRED', 'USER_INTERACTION_REQUIRED'

is_reboot_required_for_installation

(optional) Indicates whether a reboot may be required to complete installation of this update.

kb_article_ids

(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

display_name

(required) Windows Update name

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`

update_type

(required) The purpose of this update.

Allowed values are: 'SECURITY', 'BUG', 'ENHANCEMENT', 'OTHER'

installable

(optional) Indicates whether the update can be installed using OSMS.

Allowed values are: 'INSTALLABLE', 'NOT_INSTALLABLE', 'UNKNOWN'

is_reboot_required_for_installation

(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

entity_type

(required) The resource type for the work request.

action_type

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

Allowed values are: 'CREATED', 'UPDATED', 'DELETED', 'FAILED', 'IN_PROGRESS', 'INSTALLED', 'REMOVED'

identifier

(required) The identifier of the resource. Not all resources will have an id.

name

(optional) The name of the resource. Not all resources will have a name specified.

entity_uri

(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

operation_type

(required) the type of operation this Work Request performs

Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND'

status

(required) status of current work request.

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

id

(required) The id of the work request.

compartment_id

(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

description

(optional) Description of the type of work.

message

(optional) A progress or error message, if there is any.

managed_instance_id

(optional)

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

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

time_started

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

time_finished

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

os_family

(optional) The Operating System type of the managed instance.

Allowed values are: 'LINUX', 'WINDOWS', 'ALL'

parent_id

(optional) The parent of this work request, if one exists.

children_ids

(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

code

(required) A machine-usable code for the error that occured.

message

(required) A human readable description of the issue encountered.

l_timestamp

(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

message

(required) A human readable log message.

l_timestamp

(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

operation_type

(required) the type of operation this Work Request performs

Allowed values are: 'INSTALL', 'UPDATE', 'REMOVE', 'UPDATEALL', 'ENABLEMODULESTREAM', 'DISABLEMODULESTREAM', 'SWITCHMODULESTREAM', 'INSTALLMODULESTREAMPROFILE', 'REMOVEMODULESTREAMPROFILE', 'COMPOUND'

status

(required) status of current work request.

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

id

(required) The id of the work request.

compartment_id

(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

description

(optional) Description of the type of work.

message

(optional) A progress or error message, if there is any.

percent_complete

(optional) Percentage of the request completed.

time_accepted

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

os_family

(optional) The Operating System type of the managed instance.

Allowed values are: 'LINUX', 'WINDOWS', 'ALL'

Was this article helpful?