JMS Common Types

DBMS_CLOUD_OCI_JMS_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_JMS_NEW_INSTALLATION_SITE_T Type

The properties of a new Java installation site.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_new_installation_site_t FORCE AUTHID CURRENT_USER IS OBJECT (
  managed_instance_id varchar2(32767),
  release_version varchar2(32767),
  artifact_content_type varchar2(32767),
  installation_path varchar2(32767),
  headless_mode number,
  force_install number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_new_installation_site_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_new_installation_site_t (
    managed_instance_id varchar2,
    release_version varchar2,
    artifact_content_type varchar2,
    installation_path varchar2,
    headless_mode number,
    force_install number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

managed_instance_id

(required) The OCID of the related managed instance.

release_version

(required) The release version of the Java Runtime.

artifact_content_type

(optional) Artifact content type for the Java version.

Allowed values are: 'JDK', 'JRE', 'SERVER_JRE'

installation_path

(optional) Custom path to install new Java installation site.

headless_mode

(optional) Flag to install headless or headful Java installation. Only valid for Oracle Linux in OCI.

force_install

(optional) Forces the installation request even if a more recent release is already present in the host.

DBMS_CLOUD_OCI_JMS_NEW_INSTALLATION_SITE_TBL Type

Nested table type of dbms_cloud_oci_jms_new_installation_site_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_new_installation_site_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_new_installation_site_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_ADD_FLEET_INSTALLATION_SITES_DETAILS_T Type

The list of Java installation sites to add.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_add_fleet_installation_sites_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  installation_sites dbms_cloud_oci_jms_new_installation_site_tbl,
  post_installation_actions dbms_cloud_oci_jms_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_add_fleet_installation_sites_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_add_fleet_installation_sites_details_t (
    installation_sites dbms_cloud_oci_jms_new_installation_site_tbl,
    post_installation_actions dbms_cloud_oci_jms_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

installation_sites

(required) The list of installation sites to add.

post_installation_actions

(optional) Optional list of post java installation actions

DBMS_CLOUD_OCI_JMS_ADVANCED_USAGE_TRACKING_T Type

AdvancedUsageTracking configuration

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_advanced_usage_tracking_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_advanced_usage_tracking_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_advanced_usage_tracking_t (
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) AdvancedUsageTracking flag to store enabled or disabled status.

DBMS_CLOUD_OCI_JMS_PLUGIN_T Type

Information about the plugin.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_plugin_t FORCE AUTHID CURRENT_USER IS OBJECT (
  name varchar2(32767),
  version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_plugin_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_plugin_t (
    name varchar2,
    version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

name

(required) The name of the plugin.

version

(required) The version of the plugin.

DBMS_CLOUD_OCI_JMS_PLUGIN_TBL Type

Nested table type of dbms_cloud_oci_jms_plugin_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_plugin_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_plugin_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_AGENT_T Type

Information about the agent.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_agent_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  l_type varchar2(32767),
  java_version varchar2(32767),
  java_security_status varchar2(32767),
  plugins dbms_cloud_oci_jms_plugin_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_agent_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_agent_t (
    display_name varchar2,
    l_type varchar2,
    java_version varchar2,
    java_security_status varchar2,
    plugins dbms_cloud_oci_jms_plugin_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) The name of the agent.

l_type

(required) The agent type.

Allowed values are: 'OMA', 'OCA'

java_version

(required) The java version.

java_security_status

(required) The security status of the Java Runtime.

Allowed values are: 'EARLY_ACCESS', 'UNKNOWN', 'UP_TO_DATE', 'UPDATE_REQUIRED', 'UPGRADE_REQUIRED'

plugins

(required) A list of plugins installed on this agent.

DBMS_CLOUD_OCI_JMS_ANNOUNCEMENT_SUMMARY_T Type

An summary of a announcement on Console Overview page

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_announcement_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key number,
  summary varchar2(32767),
  url varchar2(32767),
  time_released timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_announcement_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_announcement_summary_t (
    key number,
    summary varchar2,
    url varchar2,
    time_released timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) Unique id of the announcement

summary

(required) Summary text of the announcement

url

(required) URL to the announcement web page

time_released

(required) Date time on which the announcement was released

DBMS_CLOUD_OCI_JMS_ANNOUNCEMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_announcement_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_announcement_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_announcement_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_ANNOUNCEMENT_COLLECTION_T Type

Results of list announcements call. Contains AnnouncementSummary items

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_announcement_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_announcement_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_announcement_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_announcement_collection_t (
    items dbms_cloud_oci_jms_announcement_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of AnnouncementSummary items

DBMS_CLOUD_OCI_JMS_OPERATING_SYSTEM_T Type

Operating System of the platform on which the Java Runtime was reported.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_operating_system_t FORCE AUTHID CURRENT_USER IS OBJECT (
  family varchar2(32767),
  name varchar2(32767),
  version varchar2(32767),
  architecture varchar2(32767),
  managed_instance_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_operating_system_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_operating_system_t (
    family varchar2,
    name varchar2,
    version varchar2,
    architecture varchar2,
    managed_instance_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

family

(required) The operating system type, such as Windows or Linux

Allowed values are: 'LINUX', 'WINDOWS', 'MACOS', 'UNKNOWN'

name

(required) The name of the operating system as provided by the Java system property os.name.

version

(required) The version of the operating system as provided by the Java system property os.version.

architecture

(required) The architecture of the operating system as provided by the Java system property os.arch.

managed_instance_count

(optional) Number of instances running the operating system.

DBMS_CLOUD_OCI_JMS_OPERATING_SYSTEM_TBL Type

Nested table type of dbms_cloud_oci_jms_operating_system_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_operating_system_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_operating_system_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_APPLICATION_INSTALLATION_USAGE_SUMMARY_T Type

Summarizes application installation usage information during a specified time period. The main difference between ApplicationUsage and ApplicationInstallationUsageSummary is the presence of installation information. ApplicationUsage provides only aggregated information for an application regardless of the installation paths. Therefore, two different applications with the same application name installed in two different paths will be aggregated to a single application. This aggregation makes it difficult to focus actions to single application installed on a known path. An application installation is independent of the Java Runtime on which it's running or the Managed Instance where it's installed.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_application_installation_usage_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  application_installation_key varchar2(32767),
  application_key varchar2(32767),
  display_name varchar2(32767),
  application_type varchar2(32767),
  installation_path varchar2(32767),
  full_class_path dbms_cloud_oci_jms_varchar2_tbl,
  operating_systems dbms_cloud_oci_jms_operating_system_tbl,
  approximate_installation_count number,
  approximate_jre_count number,
  approximate_managed_instance_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_installation_usage_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_installation_usage_summary_t (
    application_installation_key varchar2,
    application_key varchar2,
    display_name varchar2,
    application_type varchar2,
    installation_path varchar2,
    full_class_path dbms_cloud_oci_jms_varchar2_tbl,
    operating_systems dbms_cloud_oci_jms_operating_system_tbl,
    approximate_installation_count number,
    approximate_jre_count number,
    approximate_managed_instance_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

application_installation_key

(required) An internal identifier for the application installation that is unique to a Fleet.

application_key

(required) An internal identifier for the application that is unique to a Fleet. ApplicationKey will be identical for applications with different installation information.

display_name

(required) The name of the application.

application_type

(required) The type of the application, denoted by how the application was started.

installation_path

(optional) The full path on which the application installation was detected.

full_class_path

(optional) List of full paths where the application last searched for classes. Contains full paths to all items from module-list and class path list.

operating_systems

(optional) The operating systems running this application.

approximate_installation_count

(optional) The approximate count of installations running this application.

approximate_jre_count

(optional) The approximate count of Java Runtimes running this application.

approximate_managed_instance_count

(optional) The approximate count of managed instances reporting this application.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_APPLICATION_INSTALLATION_USAGE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_application_installation_usage_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_application_installation_usage_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_application_installation_usage_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_APPLICATION_INSTALLATION_USAGE_SUMMARY_COLLECTION_T Type

Results of an application installation search. Contains ApplicationInstallationUsageSummary items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_application_installation_usage_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_application_installation_usage_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_installation_usage_summary_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_installation_usage_summary_collection_t (
    items dbms_cloud_oci_jms_application_installation_usage_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of application installations.

DBMS_CLOUD_OCI_JMS_APPLICATION_USAGE_T Type

Application usage during a specified time period. An application is a Java application that can be executed by a Java Runtime installation. An application is independent of the Java Runtime or its installation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_application_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  application_id varchar2(32767),
  display_name varchar2(32767),
  application_type varchar2(32767),
  operating_systems dbms_cloud_oci_jms_operating_system_tbl,
  approximate_installation_count number,
  approximate_jre_count number,
  approximate_managed_instance_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_usage_t (
    application_id varchar2,
    display_name varchar2,
    application_type varchar2,
    operating_systems dbms_cloud_oci_jms_operating_system_tbl,
    approximate_installation_count number,
    approximate_jre_count number,
    approximate_managed_instance_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

application_id

(required) An internal identifier for the application that is unique to a Fleet.

display_name

(required) The name of the application.

application_type

(required) The type of the application, denoted by how the application was started.

operating_systems

(optional) The operating systems running this application.

approximate_installation_count

(optional) The approximate count of installations running this application.

approximate_jre_count

(optional) The approximate count of Java Runtimes running this application.

approximate_managed_instance_count

(optional) The approximate count of managed instances reporting this application.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_APPLICATION_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_application_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_application_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_application_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_APPLICATION_USAGE_COLLECTION_T Type

Results of an application search. Contains ApplicationUsage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_application_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_application_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_usage_collection_t (
    items dbms_cloud_oci_jms_application_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of applications.

DBMS_CLOUD_OCI_JMS_WORK_ITEM_DETAILS_T Type

The minimum details of a work item.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_item_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  kind varchar2(32767),
  work_item_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_item_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_item_details_t (
    kind varchar2,
    work_item_type varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

kind

(required) The kind of work item details.

Allowed values are: 'BASIC', 'APPLICATION', 'LCM'

work_item_type

(optional) The work item type.

Allowed values are: 'LCM', 'JFR_CAPTURE', 'JFR_UPLOAD', 'CRYPTO_ANALYSIS', 'CRYPTO_ANALYSIS_MERGE', 'ADVANCED_USAGE_TRACKING', 'ADV_USAGE_SERVER_METADATA', 'ADV_USAGE_SERVER_LIBRARIES', 'ADV_USAGE_JAVA_LIBRARIES', 'PERFORMANCE_TUNING', 'JMIGRATE_ANALYSIS', 'JMIGRATE_CREATE_REPORT', 'DRS'

DBMS_CLOUD_OCI_JMS_APPLICATION_WORK_ITEM_DETAILS_T Type

The work item details with JFR related information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_application_work_item_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_jms_work_item_details_t (
  application_key varchar2(32767),
  application_installation_key varchar2(32767),
  application_name varchar2(32767),
  application_installation_path varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_work_item_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_application_work_item_details_t (
    kind varchar2,
    work_item_type varchar2,
    application_key varchar2,
    application_installation_key varchar2,
    application_name varchar2,
    application_installation_path varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_jms_application_work_item_details_t is a subtype of the dbms_cloud_oci_jms_work_item_details_t type.

Fields

Field Description

application_key

(required) The unique key of the application of the JFR.

application_installation_key

(optional) The unique key of the application installation of the JFR.

application_name

(required) The application name.

application_installation_path

(optional) The full path on which application installation was detected.

DBMS_CLOUD_OCI_JMS_BASIC_WORK_ITEM_DETAILS_T Type

The common work item details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_basic_work_item_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_jms_work_item_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_basic_work_item_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_basic_work_item_details_t (
    kind varchar2,
    work_item_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_jms_basic_work_item_details_t is a subtype of the dbms_cloud_oci_jms_work_item_details_t type.

DBMS_CLOUD_OCI_JMS_BLOCKLIST_TARGET_T Type

A resource to blocklist for certain operation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_blocklist_target_t FORCE AUTHID CURRENT_USER IS OBJECT (
  fleet_id varchar2(32767),
  managed_instance_id varchar2(32767),
  installation_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_target_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_target_t (
    fleet_id varchar2,
    managed_instance_id varchar2,
    installation_key varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

fleet_id

(required) The OCID of the fleet.

managed_instance_id

(optional) The OCID of the related managed instance.

installation_key

(optional) The unique identifier for the installation of Java Runtime at a specific path on a specific operating system.

DBMS_CLOUD_OCI_JMS_BLOCKLIST_T Type

The blocklist record to prevent a target resource from certain operation with reason.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_blocklist_t FORCE AUTHID CURRENT_USER IS OBJECT (
  key varchar2(32767),
  target dbms_cloud_oci_jms_blocklist_target_t,
  operation varchar2(32767),
  reason varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_t (
    key varchar2,
    target dbms_cloud_oci_jms_blocklist_target_t,
    operation varchar2,
    reason varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

key

(required) The unique identifier of this blocklist record.

target

(required)

operation

(required) The operation type

Allowed values are: 'CREATE_FLEET', 'DELETE_FLEET', 'MOVE_FLEET', 'UPDATE_FLEET', 'UPDATE_FLEET_AGENT_CONFIGURATION', 'DELETE_JAVA_INSTALLATION', 'CREATE_JAVA_INSTALLATION', 'COLLECT_JFR', 'REQUEST_CRYPTO_EVENT_ANALYSIS', 'REQUEST_PERFORMANCE_TUNING_ANALYSIS', 'REQUEST_JAVA_MIGRATION_ANALYSIS', 'DELETE_JMS_REPORT', 'SCAN_JAVA_SERVER_USAGE', 'SCAN_LIBRARY_USAGE', 'EXPORT_DATA_CSV', 'CREATE_DRS_FILE', 'UPDATE_DRS_FILE', 'DELETE_DRS_FILE', 'ENABLE_DRS', 'DISABLE_DRS'

reason

(optional) The reason why the operation is blocklisted.

DBMS_CLOUD_OCI_JMS_BLOCKLIST_TBL Type

Nested table type of dbms_cloud_oci_jms_blocklist_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_blocklist_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_blocklist_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_BLOCKLIST_COLLECTION_T Type

Results of a blocklist search that contain Blocklist records.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_blocklist_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_blocklist_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_collection_t (
    items dbms_cloud_oci_jms_blocklist_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) The blocklist

DBMS_CLOUD_OCI_JMS_BLOCKLIST_ENTRY_T Type

An entry for blocklist to describe blocked operation and reason.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_blocklist_entry_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation varchar2(32767),
  reason varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_blocklist_entry_t (
    operation varchar2,
    reason varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation

(required) The operation type.

Allowed values are: 'CREATE_FLEET', 'DELETE_FLEET', 'MOVE_FLEET', 'UPDATE_FLEET', 'UPDATE_FLEET_AGENT_CONFIGURATION', 'DELETE_JAVA_INSTALLATION', 'CREATE_JAVA_INSTALLATION', 'COLLECT_JFR', 'REQUEST_CRYPTO_EVENT_ANALYSIS', 'REQUEST_PERFORMANCE_TUNING_ANALYSIS', 'REQUEST_JAVA_MIGRATION_ANALYSIS', 'DELETE_JMS_REPORT', 'SCAN_JAVA_SERVER_USAGE', 'SCAN_LIBRARY_USAGE', 'EXPORT_DATA_CSV', 'CREATE_DRS_FILE', 'UPDATE_DRS_FILE', 'DELETE_DRS_FILE', 'ENABLE_DRS', 'DISABLE_DRS'

reason

(required) The reason why the operation is blocklisted.

DBMS_CLOUD_OCI_JMS_CHANGE_FLEET_COMPARTMENT_DETAILS_T Type

Attributes to change the compartment of a Fleet.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment into which the Fleet should be moved.

DBMS_CLOUD_OCI_JMS_CREATE_BLOCKLIST_DETAILS_T Type

The blocklist record details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_create_blocklist_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  target dbms_cloud_oci_jms_blocklist_target_t,
  operation varchar2(32767),
  reason varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_create_blocklist_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_create_blocklist_details_t (
    target dbms_cloud_oci_jms_blocklist_target_t,
    operation varchar2,
    reason varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

target

(required)

operation

(required) The operation type

Allowed values are: 'CREATE_FLEET', 'DELETE_FLEET', 'MOVE_FLEET', 'UPDATE_FLEET', 'UPDATE_FLEET_AGENT_CONFIGURATION', 'DELETE_JAVA_INSTALLATION', 'CREATE_JAVA_INSTALLATION', 'COLLECT_JFR', 'REQUEST_CRYPTO_EVENT_ANALYSIS', 'REQUEST_PERFORMANCE_TUNING_ANALYSIS', 'REQUEST_JAVA_MIGRATION_ANALYSIS', 'DELETE_JMS_REPORT', 'SCAN_JAVA_SERVER_USAGE', 'SCAN_LIBRARY_USAGE', 'EXPORT_DATA_CSV', 'CREATE_DRS_FILE', 'UPDATE_DRS_FILE', 'DELETE_DRS_FILE', 'ENABLE_DRS', 'DISABLE_DRS'

reason

(optional) The reason why the operation is blocklisted

DBMS_CLOUD_OCI_JMS_CREATE_DRS_FILE_DETAILS_T Type

Details of the request to create DRS file in a Fleet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_create_drs_file_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  bucket_name varchar2(32767),
  namespace varchar2(32767),
  drs_file_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_create_drs_file_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_create_drs_file_details_t (
    bucket_name varchar2,
    namespace varchar2,
    drs_file_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

bucket_name

(required) The Object Storage bucket name where the DRS file is located.

namespace

(required) The namespace for Object Storage.

drs_file_name

(required) The name of the DRS file in Object Store.

DBMS_CLOUD_OCI_JMS_CUSTOM_LOG_T Type

Custom Log for inventory or operation log.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_custom_log_t FORCE AUTHID CURRENT_USER IS OBJECT (
  log_group_id varchar2(32767),
  log_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_custom_log_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_custom_log_t (
    log_group_id varchar2,
    log_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

log_group_id

(required) The OCID of the log group.

log_id

(required) The OCID of the log.

DBMS_CLOUD_OCI_JMS_CREATE_FLEET_DETAILS_T Type

Attributes to create a Fleet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_create_fleet_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  description varchar2(32767),
  inventory_log dbms_cloud_oci_jms_custom_log_t,
  operation_log dbms_cloud_oci_jms_custom_log_t,
  is_advanced_features_enabled number,
  defined_tags json_element_t,
  freeform_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_create_fleet_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_create_fleet_details_t (
    display_name varchar2,
    compartment_id varchar2,
    description varchar2,
    inventory_log dbms_cloud_oci_jms_custom_log_t,
    operation_log dbms_cloud_oci_jms_custom_log_t,
    is_advanced_features_enabled number,
    defined_tags json_element_t,
    freeform_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) The name of the Fleet. The displayName must be unique for Fleets in the same compartment.

compartment_id

(required) The OCID of the compartment of the Fleet.

description

(optional) The Fleet's description. If nothing is provided, the Fleet description will be null.

inventory_log

(required)

operation_log

(optional)

is_advanced_features_enabled

(optional) Whether or not advanced features are enabled in this Fleet. Deprecated, use `/fleets/{fleetId}/advanceFeatureConfiguration` API instead.

defined_tags

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

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\"}`. (See Managing Tags and Tag Namespaces.)

DBMS_CLOUD_OCI_JMS_CRYPTO_ANALYSIS_RESULT_T Type

Metadata for the result of a crypto event analysis. The analysis result is stored in an Object Storage bucket.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_crypto_analysis_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  work_request_id varchar2(32767),
  aggregation_mode varchar2(32767),
  fleet_id varchar2(32767),
  managed_instance_id varchar2(32767),
  host_name varchar2(32767),
  time_first_event timestamp with time zone,
  time_last_event timestamp with time zone,
  total_event_count number,
  summarized_event_count number,
  finding_count number,
  non_compliant_finding_count number,
  time_created timestamp with time zone,
  crypto_roadmap_version varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_analysis_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_analysis_result_t (
    id varchar2,
    work_request_id varchar2,
    aggregation_mode varchar2,
    fleet_id varchar2,
    managed_instance_id varchar2,
    host_name varchar2,
    time_first_event timestamp with time zone,
    time_last_event timestamp with time zone,
    total_event_count number,
    summarized_event_count number,
    finding_count number,
    non_compliant_finding_count number,
    time_created timestamp with time zone,
    crypto_roadmap_version varchar2,
    namespace varchar2,
    bucket_name varchar2,
    object_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID to identify this analysis results.

work_request_id

(optional) The OCID of the work request to start the analysis.

aggregation_mode

(required) The result aggregation mode

Allowed values are: 'JFR', 'MANAGED_INSTANCE'

fleet_id

(required) The fleet OCID.

managed_instance_id

(optional) The managed instance OCID.

host_name

(optional) The hostname of the managed instance.

time_first_event

(optional) Time of the first event in the analysis.

time_last_event

(optional) Time of the last event in the analysis.

total_event_count

(required) Total number of events in the analysis.

summarized_event_count

(required) Total number of summarized events. Summarized events are deduplicated events of interest.

finding_count

(required) Total number of findings with the analysis.

non_compliant_finding_count

(required) Total number of non-compliant findings with the analysis. A non-compliant finding means the application won't work properly with the changes introduced by the Crypto Roadmap version used by the analysis.

time_created

(optional) The time the result is compiled.

crypto_roadmap_version

(required) The Crypto Roadmap version used to perform the analysis.

namespace

(required) The Object Storage namespace of this analysis result.

bucket_name

(required) The Object Storage bucket name of this analysis result.

object_name

(required) The Object Storage object name of this analysis result.

DBMS_CLOUD_OCI_JMS_CRYPTO_ANALYSIS_RESULT_SUMMARY_T Type

Summary of a crypto analysis result. The actual output of the analysis is stored in the Object Storage object.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_crypto_analysis_result_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  work_request_id varchar2(32767),
  aggregation_mode varchar2(32767),
  fleet_id varchar2(32767),
  managed_instance_id varchar2(32767),
  host_name varchar2(32767),
  time_first_event timestamp with time zone,
  time_last_event timestamp with time zone,
  total_event_count number,
  summarized_event_count number,
  finding_count number,
  non_compliant_finding_count number,
  time_created timestamp with time zone,
  crypto_roadmap_version varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_analysis_result_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_analysis_result_summary_t (
    id varchar2,
    work_request_id varchar2,
    aggregation_mode varchar2,
    fleet_id varchar2,
    managed_instance_id varchar2,
    host_name varchar2,
    time_first_event timestamp with time zone,
    time_last_event timestamp with time zone,
    total_event_count number,
    summarized_event_count number,
    finding_count number,
    non_compliant_finding_count number,
    time_created timestamp with time zone,
    crypto_roadmap_version varchar2,
    namespace varchar2,
    bucket_name varchar2,
    object_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID to identify this analysis results.

work_request_id

(optional) The OCID of the work request to start the analysis.

aggregation_mode

(required) The result aggregation mode

Allowed values are: 'JFR', 'MANAGED_INSTANCE'

fleet_id

(required) The fleet OCID.

managed_instance_id

(optional) The managed instance OCID.

host_name

(optional) The hostname of the managed instance.

time_first_event

(optional) Time of the first event in the analysis.

time_last_event

(optional) Time of the last event in the analysis.

total_event_count

(required) Total number of events in the analysis.

summarized_event_count

(required) Total number of summarized events. Summarized events are deduplicated events of interest.

finding_count

(required) Total number of findings with the analysis.

non_compliant_finding_count

(required) Total number of non-compliant findings with the analysis. A non-compliant finding means the application won't work properly with the changes introduced by the Crypto Roadmap version used by the analysis.

time_created

(optional) The time the result is compiled.

crypto_roadmap_version

(required) The Crypto Roadmap version used to perform the analysis.

namespace

(required) The Object Storage namespace of this analysis result.

bucket_name

(required) The Object Storage bucket name of this analysis result.

object_name

(required) The Object Storage object name of this analysis result.

DBMS_CLOUD_OCI_JMS_CRYPTO_ANALYSIS_RESULT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_crypto_analysis_result_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_crypto_analysis_result_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_crypto_analysis_result_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_CRYPTO_ANALYSIS_RESULT_COLLECTION_T Type

List of Crypto event analysis results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_crypto_analysis_result_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_crypto_analysis_result_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_analysis_result_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_analysis_result_collection_t (
    items dbms_cloud_oci_jms_crypto_analysis_result_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Crypto Event Analysis results.

DBMS_CLOUD_OCI_JMS_SUMMARIZED_EVENTS_LOG_T Type

Summarized events log for advanced feature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_summarized_events_log_t FORCE AUTHID CURRENT_USER IS OBJECT (
  log_group_id varchar2(32767),
  log_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_summarized_events_log_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_summarized_events_log_t (
    log_group_id varchar2,
    log_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

log_group_id

(required) The OCID of the log group.

log_id

(required) The OCID of the log.

DBMS_CLOUD_OCI_JMS_CRYPTO_EVENT_ANALYSIS_T Type

CryptoEventAnalysis configuration

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_crypto_event_analysis_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  summarized_events_log dbms_cloud_oci_jms_summarized_events_log_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_event_analysis_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_crypto_event_analysis_t (
    is_enabled number,
    summarized_events_log dbms_cloud_oci_jms_summarized_events_log_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) CryptoEventAnalysis flag to store enabled or disabled status.

summarized_events_log

(optional)

DBMS_CLOUD_OCI_JMS_DEPLOYED_APPLICATION_INSTALLATION_USAGE_SUMMARY_T Type

Summarize usage information about an application deployed on Java servers including installation information during a specified time period. The main difference between DeployedApplicationInstallationUsageSummary and DeployedApplicationUsage is the presence of the applicationSourcePath. DeployedApplicationUsage provides only an aggregated view to the deployed applications without installation information. It therefore doesn’t distinguish between applications with the identical deployment information deployed to different paths. DeployedApplicationInstallationUsageSummary contains installation information, and it’s therefore possible to target actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_deployed_application_installation_usage_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  application_installation_key varchar2(32767),
  application_key varchar2(32767),
  fleet_id varchar2(32767),
  application_name varchar2(32767),
  application_type varchar2(32767),
  application_source_path varchar2(32767),
  is_clustered number,
  approximate_java_server_instance_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_installation_usage_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_installation_usage_summary_t (
    application_installation_key varchar2,
    application_key varchar2,
    fleet_id varchar2,
    application_name varchar2,
    application_type varchar2,
    application_source_path varchar2,
    is_clustered number,
    approximate_java_server_instance_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

application_installation_key

(required) The internal identifier of the deployed application installation.

application_key

(required) The internal identifier of the deployed application. ApplicationKey will be identical for deployed applications with different applicationSourcePaths.

fleet_id

(required) The OCID of the related fleet.

application_name

(required) The name of the deployed application.

application_type

(optional) The type of the deployed application.

application_source_path

(optional) The full path to source WAR or EAR file for deployed application.

is_clustered

(optional) Whether or not the deployed application is clustered.

approximate_java_server_instance_count

(optional) The approximate count of Java Server instances running the deployed application installations.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_DEPLOYED_APPLICATION_INSTALLATION_USAGE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_deployed_application_installation_usage_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_deployed_application_installation_usage_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_deployed_application_installation_usage_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_DEPLOYED_APPLICATION_INSTALLATION_USAGE_SUMMARY_COLLECTION_T Type

Results of a deployed application installation usage search. Contains deployed application installation usage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_deployed_application_installation_usage_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_deployed_application_installation_usage_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_installation_usage_summary_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_installation_usage_summary_collection_t (
    items dbms_cloud_oci_jms_deployed_application_installation_usage_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of deployed application installation usages.

DBMS_CLOUD_OCI_JMS_DEPLOYED_APPLICATION_USAGE_T Type

Deployed application usage during a specified time period.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_deployed_application_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  application_key varchar2(32767),
  fleet_id varchar2(32767),
  application_name varchar2(32767),
  application_type varchar2(32767),
  is_clustered number,
  approximate_java_server_instance_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_usage_t (
    application_key varchar2,
    fleet_id varchar2,
    application_name varchar2,
    application_type varchar2,
    is_clustered number,
    approximate_java_server_instance_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

application_key

(required) The internal identifier of the deployed application.

fleet_id

(required) The OCID of the related fleet.

application_name

(required) The name of the deployed application.

application_type

(optional) The type of the deployed application.

is_clustered

(optional) Whether or not the deployed application is clustered.

approximate_java_server_instance_count

(optional) The approximate count of Java Server instances running the deployed application.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_DEPLOYED_APPLICATION_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_deployed_application_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_deployed_application_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_deployed_application_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_DEPLOYED_APPLICATION_USAGE_COLLECTION_T Type

Results of a deployed application usage search. Contains deployed application usage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_deployed_application_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_deployed_application_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_deployed_application_usage_collection_t (
    items dbms_cloud_oci_jms_deployed_application_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of deployed application usages.

DBMS_CLOUD_OCI_JMS_DRS_TARGET_T Type

The target to manage DRS distribution. A target is a managed instance.

Syntax

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

Fields

Field Description

managed_instance_id

(required) OCID of the managed instance to manage DRS distribution.

DBMS_CLOUD_OCI_JMS_DRS_TARGET_TBL Type

Nested table type of dbms_cloud_oci_jms_drs_target_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_drs_target_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_drs_target_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_MANAGE_DRS_DETAILS_T Type

Details of the request to manage DRS in active managed instance(s) in a Fleet. When the targets aren't specified, then all active managed instance(s) currently in the Fleet are selected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_manage_drs_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets dbms_cloud_oci_jms_drs_target_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_manage_drs_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_manage_drs_details_t (
    targets dbms_cloud_oci_jms_drs_target_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets

(optional) The targets to manage DRS.

DBMS_CLOUD_OCI_JMS_DISABLE_DRS_DETAILS_T Type

Details of the request to disable DRS file from active managed instance(s) in a Fleet. When the targets aren't specified, then all active managed instance(s) currently in the Fleet are selected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_disable_drs_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  manage_drs_details dbms_cloud_oci_jms_manage_drs_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_disable_drs_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_disable_drs_details_t (
    manage_drs_details dbms_cloud_oci_jms_manage_drs_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

manage_drs_details

(optional)

DBMS_CLOUD_OCI_JMS_DRS_FILE_T Type

A Deployment Rule Set(DRS) is a JAR (Java ARchive) file used in Java applications to enforce security and manage compatibility between different versions of Java applets and web start applications (https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/deployment_rules.html).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_drs_file_t FORCE AUTHID CURRENT_USER IS OBJECT (
  bucket_name varchar2(32767),
  namespace varchar2(32767),
  drs_file_name varchar2(32767),
  drs_file_key varchar2(32767),
  checksum_type varchar2(32767),
  checksum_value varchar2(32767),
  is_default number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_drs_file_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_drs_file_t (
    bucket_name varchar2,
    namespace varchar2,
    drs_file_name varchar2,
    drs_file_key varchar2,
    checksum_type varchar2,
    checksum_value varchar2,
    is_default number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

bucket_name

(required) The Object Storage bucket name where the DRS file is located.

namespace

(required) The namespace for Object Storage.

drs_file_name

(required) The name of the DRS file in Object Store.

drs_file_key

(required) The unique identifier of the DRS file in Object Storage.

checksum_type

(required) The checksum type for the DRS file in Object Storage.

Allowed values are: 'SHA256'

checksum_value

(required) The checksum value for the DRS file in Object Storage.

is_default

(required) To check if the DRS file is the detfault ones.

DBMS_CLOUD_OCI_JMS_DRS_FILE_SUMMARY_T Type

A Deployment Rule Set(DRS) is a JAR (Java ARchive) file used in Java applications to enforce security and manage compatibility between different versions of Java applets and web start applications (https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/deployment_rules.html).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_drs_file_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  bucket_name varchar2(32767),
  namespace varchar2(32767),
  drs_file_name varchar2(32767),
  drs_file_key varchar2(32767),
  checksum_type varchar2(32767),
  checksum_value varchar2(32767),
  is_default number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_drs_file_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_drs_file_summary_t (
    bucket_name varchar2,
    namespace varchar2,
    drs_file_name varchar2,
    drs_file_key varchar2,
    checksum_type varchar2,
    checksum_value varchar2,
    is_default number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

bucket_name

(required) The Object Storage bucket name where the DRS file is located.

namespace

(required) The namespace for Object Storage.

drs_file_name

(required) The name of the DRS file in Object Store.

drs_file_key

(required) The unique identifier of the DRS file in Object Storage.

checksum_type

(required) The checksum type for the DRS file in Object Storage.

Allowed values are: 'SHA256'

checksum_value

(required) The checksum value for the DRS file in Object Storage.

is_default

(required) To check if the DRS file is the detfault ones.

DBMS_CLOUD_OCI_JMS_DRS_FILE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_drs_file_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_drs_file_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_drs_file_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_DRS_FILE_COLLECTION_T Type

List of DRS details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_drs_file_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_drs_file_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_drs_file_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_drs_file_collection_t (
    items dbms_cloud_oci_jms_drs_file_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of DRS details.

DBMS_CLOUD_OCI_JMS_ENABLE_DRS_DETAILS_T Type

Details of the request to enable DRS in active managed instance(s) in a Fleet. When the targets aren't specified, then all active managed instance(s) currently in the Fleet are selected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_enable_drs_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  manage_drs_details dbms_cloud_oci_jms_manage_drs_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_enable_drs_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_enable_drs_details_t (
    manage_drs_details dbms_cloud_oci_jms_manage_drs_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

manage_drs_details

(optional)

DBMS_CLOUD_OCI_JMS_ERROR_T Type

An error code and message from an API request failure.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_error_t (
    code varchar2,
    message varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A short error code that describes the error, meant for programmatic parsing. See API Errors.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_JMS_EXISTING_INSTALLATION_SITE_ID_T Type

The essential properties to identity a Java installation site.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_existing_installation_site_id_t FORCE AUTHID CURRENT_USER IS OBJECT (
  managed_instance_id varchar2(32767),
  installation_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_existing_installation_site_id_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_existing_installation_site_id_t (
    managed_instance_id varchar2,
    installation_key varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

managed_instance_id

(required) The OCID of the related managed instance.

installation_key

(required) The unique identifier for the installation of a Java Runtime at a specific path on a specific operating system.

DBMS_CLOUD_OCI_JMS_EXPORT_SETTING_T Type

An export settings for JMS fleets.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_export_setting_t FORCE AUTHID CURRENT_USER IS OBJECT (
  export_setting_key varchar2(32767),
  fleet_id varchar2(32767),
  export_duration varchar2(32767),
  export_resources varchar2(32767),
  is_cross_region_acknowledged number,
  target_bucket_name varchar2(32767),
  target_bucket_namespace varchar2(32767),
  target_bucket_region varchar2(32767),
  export_frequency varchar2(32767),
  is_enabled number,
  time_created timestamp with time zone,
  time_last_modified timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_export_setting_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_export_setting_t (
    export_setting_key varchar2,
    fleet_id varchar2,
    export_duration varchar2,
    export_resources varchar2,
    is_cross_region_acknowledged number,
    target_bucket_name varchar2,
    target_bucket_namespace varchar2,
    target_bucket_region varchar2,
    export_frequency varchar2,
    is_enabled number,
    time_created timestamp with time zone,
    time_last_modified timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

export_setting_key

(optional) The internal identifier of the export setting.

fleet_id

(optional) The OCID of the fleet.

export_duration

(optional) The duration of data to be exported for fleets.

Allowed values are: 'LAST_30_DAYS', 'LAST_60_DAYS', 'LAST_90_DAYS'

export_resources

(optional) Resource to export data associated from the fleets.

Allowed values are: 'MANAGED_INSTANCE', 'MANAGED_INSTANCE_PLUS_JAVA_RUNTIME', 'MANAGED_INSTANCE_PLUS_JAVA_RUNTIME_PLUS_APPLICATION'

is_cross_region_acknowledged

(optional) Acknowledgement for cross region target bucket configuration.

target_bucket_name

(optional) The name of the bucket where data will be exported.

target_bucket_namespace

(optional) The namespace of the bucket where data will be exported.

target_bucket_region

(optional) The namespace of the bucket where data will be exported.

export_frequency

(optional) Schedule at which data will be exported.

Allowed values are: 'DAILY', 'WEEKLY', 'MONTHLY'

is_enabled

(required) ExportSetting flag to store enabled or disabled status.

time_created

(optional) The creation date and time of the export setting (formatted according to RFC3339).

time_last_modified

(optional) The update date and time of the export setting (formatted according to RFC3339).

DBMS_CLOUD_OCI_JMS_EXPORT_STATUS_T Type

Attributes of fleet's export status.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_export_status_t FORCE AUTHID CURRENT_USER IS OBJECT (
  fleet_id varchar2(32767),
  time_last_run timestamp with time zone,
  time_next_run timestamp with time zone,
  latest_run_status varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_export_status_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_export_status_t (
    fleet_id varchar2,
    time_last_run timestamp with time zone,
    time_next_run timestamp with time zone,
    latest_run_status varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

fleet_id

(required) The OCID of the fleet.

time_last_run

(required) The date and time of the last export run.

time_next_run

(required) The date and time of the next export run.

latest_run_status

(required) The status of the latest export run.

Allowed values are: 'SCHEDULED', 'PENDING', 'IN_PROGRESS', 'FAILED', 'RETRYING', 'SUCCEEDED'

DBMS_CLOUD_OCI_JMS_FLEET_T Type

A Fleet is the primary collection with which users interact when using Java Management Service.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  approximate_jre_count number,
  approximate_installation_count number,
  approximate_application_count number,
  approximate_managed_instance_count number,
  approximate_java_server_count number,
  inventory_log dbms_cloud_oci_jms_custom_log_t,
  operation_log dbms_cloud_oci_jms_custom_log_t,
  is_advanced_features_enabled number,
  is_export_setting_enabled number,
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    approximate_jre_count number,
    approximate_installation_count number,
    approximate_application_count number,
    approximate_managed_instance_count number,
    approximate_java_server_count number,
    inventory_log dbms_cloud_oci_jms_custom_log_t,
    operation_log dbms_cloud_oci_jms_custom_log_t,
    is_advanced_features_enabled number,
    is_export_setting_enabled number,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the Fleet.

display_name

(required) The name of the Fleet.

description

(required) The Fleet's description.

compartment_id

(required) The OCID of the compartment of the Fleet.

approximate_jre_count

(required) The approximate count of all unique Java Runtimes in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_installation_count

(required) The approximate count of all unique Java installations in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_application_count

(required) The approximate count of all unique applications in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_managed_instance_count

(required) The approximate count of all unique managed instances in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_java_server_count

(required) The approximate count of all unique Java servers in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

inventory_log

(optional)

operation_log

(optional)

is_advanced_features_enabled

(optional) Whether or not advanced features are enabled in this Fleet. Deprecated, use `/fleets/{fleetId}/advanceFeatureConfiguration` API instead.

is_export_setting_enabled

(optional) Whether or not export setting is enabled in this Fleet.

time_created

(required) The creation date and time of the Fleet (formatted according to RFC3339).

lifecycle_state

(required) The lifecycle state of the Fleet.

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

defined_tags

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

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\"}`. (See Managing Tags and Tag Namespaces.)

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_JMS_KEY_SIZE_ALGORITHM_T Type

The algorithm object with name and key size properties.

Syntax

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

Fields

Field Description

name

(optional) The algorithm name.

Allowed values are: 'RSA', 'DSA', 'EC', 'DH'

key_size

(optional) Key size for the encryption algorithm. Allowed values: 256 for EC, 2048 for DH/DSA/RSA

DBMS_CLOUD_OCI_JMS_KEY_SIZE_ALGORITHM_TBL Type

Nested table type of dbms_cloud_oci_jms_key_size_algorithm_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_key_size_algorithm_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_key_size_algorithm_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_MINIMUM_KEY_SIZE_SETTINGS_T Type

test

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_minimum_key_size_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
  tls dbms_cloud_oci_jms_key_size_algorithm_tbl,
  jar dbms_cloud_oci_jms_key_size_algorithm_tbl,
  certpath dbms_cloud_oci_jms_key_size_algorithm_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_minimum_key_size_settings_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_minimum_key_size_settings_t (
    tls dbms_cloud_oci_jms_key_size_algorithm_tbl,
    jar dbms_cloud_oci_jms_key_size_algorithm_tbl,
    certpath dbms_cloud_oci_jms_key_size_algorithm_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

tls

(optional) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.tls.disabledAlgorithms will be updated with the following supported actions: - Changing minimum key length for Diffie-Hellman

jar

(optional) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.jar.disabledAlgorithms will be updated with the following supported actions: - Changing minimum key length for RSA signed jars - Changing minimum key length for EC - Changing minimum key length for DSA

certpath

(optional) Updates the minimum key size for the specified encryption algorithm. The JDK property jdk.certpath.disabledAlgorithms will be updated with the following supported actions: - Changing minimum key length for RSA signed jars - Changing minimum key length for EC - Changing minimum key length for DSA

DBMS_CLOUD_OCI_JMS_PROXIES_T Type

List of proxy properties to be configured in net.properties file.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_proxies_t FORCE AUTHID CURRENT_USER IS OBJECT (
  use_system_proxies number,
  http_proxy_host varchar2(32767),
  http_proxy_port number,
  https_proxy_host varchar2(32767),
  https_proxy_port number,
  ftp_proxy_host varchar2(32767),
  ftp_proxy_port number,
  socks_proxy_host varchar2(32767),
  socks_proxy_port number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_proxies_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_proxies_t (
    use_system_proxies number,
    http_proxy_host varchar2,
    http_proxy_port number,
    https_proxy_host varchar2,
    https_proxy_port number,
    ftp_proxy_host varchar2,
    ftp_proxy_port number,
    socks_proxy_host varchar2,
    socks_proxy_port number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

use_system_proxies

(optional) Sets \"java.net.useSystemProxies=true\" in net.properties when they exist.

http_proxy_host

(optional) Http host to be set in net.properties file.

http_proxy_port

(optional) Http port number to be set in net.properties file.

https_proxy_host

(optional) Https host to be set in net.properties file.

https_proxy_port

(optional) Https port number to be set in net.properties file.

ftp_proxy_host

(optional) Ftp host to be set in net.properties file.

ftp_proxy_port

(optional) Ftp port number to be set in net.properties file.

socks_proxy_host

(optional) Socks host to be set in net.properties file.

socks_proxy_port

(optional) Socks port number to be set in net.properties file.

DBMS_CLOUD_OCI_JMS_POST_INSTALLATION_ACTION_SETTINGS_T Type

List of available post actions you can execute after the successful Java installation.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_post_installation_action_settings_t FORCE AUTHID CURRENT_USER IS OBJECT (
  disabled_tls_versions dbms_cloud_oci_jms_varchar2_tbl,
  should_replace_certificates_operating_system number,
  minimum_key_size_settings dbms_cloud_oci_jms_minimum_key_size_settings_t,
  add_logging_handler number,
  global_logging_level varchar2(32767),
  proxies dbms_cloud_oci_jms_proxies_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_post_installation_action_settings_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_post_installation_action_settings_t (
    disabled_tls_versions dbms_cloud_oci_jms_varchar2_tbl,
    should_replace_certificates_operating_system number,
    minimum_key_size_settings dbms_cloud_oci_jms_minimum_key_size_settings_t,
    add_logging_handler number,
    global_logging_level varchar2,
    proxies dbms_cloud_oci_jms_proxies_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

disabled_tls_versions

(optional) The following post JRE installation actions are supported by the field: - Disable TLS 1.0 , TLS 1.1

should_replace_certificates_operating_system

(optional) Restores JDK root certificates with the certificates that are available in the operating system. The following action is supported by the field: - Replace JDK root certificates with a list provided by the operating system.

minimum_key_size_settings

(optional)

add_logging_handler

(optional) Sets FileHandler and ConsoleHandler as handlers in logging.properties file.

global_logging_level

(optional) Sets the logging level in logging.properties file.

Allowed values are: 'ALL', 'SEVERE', 'WARNING', 'INFO', 'CONFIG', 'FINE', 'FINER', 'FINEST', 'OFF'

proxies

(optional)

DBMS_CLOUD_OCI_JMS_LCM_T Type

Enable lifecycle management and set post action configurations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_lcm_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  post_installation_actions dbms_cloud_oci_jms_post_installation_action_settings_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_lcm_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_lcm_t (
    is_enabled number,
    post_installation_actions dbms_cloud_oci_jms_post_installation_action_settings_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) Lifecycle management flag to store enabled or disabled status.

post_installation_actions

(optional)

DBMS_CLOUD_OCI_JMS_JFR_RECORDING_T Type

JfrRecording configuration

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_jfr_recording_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jfr_recording_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jfr_recording_t (
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) JfrRecording flag to store enabled or disabled status.

DBMS_CLOUD_OCI_JMS_PERFORMANCE_TUNING_ANALYSIS_T Type

Performance tuning analysis configuration

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_performance_tuning_analysis_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_t (
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) PerformanceTuningAnalysis flag to store enabled or disabled status

DBMS_CLOUD_OCI_JMS_JAVA_MIGRATION_ANALYSIS_T Type

JavaMigrationAnalysis configuration

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_migration_analysis_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_t (
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_enabled

(optional) JavaMigrationAnalysis flag to store enabled or disabled status.

DBMS_CLOUD_OCI_JMS_FLEET_ADVANCED_FEATURE_CONFIGURATION_T Type

Metadata for the advanced features in the Fleet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_advanced_feature_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  analytic_namespace varchar2(32767),
  analytic_bucket_name varchar2(32767),
  lcm dbms_cloud_oci_jms_lcm_t,
  crypto_event_analysis dbms_cloud_oci_jms_crypto_event_analysis_t,
  advanced_usage_tracking dbms_cloud_oci_jms_advanced_usage_tracking_t,
  jfr_recording dbms_cloud_oci_jms_jfr_recording_t,
  performance_tuning_analysis dbms_cloud_oci_jms_performance_tuning_analysis_t,
  java_migration_analysis dbms_cloud_oci_jms_java_migration_analysis_t,
  time_last_modified timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_advanced_feature_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_advanced_feature_configuration_t (
    analytic_namespace varchar2,
    analytic_bucket_name varchar2,
    lcm dbms_cloud_oci_jms_lcm_t,
    crypto_event_analysis dbms_cloud_oci_jms_crypto_event_analysis_t,
    advanced_usage_tracking dbms_cloud_oci_jms_advanced_usage_tracking_t,
    jfr_recording dbms_cloud_oci_jms_jfr_recording_t,
    performance_tuning_analysis dbms_cloud_oci_jms_performance_tuning_analysis_t,
    java_migration_analysis dbms_cloud_oci_jms_java_migration_analysis_t,
    time_last_modified timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

analytic_namespace

(required) Namespace for the Fleet advanced feature.

analytic_bucket_name

(required) Bucket name required to store JFR and related data.

lcm

(required)

crypto_event_analysis

(required)

advanced_usage_tracking

(required)

jfr_recording

(required)

performance_tuning_analysis

(required)

java_migration_analysis

(required)

time_last_modified

(required) The date and time of the last modification to the Fleet Agent Configuration (formatted according to RFC3339).

DBMS_CLOUD_OCI_JMS_FLEET_AGENT_OS_CONFIGURATION_T Type

Management Agent Configuration for list of include/exclude file system paths (specific to operating system).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_agent_os_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  include_paths dbms_cloud_oci_jms_varchar2_tbl,
  exclude_paths dbms_cloud_oci_jms_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_agent_os_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_agent_os_configuration_t (
    include_paths dbms_cloud_oci_jms_varchar2_tbl,
    exclude_paths dbms_cloud_oci_jms_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

include_paths

(required) An array of file system paths (environment variables supported).

exclude_paths

(required) An array of file system paths (environment variables supported).

DBMS_CLOUD_OCI_JMS_FLEET_AGENT_CONFIGURATION_T Type

Management Agent Configuration for a Fleet. Includes JRE scanning frequency and a list of include/exclude file system paths.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_agent_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  jre_scan_frequency_in_minutes number,
  java_usage_tracker_processing_frequency_in_minutes number,
  work_request_validity_period_in_days number,
  agent_polling_interval_in_minutes number,
  linux_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
  windows_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
  mac_os_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
  time_last_modified timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_agent_configuration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_agent_configuration_t (
    jre_scan_frequency_in_minutes number,
    java_usage_tracker_processing_frequency_in_minutes number,
    work_request_validity_period_in_days number,
    agent_polling_interval_in_minutes number,
    linux_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
    windows_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
    mac_os_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
    time_last_modified timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

jre_scan_frequency_in_minutes

(required) The frequency (in minutes) of JRE scanning. (That is, how often should JMS scan for JRE installations.)

java_usage_tracker_processing_frequency_in_minutes

(required) The frequency (in minutes) of Java Usage Tracker processing. (That is, how often should JMS process data from the Java Usage Tracker.)

work_request_validity_period_in_days

(optional) The validity period in days for work requests.

agent_polling_interval_in_minutes

(optional) Agent polling interval in minutes

linux_configuration

(required)

windows_configuration

(required)

mac_os_configuration

(required)

time_last_modified

(required) The date and time of the last modification to the Fleet Agent Configuration (formatted according to RFC3339).

DBMS_CLOUD_OCI_JMS_FLEET_SUMMARY_T Type

The summary of the Fleet. A Fleet is the primary collection with which users interact when using Java Management Service.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  description varchar2(32767),
  compartment_id varchar2(32767),
  approximate_jre_count number,
  approximate_installation_count number,
  approximate_application_count number,
  approximate_managed_instance_count number,
  approximate_java_server_count number,
  inventory_log dbms_cloud_oci_jms_custom_log_t,
  operation_log dbms_cloud_oci_jms_custom_log_t,
  is_advanced_features_enabled number,
  is_export_setting_enabled number,
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  defined_tags json_element_t,
  freeform_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_summary_t (
    id varchar2,
    display_name varchar2,
    description varchar2,
    compartment_id varchar2,
    approximate_jre_count number,
    approximate_installation_count number,
    approximate_application_count number,
    approximate_managed_instance_count number,
    approximate_java_server_count number,
    inventory_log dbms_cloud_oci_jms_custom_log_t,
    operation_log dbms_cloud_oci_jms_custom_log_t,
    is_advanced_features_enabled number,
    is_export_setting_enabled number,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    defined_tags json_element_t,
    freeform_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the Fleet.

display_name

(required) The name of the Fleet. The displayName must be unique for Fleets in the same compartment.

description

(required) The Fleet's description.

compartment_id

(required) The OCID of the compartment of the Fleet.

approximate_jre_count

(required) The approximate count of all unique Java Runtimes in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_installation_count

(required) The approximate count of all unique Java Installations in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_application_count

(required) The approximate count of all unique applications in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_managed_instance_count

(required) The approximate count of all unique managed instances in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

approximate_java_server_count

(required) The approximate count of all unique Java servers in the Fleet in the past seven days. This metric is provided on a best-effort manner, and isn't taken into account when computing the resource ETag.

inventory_log

(optional)

operation_log

(optional)

is_advanced_features_enabled

(optional) Whether or not advanced features are enabled in this Fleet. This flag is true if any one of the advanced features is turned on.

is_export_setting_enabled

(optional) Whether or not export setting is enabled in this Fleet.

time_created

(required) The creation date and time of the Fleet (formatted according to RFC3339).

lifecycle_state

(required) The lifecycle state of the Fleet.

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

defined_tags

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

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\"}`. (See Managing Tags and Tag Namespaces.)

system_tags

(optional) System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`

DBMS_CLOUD_OCI_JMS_FLEET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_fleet_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_fleet_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_FLEET_COLLECTION_T Type

Results of a Fleet search. Contains FleetSummary items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_fleet_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_collection_t (
    items dbms_cloud_oci_jms_fleet_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Fleets.

DBMS_CLOUD_OCI_JMS_FLEET_DIAGNOSIS_SUMMARY_T Type

Diagnosis of a resource needed by the fleet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_diagnosis_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  resource_type varchar2(32767),
  resource_id varchar2(32767),
  resource_state varchar2(32767),
  resource_diagnosis varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_diagnosis_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_diagnosis_summary_t (
    resource_type varchar2,
    resource_id varchar2,
    resource_state varchar2,
    resource_diagnosis varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

resource_type

(required) The type of the resource needed by the fleet. This is the role of a resource in the fleet. Use the OCID to determine the actual OCI resource type such as log group or log.

Allowed values are: 'INVENTORY_LOG', 'OPERATION_LOG', 'CRYPTO_SUMMARIZED_LOG', 'ANALYSIS_OSS_BUCKET'

resource_id

(optional) The OCID of the external resouce needed by the fleet.

resource_state

(optional) The state of the resource. The resource state is ACTIVE when it works properly for the fleet. In case it would cause an issue for the fleet function, the state is INACTIVE. When JMS can't locate the resource, the state is NOT_FOUND. OTHER covers other cases, such as a temporarily network issue that prevents JMS from detecting the resource. Check the resourceDiagnosis for details.

Allowed values are: 'ACTIVE', 'INACTIVE', 'NOT_FOUND', 'OTHER'

resource_diagnosis

(optional) The diagnosis message.

DBMS_CLOUD_OCI_JMS_FLEET_DIAGNOSIS_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_fleet_diagnosis_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_diagnosis_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_fleet_diagnosis_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_FLEET_DIAGNOSIS_COLLECTION_T Type

List of the fleet resource diagnosis.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_fleet_diagnosis_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_fleet_diagnosis_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_diagnosis_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_fleet_diagnosis_collection_t (
    items dbms_cloud_oci_jms_fleet_diagnosis_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of the fleet resource diagnosis.

DBMS_CLOUD_OCI_JMS_GENERATE_AGENT_DEPLOY_SCRIPT_DETAILS_T Type

Attributes to generate agent deploy script for a Fleet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_generate_agent_deploy_script_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  install_key_id varchar2(32767),
  os_family varchar2(32767),
  is_user_name_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_generate_agent_deploy_script_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_generate_agent_deploy_script_details_t (
    install_key_id varchar2,
    os_family varchar2,
    is_user_name_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

install_key_id

(required) The OCID of the install key for which to generate the script.

os_family

(required) The operating system type for the script. Currently only 'LINUX' and 'WINDOWS' are supported.

Allowed values are: 'LINUX', 'WINDOWS', 'MACOS', 'UNKNOWN'

is_user_name_enabled

(required) Enable/disable user name collection on agent.

DBMS_CLOUD_OCI_JMS_JAVA_RUNTIME_ID_T Type

The essential properties to identify a Java Runtime.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_runtime_id_t FORCE AUTHID CURRENT_USER IS OBJECT (
  version varchar2(32767),
  vendor varchar2(32767),
  distribution varchar2(32767),
  jre_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_runtime_id_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_runtime_id_t (
    version varchar2,
    vendor varchar2,
    distribution varchar2,
    jre_key varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

version

(required) The version of the Java Runtime.

vendor

(required) The vendor of the Java Runtime.

distribution

(required) The distribution of a Java Runtime is the name of the lineage of product to which it belongs, for example _Java(TM) SE Runtime Environment_.

jre_key

(optional) The unique identifier for a Java Runtime.

DBMS_CLOUD_OCI_JMS_BLOCKLIST_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_jms_blocklist_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_blocklist_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_blocklist_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_INSTALLATION_SITE_T Type

Installation site of a Java Runtime. An installation site is a Java Runtime installed at a specific path on a managed instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_installation_site_t FORCE AUTHID CURRENT_USER IS OBJECT (
  installation_key varchar2(32767),
  managed_instance_id varchar2(32767),
  jre dbms_cloud_oci_jms_java_runtime_id_t,
  path varchar2(32767),
  operating_system dbms_cloud_oci_jms_operating_system_t,
  approximate_application_count number,
  time_last_seen timestamp with time zone,
  blocklist dbms_cloud_oci_jms_blocklist_entry_tbl,
  lifecycle_state varchar2(32767),
  managed_instance_type varchar2(32767),
  hostname varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_site_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_site_t (
    installation_key varchar2,
    managed_instance_id varchar2,
    jre dbms_cloud_oci_jms_java_runtime_id_t,
    path varchar2,
    operating_system dbms_cloud_oci_jms_operating_system_t,
    approximate_application_count number,
    time_last_seen timestamp with time zone,
    blocklist dbms_cloud_oci_jms_blocklist_entry_tbl,
    lifecycle_state varchar2,
    managed_instance_type varchar2,
    hostname varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

installation_key

(required) The unique identifier for the installation of a Java Runtime at a specific path on a specific operating system.

managed_instance_id

(required) The OCID of the related managed instance.

jre

(required)

path

(required) The file system path of the installation.

operating_system

(required)

approximate_application_count

(optional) The approximate count of applications running on this installation

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

blocklist

(optional) The list of operations that are blocklisted.

lifecycle_state

(optional) The lifecycle state of the installation site.

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

managed_instance_type

(optional) The type of the source of events.

Allowed values are: 'ORACLE_MANAGEMENT_AGENT'

hostname

(optional) The hostname of the managed instance (if applicable).

DBMS_CLOUD_OCI_JMS_INSTALLATION_SITE_SUMMARY_T Type

Installation site of a Java Runtime. An installation site is a Java Runtime installed at a specific path on a managed instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_installation_site_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  installation_key varchar2(32767),
  managed_instance_id varchar2(32767),
  jre dbms_cloud_oci_jms_java_runtime_id_t,
  security_status varchar2(32767),
  path varchar2(32767),
  operating_system dbms_cloud_oci_jms_operating_system_t,
  approximate_application_count number,
  time_last_seen timestamp with time zone,
  blocklist dbms_cloud_oci_jms_blocklist_entry_tbl,
  lifecycle_state varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_site_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_site_summary_t (
    installation_key varchar2,
    managed_instance_id varchar2,
    jre dbms_cloud_oci_jms_java_runtime_id_t,
    security_status varchar2,
    path varchar2,
    operating_system dbms_cloud_oci_jms_operating_system_t,
    approximate_application_count number,
    time_last_seen timestamp with time zone,
    blocklist dbms_cloud_oci_jms_blocklist_entry_tbl,
    lifecycle_state varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

installation_key

(required) The unique identifier for the installation of Java Runtime at a specific path on a specific operating system.

managed_instance_id

(required) The OCID of the related managed instance.

jre

(optional)

security_status

(optional) The security status of the Java Runtime.

Allowed values are: 'EARLY_ACCESS', 'UNKNOWN', 'UP_TO_DATE', 'UPDATE_REQUIRED', 'UPGRADE_REQUIRED'

path

(optional) The file system path of the installation.

operating_system

(optional)

approximate_application_count

(optional) The approximate count of applications running on this installation

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

blocklist

(optional) The list of operations that are blocklisted.

lifecycle_state

(optional) The lifecycle state of the installation site.

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

DBMS_CLOUD_OCI_JMS_INSTALLATION_SITE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_installation_site_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_installation_site_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_installation_site_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_INSTALLATION_SITE_COLLECTION_T Type

Results of an installation site search. Contains installation sites.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_installation_site_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_installation_site_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_site_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_site_collection_t (
    items dbms_cloud_oci_jms_installation_site_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Java installation sites.

DBMS_CLOUD_OCI_JMS_INSTALLATION_USAGE_T Type

Installation usage during a specified time period. An installation is a collection of deployed instances of a specific Java Runtime that share the same install path.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_installation_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  installation_key varchar2(32767),
  jre_vendor varchar2(32767),
  jre_distribution varchar2(32767),
  jre_version varchar2(32767),
  path varchar2(32767),
  os varchar2(32767),
  architecture varchar2(32767),
  operating_system dbms_cloud_oci_jms_operating_system_t,
  approximate_application_count number,
  approximate_managed_instance_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_usage_t (
    installation_key varchar2,
    jre_vendor varchar2,
    jre_distribution varchar2,
    jre_version varchar2,
    path varchar2,
    os varchar2,
    architecture varchar2,
    operating_system dbms_cloud_oci_jms_operating_system_t,
    approximate_application_count number,
    approximate_managed_instance_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

installation_key

(optional) The unique identifier for the installation of a Java Runtime at a specific path on a specific operating system.

jre_vendor

(required) The vendor of the Java Runtime that is deployed with the installation.

jre_distribution

(required) The distribution of the Java Runtime that is deployed with the installation.

jre_version

(required) The version of the Java Runtime that is deployed with the installation.

path

(required) The file system path of the Java installation.

os

(required) The Operating System for the installation. Deprecated, use `operatingSystem` instead.

architecture

(required) The architecture of the operating system for the installation. Deprecated, use `operatingSystem` instead.

operating_system

(optional)

approximate_application_count

(optional) The approximate count of applications running on this installation

approximate_managed_instance_count

(optional) The approximate count of managed instances reporting this installation

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_INSTALLATION_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_installation_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_installation_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_installation_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_INSTALLATION_USAGE_COLLECTION_T Type

Results of an installation search. Contains InstallationUsage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_installation_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_installation_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_installation_usage_collection_t (
    items dbms_cloud_oci_jms_installation_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of installations.

DBMS_CLOUD_OCI_JMS_JAVA_ARTIFACT_T Type

Information about a binary artifact of Java.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_artifact_t FORCE AUTHID CURRENT_USER IS OBJECT (
  artifact_id number,
  artifact_description varchar2(32767),
  artifact_content_type varchar2(32767),
  approximate_file_size_in_bytes number,
  sha256 varchar2(32767),
  artifact_file_name varchar2(32767),
  os_family varchar2(32767),
  architecture varchar2(32767),
  package_type varchar2(32767),
  package_type_detail varchar2(32767),
  download_url varchar2(32767),
  script_download_url varchar2(32767),
  script_checksum_url varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_artifact_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_artifact_t (
    artifact_id number,
    artifact_description varchar2,
    artifact_content_type varchar2,
    approximate_file_size_in_bytes number,
    sha256 varchar2,
    artifact_file_name varchar2,
    os_family varchar2,
    architecture varchar2,
    package_type varchar2,
    package_type_detail varchar2,
    download_url varchar2,
    script_download_url varchar2,
    script_checksum_url varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

artifact_id

(required) Unique identifier for the artifact.

artifact_description

(required) Description of the binary artifact. Typically includes the OS, architecture, and installer type.

artifact_content_type

(required) Product content type of this artifact.

Allowed values are: 'JDK', 'JRE', 'SERVER_JRE'

approximate_file_size_in_bytes

(required) Approximate compressed file size in bytes.

sha256

(required) SHA256 checksum of the artifact.

artifact_file_name

(optional) The file name of the artifact.

os_family

(required) The target Operating System family for the artifact.

architecture

(required) The target Operating System architecture for the artifact.

package_type

(required) The package type(typically the file extension) of the artifact.

package_type_detail

(optional) Additional information about the package type.

download_url

(required) The endpoint that returns a short-lived artifact download URL in the response payload. This download url can then be used for downloading the artifact. See this API for more details.

script_download_url

(required) The endpoint for downloading this artifact from command line, automatically in scripts and dockerfiles. Depending on the context, this can point to the archive or latest update release version artifact in the specified family.

script_checksum_url

(required) The URL for retrieving the checksum for the artifact. Depending on the context, this can point to the checksum of the archive or latest update release version artifact.

DBMS_CLOUD_OCI_JMS_JAVA_ARTIFACT_TBL Type

Nested table type of dbms_cloud_oci_jms_java_artifact_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_artifact_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_java_artifact_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JAVA_FAMILY_T Type

Metadata associated with a specific Java release family. A Java release family is typically a major version in the Java version identifier.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_family_t FORCE AUTHID CURRENT_USER IS OBJECT (
  latest_release_artifacts dbms_cloud_oci_jms_java_artifact_tbl,
  family_version varchar2(32767),
  display_name varchar2(32767),
  support_type varchar2(32767),
  end_of_support_life_date timestamp with time zone,
  doc_url varchar2(32767),
  latest_release_version varchar2(32767),
  is_supported_version number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_family_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_family_t (
    latest_release_artifacts dbms_cloud_oci_jms_java_artifact_tbl,
    family_version varchar2,
    display_name varchar2,
    support_type varchar2,
    end_of_support_life_date timestamp with time zone,
    doc_url varchar2,
    latest_release_version varchar2,
    is_supported_version number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

latest_release_artifacts

(optional) List of artifacts for the latest Java release version in this family. The script URLs in the response can be used from a command line, or in scripts and dockerfiles to always get the artifacts corresponding to the latest update release version.

family_version

(required) The Java release family identifier.

display_name

(required) The display name of the release family.

support_type

(required) This indicates the support category for the Java release family.

Allowed values are: 'LTS', 'NON_LTS'

end_of_support_life_date

(required) The End of Support Life (EOSL) date of the Java release family (formatted according to RFC3339).

doc_url

(required) Link to access the documentation for the release.

latest_release_version

(required) Latest Java release version in the family.

is_supported_version

(required) Whether or not this Java release family is under active support. Refer Java Support Roadmap for more details.

DBMS_CLOUD_OCI_JMS_JAVA_FAMILY_SUMMARY_T Type

A summary of the Java release family information. A Java release family is typically a major version in the Java version identifier.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_family_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  family_version varchar2(32767),
  display_name varchar2(32767),
  support_type varchar2(32767),
  end_of_support_life_date timestamp with time zone,
  doc_url varchar2(32767),
  latest_release_version varchar2(32767),
  is_supported_version number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_family_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_family_summary_t (
    family_version varchar2,
    display_name varchar2,
    support_type varchar2,
    end_of_support_life_date timestamp with time zone,
    doc_url varchar2,
    latest_release_version varchar2,
    is_supported_version number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

family_version

(required) The Java release family identifier.

display_name

(required) The display name of the release family.

support_type

(required) This indicates the support category for the Java release family.

Allowed values are: 'LTS', 'NON_LTS'

end_of_support_life_date

(required) The End of Support Life (EOSL) date of the Java release family (formatted according to RFC3339).

doc_url

(required) Link to access the documentation for the release.

latest_release_version

(required) Latest Java release version in the family.

is_supported_version

(required) Whether or not this Java release family is under active support. Refer Java Support Roadmap for more details.

DBMS_CLOUD_OCI_JMS_JAVA_FAMILY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_java_family_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_family_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_java_family_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JAVA_FAMILY_COLLECTION_T Type

Collection of the Java release family summary. A Java release family is typically a major version in the Java version identifier.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_family_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_java_family_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_family_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_family_collection_t (
    items dbms_cloud_oci_jms_java_family_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of the Java Release family summary.

DBMS_CLOUD_OCI_JMS_JAVA_LICENSE_T Type

Information about a license type for Java.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_license_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  license_type varchar2(32767),
  license_url varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_license_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_license_t (
    display_name varchar2,
    license_type varchar2,
    license_url varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Commonly used name for the license type.

license_type

(required) License Type

Allowed values are: 'OTN', 'NFTC', 'RESTRICTED'

license_url

(required) Publicly accessible license URL containing the detailed terms and conditions.

DBMS_CLOUD_OCI_JMS_JAVA_MIGRATION_ANALYSIS_RESULT_T Type

Result of the Java migration analysis. The analysis result is stored in an Object Storage bucket.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_migration_analysis_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  work_request_id varchar2(32767),
  fleet_id varchar2(32767),
  application_key varchar2(32767),
  application_name varchar2(32767),
  application_path varchar2(32767),
  application_execution_type varchar2(32767),
  source_jdk_version varchar2(32767),
  target_jdk_version varchar2(32767),
  managed_instance_id varchar2(32767),
  host_name varchar2(32767),
  time_created timestamp with time zone,
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  object_storage_upload_dir_path varchar2(32767),
  object_list dbms_cloud_oci_jms_varchar2_tbl,
  metadata varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_result_t (
    id varchar2,
    work_request_id varchar2,
    fleet_id varchar2,
    application_key varchar2,
    application_name varchar2,
    application_path varchar2,
    application_execution_type varchar2,
    source_jdk_version varchar2,
    target_jdk_version varchar2,
    managed_instance_id varchar2,
    host_name varchar2,
    time_created timestamp with time zone,
    namespace varchar2,
    bucket_name varchar2,
    object_storage_upload_dir_path varchar2,
    object_list dbms_cloud_oci_jms_varchar2_tbl,
    metadata varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the migration analysis report.

work_request_id

(optional) The OCID of the work request of this analysis.

fleet_id

(required) The fleet OCID.

application_key

(optional) The unique key that identifies the application.

application_name

(required) The name of the application for which the Java migration analysis was performed.

application_path

(required) The installation path of the application for which the Java migration analysis was performed.

application_execution_type

(required) Execution type of the application for an application type, such as WAR and EAR, that is deployed or installed.

Allowed values are: 'INSTALLED', 'DEPLOYED'

source_jdk_version

(required) The source JDK version of the application that's currently running.

target_jdk_version

(required) The target JDK version of the application to be migrated.

managed_instance_id

(optional) The managed instance OCID.

host_name

(optional) The hostname of the managed instance that hosts the application for which the Java migration analysis was performed.

time_created

(optional) The time the result is compiled.

namespace

(required) The object storage namespace that contains the results of the migration analysis.

bucket_name

(required) The name of the object storage bucket that contains the results of the migration analysis.

object_storage_upload_dir_path

(required) The directory path of the object storage bucket that contains the results of the migration analysis.

object_list

(required) The names of the object storage objects that contain the results of the migration analysis.

metadata

(required) Additional info reserved for future use.

DBMS_CLOUD_OCI_JMS_JAVA_MIGRATION_ANALYSIS_RESULT_SUMMARY_T Type

Summary of a Java migration analysis result. The output of the analysis is stored in the Object Storage object.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_migration_analysis_result_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  work_request_id varchar2(32767),
  fleet_id varchar2(32767),
  application_key varchar2(32767),
  application_name varchar2(32767),
  application_path varchar2(32767),
  application_execution_type varchar2(32767),
  source_jdk_version varchar2(32767),
  target_jdk_version varchar2(32767),
  managed_instance_id varchar2(32767),
  host_name varchar2(32767),
  time_created timestamp with time zone,
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  object_storage_upload_dir_path varchar2(32767),
  object_list dbms_cloud_oci_jms_varchar2_tbl,
  metadata varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_result_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_result_summary_t (
    id varchar2,
    work_request_id varchar2,
    fleet_id varchar2,
    application_key varchar2,
    application_name varchar2,
    application_path varchar2,
    application_execution_type varchar2,
    source_jdk_version varchar2,
    target_jdk_version varchar2,
    managed_instance_id varchar2,
    host_name varchar2,
    time_created timestamp with time zone,
    namespace varchar2,
    bucket_name varchar2,
    object_storage_upload_dir_path varchar2,
    object_list dbms_cloud_oci_jms_varchar2_tbl,
    metadata varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the migration analysis report.

work_request_id

(optional) The OCID of the work request of this analysis.

fleet_id

(required) The fleet OCID.

application_key

(optional) The unique key that identifies the application.

application_name

(required) The name of the application for which the Java migration analysis was performed.

application_path

(required) The installation path of the application for which the Java migration analysis was performed.

application_execution_type

(required) Execution type of the application for an application type, such as WAR and EAR, that is deployed or installed.

Allowed values are: 'INSTALLED', 'DEPLOYED'

source_jdk_version

(required) The source JDK version of the application that's currently running.

target_jdk_version

(required) The target JDK version of the application to be migrated.

managed_instance_id

(optional) The managed instance OCID.

host_name

(optional) The hostname of the managed instance that hosts the application for which the Java migration analysis was performed.

time_created

(optional) The time the result is compiled.

namespace

(required) The object storage namespace that contains the results of the migration analysis.

bucket_name

(required) The name of the object storage bucket that contains the results of the migration analysis.

object_storage_upload_dir_path

(required) The directory path of the object storage bucket that contains the results of the migration analysis.

object_list

(required) The names of the object storage objects that contain the results of the migration analysis.

metadata

(required) Additional info reserved for future use.

DBMS_CLOUD_OCI_JMS_JAVA_MIGRATION_ANALYSIS_RESULT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_java_migration_analysis_result_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_migration_analysis_result_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_java_migration_analysis_result_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JAVA_MIGRATION_ANALYSIS_RESULT_COLLECTION_T Type

List of Java migration analysis results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_migration_analysis_result_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_java_migration_analysis_result_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_result_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_result_collection_t (
    items dbms_cloud_oci_jms_java_migration_analysis_result_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Java migration analysis results.

DBMS_CLOUD_OCI_JMS_JAVA_MIGRATION_ANALYSIS_TARGET_T Type

The target describes the input data for Java migration analysis. A target contains a managed instance, application Installation Key, sourceJdkVersion, and targetJdkVersion.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_migration_analysis_target_t FORCE AUTHID CURRENT_USER IS OBJECT (
  managed_instance_id varchar2(32767),
  application_installation_key varchar2(32767),
  source_jdk_version varchar2(32767),
  target_jdk_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_target_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_migration_analysis_target_t (
    managed_instance_id varchar2,
    application_installation_key varchar2,
    source_jdk_version varchar2,
    target_jdk_version varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

managed_instance_id

(required) The OCID of the managed instance that hosts the application for which the Java migration analysis was performed.

application_installation_key

(required) The unique key that identifies the application's installation path that is to be used for the Java migration analysis.

source_jdk_version

(required) The JDK version the application is currently running on.

target_jdk_version

(required) The JDK version against which the migration analysis was performed to identify effort required to move from source JDK.

DBMS_CLOUD_OCI_JMS_PATCH_DETAIL_T Type

My Oracle Support(MoS) patch details for the Java release.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_patch_detail_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  patch_url varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_patch_detail_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_patch_detail_t (
    display_name varchar2,
    patch_url varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Commonly used name for the MoS release.

patch_url

(required) MoS URL to access the artifacts for the Java release.

DBMS_CLOUD_OCI_JMS_PATCH_DETAIL_TBL Type

Nested table type of dbms_cloud_oci_jms_patch_detail_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_patch_detail_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_patch_detail_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JAVA_RELEASE_T Type

Metadata associated with a specific release of Java. Includes the artifact details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_release_t FORCE AUTHID CURRENT_USER IS OBJECT (
  artifacts dbms_cloud_oci_jms_java_artifact_tbl,
  release_version varchar2(32767),
  family_version varchar2(32767),
  parent_release_version varchar2(32767),
  security_status varchar2(32767),
  release_type varchar2(32767),
  license_type varchar2(32767),
  family_details dbms_cloud_oci_jms_java_family_t,
  license_details dbms_cloud_oci_jms_java_license_t,
  release_date timestamp with time zone,
  release_notes_url varchar2(32767),
  artifact_content_types dbms_cloud_oci_jms_varchar2_tbl,
  mos_patches dbms_cloud_oci_jms_patch_detail_tbl,
  days_under_security_baseline number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_release_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_release_t (
    artifacts dbms_cloud_oci_jms_java_artifact_tbl,
    release_version varchar2,
    family_version varchar2,
    parent_release_version varchar2,
    security_status varchar2,
    release_type varchar2,
    license_type varchar2,
    family_details dbms_cloud_oci_jms_java_family_t,
    license_details dbms_cloud_oci_jms_java_license_t,
    release_date timestamp with time zone,
    release_notes_url varchar2,
    artifact_content_types dbms_cloud_oci_jms_varchar2_tbl,
    mos_patches dbms_cloud_oci_jms_patch_detail_tbl,
    days_under_security_baseline number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

artifacts

(optional) List of Java artifacts.

release_version

(required) Java release version identifier.

family_version

(required) Java release family identifier.

parent_release_version

(optional) Parent Java release version identifier. This is applicable for BPR releases.

security_status

(required) The security status of the Java version.

Allowed values are: 'EARLY_ACCESS', 'UNKNOWN', 'UP_TO_DATE', 'UPDATE_REQUIRED', 'UPGRADE_REQUIRED'

release_type

(required) Release category of the Java version.

Allowed values are: 'CPU', 'FEATURE', 'BPR', 'PATCH_RELEASE'

license_type

(required) License type for the Java version.

Allowed values are: 'OTN', 'NFTC', 'RESTRICTED'

family_details

(optional)

license_details

(optional)

release_date

(required) The release date of the Java version (formatted according to RFC3339).

release_notes_url

(required) Release notes associated with the Java version.

artifact_content_types

(required) Artifact content types for the Java version.

Allowed values are: 'JDK', 'JRE', 'SERVER_JRE'

mos_patches

(optional) List of My Oracle Support(MoS) patches available for this release. This information is only available for `BPR` release type.

days_under_security_baseline

(optional) The number of days since this release has been under the security baseline.

DBMS_CLOUD_OCI_JMS_JAVA_RELEASE_SUMMARY_T Type

A summary of the Java release properties.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_release_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  release_version varchar2(32767),
  family_version varchar2(32767),
  parent_release_version varchar2(32767),
  security_status varchar2(32767),
  release_type varchar2(32767),
  license_type varchar2(32767),
  family_details dbms_cloud_oci_jms_java_family_t,
  license_details dbms_cloud_oci_jms_java_license_t,
  release_date timestamp with time zone,
  release_notes_url varchar2(32767),
  artifact_content_types dbms_cloud_oci_jms_varchar2_tbl,
  mos_patches dbms_cloud_oci_jms_patch_detail_tbl,
  days_under_security_baseline number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_release_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_release_summary_t (
    release_version varchar2,
    family_version varchar2,
    parent_release_version varchar2,
    security_status varchar2,
    release_type varchar2,
    license_type varchar2,
    family_details dbms_cloud_oci_jms_java_family_t,
    license_details dbms_cloud_oci_jms_java_license_t,
    release_date timestamp with time zone,
    release_notes_url varchar2,
    artifact_content_types dbms_cloud_oci_jms_varchar2_tbl,
    mos_patches dbms_cloud_oci_jms_patch_detail_tbl,
    days_under_security_baseline number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

release_version

(required) Java release version identifier.

family_version

(required) Java release family identifier.

parent_release_version

(optional) Parent Java release version identifier. This is applicable for BPR releases.

security_status

(required) The security status of the Java version.

Allowed values are: 'EARLY_ACCESS', 'UNKNOWN', 'UP_TO_DATE', 'UPDATE_REQUIRED', 'UPGRADE_REQUIRED'

release_type

(required) Release category of the Java version.

Allowed values are: 'CPU', 'FEATURE', 'BPR', 'PATCH_RELEASE'

license_type

(required) License type for the Java version.

Allowed values are: 'OTN', 'NFTC', 'RESTRICTED'

family_details

(optional)

license_details

(optional)

release_date

(required) The release date of the Java version (formatted according to RFC3339).

release_notes_url

(required) Release notes associated with the Java version.

artifact_content_types

(required) Artifact content types for the Java version.

Allowed values are: 'JDK', 'JRE', 'SERVER_JRE'

mos_patches

(optional) List of My Oracle Support(MoS) patches available for this release. This information is only available for `BPR` release type.

days_under_security_baseline

(optional) The number of days since this release has been under the security baseline.

DBMS_CLOUD_OCI_JMS_JAVA_RELEASE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_java_release_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_release_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_java_release_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JAVA_RELEASE_COLLECTION_T Type

Collection of Java releases information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_release_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_java_release_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_release_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_release_collection_t (
    items dbms_cloud_oci_jms_java_release_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of the Java release information.

DBMS_CLOUD_OCI_JMS_JAVA_SERVER_INSTANCE_USAGE_T Type

Java Server instance usage during a specified time period.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_server_instance_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  server_instance_key varchar2(32767),
  fleet_id varchar2(32767),
  server_instance_name varchar2(32767),
  server_key varchar2(32767),
  server_name varchar2(32767),
  server_version varchar2(32767),
  managed_instance_id varchar2(32767),
  host_name varchar2(32767),
  jvm_key varchar2(32767),
  jvm_vendor varchar2(32767),
  jvm_distribution varchar2(32767),
  jvm_version varchar2(32767),
  jvm_security_status varchar2(32767),
  approximate_deployed_application_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_instance_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_instance_usage_t (
    server_instance_key varchar2,
    fleet_id varchar2,
    server_instance_name varchar2,
    server_key varchar2,
    server_name varchar2,
    server_version varchar2,
    managed_instance_id varchar2,
    host_name varchar2,
    jvm_key varchar2,
    jvm_vendor varchar2,
    jvm_distribution varchar2,
    jvm_version varchar2,
    jvm_security_status varchar2,
    approximate_deployed_application_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

server_instance_key

(required) The internal identifier of the Java Server instance.

fleet_id

(required) The OCID of the related Fleet.

server_instance_name

(required) The name of the Java Server instance.

server_key

(required) The internal identifier of the related Java Server.

server_name

(optional) The name of the Java Server.

server_version

(optional) The version of the Java Server.

managed_instance_id

(required) The OCID of the related managed instance.

host_name

(optional) The host name of the related managed instance.

jvm_key

(optional) The internal identifier of the related Java Runtime.

jvm_vendor

(optional) The vendor of the Java Runtime.

jvm_distribution

(optional) The distribution of the Java Runtime.

jvm_version

(optional) The version of the Java Runtime.

jvm_security_status

(optional) The security status of the Java Runtime.

Allowed values are: 'EARLY_ACCESS', 'UNKNOWN', 'UP_TO_DATE', 'UPDATE_REQUIRED', 'UPGRADE_REQUIRED'

approximate_deployed_application_count

(optional) The approximate count of deployed applications in the Java Server instance.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_JAVA_SERVER_INSTANCE_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_java_server_instance_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_server_instance_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_java_server_instance_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JAVA_SERVER_INSTANCE_USAGE_COLLECTION_T Type

Results of a Java Server instance usage search. Contains Java Server usage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_server_instance_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_java_server_instance_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_instance_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_instance_usage_collection_t (
    items dbms_cloud_oci_jms_java_server_instance_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Java Server instance usages.

DBMS_CLOUD_OCI_JMS_JAVA_SERVER_USAGE_T Type

Java Server usage during a specified time period.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_server_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  server_key varchar2(32767),
  fleet_id varchar2(32767),
  server_name varchar2(32767),
  server_version varchar2(32767),
  server_instance_count number,
  approximate_deployed_application_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_usage_t (
    server_key varchar2,
    fleet_id varchar2,
    server_name varchar2,
    server_version varchar2,
    server_instance_count number,
    approximate_deployed_application_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

server_key

(required) The internal identifier of the Java Server.

fleet_id

(required) The OCID of the related fleet.

server_name

(required) The name of the Java Server.

server_version

(optional) The version of the Java Server.

server_instance_count

(optional) The count of server instances of the Java Server.

approximate_deployed_application_count

(optional) The approximate count of deployed applications in the Java Server.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_JAVA_SERVER_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_java_server_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_server_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_java_server_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JAVA_SERVER_USAGE_COLLECTION_T Type

Results of a Java Server usage search. Contains Java Server usage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_server_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_java_server_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_java_server_usage_collection_t (
    items dbms_cloud_oci_jms_java_server_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Java Server usages.

DBMS_CLOUD_OCI_JMS_JFR_ATTACHMENT_TARGET_T Type

The target to collect JFR data. A target is a managed instance, with options to further limit to specific application and/or Java Runtime. When the applicationKey isn't specified, then all applications are selected. When the jreKey isn't specified, then all supported Java Runtime versions are selected. When the applicationInstallationKey isn't specified, then all application installations are selected. Keys applicationKey and applicationInstallationKey are mutually exclusive.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_jfr_attachment_target_t FORCE AUTHID CURRENT_USER IS OBJECT (
  managed_instance_id varchar2(32767),
  application_key varchar2(32767),
  application_installation_key varchar2(32767),
  jre_key varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jfr_attachment_target_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jfr_attachment_target_t (
    managed_instance_id varchar2,
    application_key varchar2,
    application_installation_key varchar2,
    jre_key varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

managed_instance_id

(required) OCID of the Managed Instance to collect JFR data.

application_key

(optional) Unique key that identifies the application for JFR data collection.

application_installation_key

(optional) Unique key that identifies the application installation for JFR data collection.

jre_key

(optional) Unique key that identify the JVM for JFR data collection.

DBMS_CLOUD_OCI_JMS_JRE_USAGE_T Type

Java Runtime usage during a specified time period. A Java Runtime is identified by its vendor and version.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_jre_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  fleet_id varchar2(32767),
  managed_instance_id varchar2(32767),
  security_status varchar2(32767),
  release_date timestamp with time zone,
  end_of_support_life_date timestamp with time zone,
  vendor varchar2(32767),
  distribution varchar2(32767),
  version varchar2(32767),
  days_under_security_baseline number,
  operating_systems dbms_cloud_oci_jms_operating_system_tbl,
  approximate_installation_count number,
  approximate_application_count number,
  approximate_managed_instance_count number,
  approximate_pending_work_request_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jre_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jre_usage_t (
    id varchar2,
    fleet_id varchar2,
    managed_instance_id varchar2,
    security_status varchar2,
    release_date timestamp with time zone,
    end_of_support_life_date timestamp with time zone,
    vendor varchar2,
    distribution varchar2,
    version varchar2,
    days_under_security_baseline number,
    operating_systems dbms_cloud_oci_jms_operating_system_tbl,
    approximate_installation_count number,
    approximate_application_count number,
    approximate_managed_instance_count number,
    approximate_pending_work_request_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The internal identifier of the Java Runtime.

fleet_id

(optional) The OCID of the related fleet.

managed_instance_id

(optional) The OCID of the related managed instance. This property value is present only for /listJreUsage.

security_status

(optional) The security status of the Java Runtime.

Allowed values are: 'EARLY_ACCESS', 'UNKNOWN', 'UP_TO_DATE', 'UPDATE_REQUIRED', 'UPGRADE_REQUIRED'

release_date

(optional) The release date of the Java Runtime (formatted according to RFC3339).

end_of_support_life_date

(optional) The End of Support Life (EOSL) date of the Java Runtime (formatted according to RFC3339).

vendor

(required) The vendor of the Java Runtime.

distribution

(required) The distribution of a Java Runtime is the name of the lineage of product to which it belongs, for example _Java(TM) SE Runtime Environment_.

version

(required) The version of the Java Runtime.

days_under_security_baseline

(optional) The number of days since this release has been under the security baseline.

operating_systems

(optional) The operating systems that have this Java Runtime installed.

approximate_installation_count

(optional) The approximate count of installations that are installations of this Java Runtime.

approximate_application_count

(optional) The approximate count of the applications running on this Java Runtime.

approximate_managed_instance_count

(optional) The approximate count of the managed instances that report this Java Runtime.

approximate_pending_work_request_count

(optional) The approximate count of work requests working on this Java Runtime.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_JRE_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_jre_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_jre_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_jre_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_JRE_USAGE_COLLECTION_T Type

Results of a Java Runtime search. Contains JreUsage items

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_jre_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_jre_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jre_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_jre_usage_collection_t (
    items dbms_cloud_oci_jms_jre_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Java Runtimes.

DBMS_CLOUD_OCI_JMS_LCM_WORK_ITEM_DETAILS_T Type

The work item details with LCM related information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_lcm_work_item_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_jms_work_item_details_t (
  post_installation_actions dbms_cloud_oci_jms_post_installation_action_settings_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_lcm_work_item_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_lcm_work_item_details_t (
    kind varchar2,
    work_item_type varchar2,
    post_installation_actions dbms_cloud_oci_jms_post_installation_action_settings_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_jms_lcm_work_item_details_t is a subtype of the dbms_cloud_oci_jms_work_item_details_t type.

Fields

Field Description

post_installation_actions

(optional)

DBMS_CLOUD_OCI_JMS_LIBRARY_USAGE_T Type

Library usage during a specified time period.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_library_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  library_key varchar2(32767),
  fleet_id varchar2(32767),
  library_name varchar2(32767),
  library_version varchar2(32767),
  cvss_score number,
  approximate_application_count number,
  approximate_java_server_instance_count number,
  approximate_deployed_application_count number,
  approximate_managed_instance_count number,
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_library_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_library_usage_t (
    library_key varchar2,
    fleet_id varchar2,
    library_name varchar2,
    library_version varchar2,
    cvss_score number,
    approximate_application_count number,
    approximate_java_server_instance_count number,
    approximate_deployed_application_count number,
    approximate_managed_instance_count number,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

library_key

(required) The internal identifier of the library.

fleet_id

(required) The OCID of the related fleet.

library_name

(required) The name of the library.

library_version

(optional) The version of the library.

cvss_score

(optional) The Common Vulnerability Scoring System (CVSS) score.

approximate_application_count

(optional) The approximate count of applications using the library.

approximate_java_server_instance_count

(optional) The approximate count of Java Server instances using the library.

approximate_deployed_application_count

(optional) The approximate count of deployed applications using the library.

approximate_managed_instance_count

(optional) The approximate count of managed instances using the library.

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_LIBRARY_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_library_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_library_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_library_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_LIBRARY_USAGE_COLLECTION_T Type

Results of a library usage search. Contains library usage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_library_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_library_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_library_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_library_usage_collection_t (
    items dbms_cloud_oci_jms_library_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of library usages.

DBMS_CLOUD_OCI_JMS_MANAGED_INSTANCE_USAGE_T Type

Managed instance usage during a specified time period. An entity that emits usage events to Java Management Service (JMS) is represented as a managed instance. A managed instance has a unique identity which is used by JMS to distinguish it from other managed instances. Currently, JMS supports only one kind of managed instance, a Management Agent.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_managed_instance_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  managed_instance_id varchar2(32767),
  managed_instance_type varchar2(32767),
  hostname varchar2(32767),
  host_id varchar2(32767),
  operating_system dbms_cloud_oci_jms_operating_system_t,
  agent dbms_cloud_oci_jms_agent_t,
  approximate_application_count number,
  approximate_installation_count number,
  approximate_jre_count number,
  drs_file_status varchar2(32767),
  time_start timestamp with time zone,
  time_end timestamp with time zone,
  time_first_seen timestamp with time zone,
  time_last_seen timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_managed_instance_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_managed_instance_usage_t (
    managed_instance_id varchar2,
    managed_instance_type varchar2,
    hostname varchar2,
    host_id varchar2,
    operating_system dbms_cloud_oci_jms_operating_system_t,
    agent dbms_cloud_oci_jms_agent_t,
    approximate_application_count number,
    approximate_installation_count number,
    approximate_jre_count number,
    drs_file_status varchar2,
    time_start timestamp with time zone,
    time_end timestamp with time zone,
    time_first_seen timestamp with time zone,
    time_last_seen timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

managed_instance_id

(required) The OCID of the related managed instance.

managed_instance_type

(required) The type of the source of events.

Allowed values are: 'ORACLE_MANAGEMENT_AGENT'

hostname

(optional) The hostname of the managed instance (if applicable).

host_id

(optional) The host OCID of the related managed instance.

operating_system

(optional)

agent

(optional)

approximate_application_count

(optional) The approximate count of applications reported by this managed instance.

approximate_installation_count

(optional) The approximate count of installations reported by this managed instance.

approximate_jre_count

(optional) The approximate count of Java Runtimes reported by this managed instance.

drs_file_status

(optional) DRS file status

Allowed values are: 'PRESENT', 'ABSENT', 'MISMATCH', 'NOT_CONFIGURED'

time_start

(optional) Lower bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_end

(optional) Upper bound of the specified time period filter. JMS provides a view of the data that is _per day_. The query uses only the date element of the parameter.

time_first_seen

(optional) The date and time the resource was _first_ reported to JMS. This is potentially _before_ the specified time period provided by the filters. For example, a resource can be first reported to JMS before the start of a specified time period, if it is also reported during the time period.

time_last_seen

(optional) The date and time the resource was _last_ reported to JMS. This is potentially _after_ the specified time period provided by the filters. For example, a resource can be last reported to JMS before the start of a specified time period, if it is also reported during the time period.

DBMS_CLOUD_OCI_JMS_MANAGED_INSTANCE_USAGE_TBL Type

Nested table type of dbms_cloud_oci_jms_managed_instance_usage_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_managed_instance_usage_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_managed_instance_usage_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_MANAGED_INSTANCE_USAGE_COLLECTION_T Type

Results of a managed instance search. Contains ManagedInstanceUsage items.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_managed_instance_usage_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_managed_instance_usage_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_managed_instance_usage_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_managed_instance_usage_collection_t (
    items dbms_cloud_oci_jms_managed_instance_usage_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of managed instances.

DBMS_CLOUD_OCI_JMS_PERFORMANCE_TUNING_ANALYSIS_RESULT_T Type

Metadata of a Performance Tuning Analysis result. The analysis result is stored as the Object Storage object.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_performance_tuning_analysis_result_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  work_request_id varchar2(32767),
  fleet_id varchar2(32767),
  application_id varchar2(32767),
  application_installation_id varchar2(32767),
  application_installation_path varchar2(32767),
  warning_count number,
  result varchar2(32767),
  managed_instance_id varchar2(32767),
  host_name varchar2(32767),
  application_name varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_result_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_result_t (
    id varchar2,
    work_request_id varchar2,
    fleet_id varchar2,
    application_id varchar2,
    application_installation_id varchar2,
    application_installation_path varchar2,
    warning_count number,
    result varchar2,
    managed_instance_id varchar2,
    host_name varchar2,
    application_name varchar2,
    namespace varchar2,
    bucket_name varchar2,
    object_name varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID to identify this analysis results.

work_request_id

(optional) The OCID of the work request to start the analysis.

fleet_id

(required) The fleet OCID.

application_id

(required) The OCID of the application for which the report has been generated.

application_installation_id

(required) The internal identifier of the application installation for which the report has been generated.

application_installation_path

(required) The installation path of the application for which the report has been generated.

warning_count

(required) Total number of warnings reported by the analysis.

result

(required) Result of the analysis based on whether warnings have been found or not.

Allowed values are: 'ACTION_RECOMMENDED', 'NO_WARNINGS'

managed_instance_id

(required) The managed instance OCID.

host_name

(required) The hostname of the managed instance.

application_name

(required) The name of the application for which the report has been generated.

namespace

(required) The Object Storage namespace of this analysis result.

bucket_name

(required) The Object Storage bucket name of this analysis result.

object_name

(required) The Object Storage object name of this analysis result.

time_created

(required) The time the result is compiled.

time_started

(required) The time the JFR capture started.

time_finished

(required) The time the JFR capture finished.

DBMS_CLOUD_OCI_JMS_PERFORMANCE_TUNING_ANALYSIS_RESULT_SUMMARY_T Type

Summary of a performance tuning analysis result. The actual output of the analysis is stored in the Object Storage object.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  work_request_id varchar2(32767),
  fleet_id varchar2(32767),
  application_id varchar2(32767),
  application_installation_id varchar2(32767),
  application_installation_path varchar2(32767),
  warning_count number,
  result varchar2(32767),
  managed_instance_id varchar2(32767),
  host_name varchar2(32767),
  application_name varchar2(32767),
  namespace varchar2(32767),
  bucket_name varchar2(32767),
  object_name varchar2(32767),
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_t (
    id varchar2,
    work_request_id varchar2,
    fleet_id varchar2,
    application_id varchar2,
    application_installation_id varchar2,
    application_installation_path varchar2,
    warning_count number,
    result varchar2,
    managed_instance_id varchar2,
    host_name varchar2,
    application_name varchar2,
    namespace varchar2,
    bucket_name varchar2,
    object_name varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID to identify this analysis results.

work_request_id

(optional) The OCID of the work request to start the analysis.

fleet_id

(required) The fleet OCID.

application_id

(required) The OCID of the application for which the report has been generated.

application_installation_id

(required) The internal identifier of the application installation for which the report has been generated.

application_installation_path

(required) The installation path of the application for which the report has been generated.

warning_count

(required) Total number of warnings reported by the analysis.

result

(required) Result of the analysis based on whether warnings have been found or not.

Allowed values are: 'ACTION_RECOMMENDED', 'NO_WARNINGS'

managed_instance_id

(required) The managed instance OCID.

host_name

(required) The hostname of the managed instance.

application_name

(required) The name of the application for which the report has been generated.

namespace

(required) The Object Storage namespace of this analysis result.

bucket_name

(required) The Object Storage bucket name of this analysis result.

object_name

(required) The Object Storage object name of this analysis result.

time_created

(required) The time the result is compiled.

time_started

(required) The time the JFR capture started.

time_finished

(required) The time the JFR capture finished.

DBMS_CLOUD_OCI_JMS_PERFORMANCE_TUNING_ANALYSIS_RESULT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_PERFORMANCE_TUNING_ANALYSIS_RESULT_COLLECTION_T Type

List of Performance Tuning Analysis results.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_performance_tuning_analysis_result_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_result_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_performance_tuning_analysis_result_collection_t (
    items dbms_cloud_oci_jms_performance_tuning_analysis_result_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of Performance Tuning Analysis results.

DBMS_CLOUD_OCI_JMS_PRINCIPAL_T Type

An authorized principal.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_principal_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_principal_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_principal_t (
    id varchar2,
    display_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The OCID of the principal.

display_name

(required) The name of the principal.

DBMS_CLOUD_OCI_JMS_EXISTING_INSTALLATION_SITE_ID_TBL Type

Nested table type of dbms_cloud_oci_jms_existing_installation_site_id_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_existing_installation_site_id_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_existing_installation_site_id_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_REMOVE_FLEET_INSTALLATION_SITES_DETAILS_T Type

The list of Java installation sites to remove.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_remove_fleet_installation_sites_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  installation_sites dbms_cloud_oci_jms_existing_installation_site_id_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_remove_fleet_installation_sites_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_remove_fleet_installation_sites_details_t (
    installation_sites dbms_cloud_oci_jms_existing_installation_site_id_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

installation_sites

(required) The list of installation sites to remove.

DBMS_CLOUD_OCI_JMS_JFR_ATTACHMENT_TARGET_TBL Type

Nested table type of dbms_cloud_oci_jms_jfr_attachment_target_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_jfr_attachment_target_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_jfr_attachment_target_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_REQUEST_CRYPTO_ANALYSES_DETAILS_T Type

Details of the request to start a JFR crypto event analysis. When the targets aren't specified, then all managed instances currently in the fleet are selected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_request_crypto_analyses_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets dbms_cloud_oci_jms_jfr_attachment_target_tbl,
  recording_duration_in_minutes number,
  waiting_period_in_minutes number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_crypto_analyses_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_crypto_analyses_details_t (
    targets dbms_cloud_oci_jms_jfr_attachment_target_tbl,
    recording_duration_in_minutes number,
    waiting_period_in_minutes number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets

(optional) The attachment targets to start JFR.

recording_duration_in_minutes

(optional) Duration of the JFR recording in minutes.

waiting_period_in_minutes

(optional) Period to looking for JVMs. In addition to attach to running JVMs when given the command, JVM started within the waiting period will also be attached for JFR. The value should be larger than the agent polling interval setting for the fleet to ensure agent can get the instructions. If not specified, the agent polling interval for the fleet is used.

DBMS_CLOUD_OCI_JMS_JAVA_MIGRATION_ANALYSIS_TARGET_TBL Type

Nested table type of dbms_cloud_oci_jms_java_migration_analysis_target_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_java_migration_analysis_target_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_java_migration_analysis_target_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_REQUEST_JAVA_MIGRATION_ANALYSES_DETAILS_T Type

Details of the request to start a Java migration analysis. The analysis requires the managed instance OCID, application installation key, source JDK version, and target JDK version of each selected application.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_request_java_migration_analyses_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets dbms_cloud_oci_jms_java_migration_analysis_target_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_java_migration_analyses_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_java_migration_analyses_details_t (
    targets dbms_cloud_oci_jms_java_migration_analysis_target_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets

(required) An array of migration analysis requests.

DBMS_CLOUD_OCI_JMS_REQUEST_JFR_RECORDINGS_DETAILS_T Type

Details of the request to start JFR recordings. When the targets aren't specified, then all managed instances currently in the Fleet are selected.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_request_jfr_recordings_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets dbms_cloud_oci_jms_jfr_attachment_target_tbl,
  jfc_profile_name varchar2(32767),
  jfc_v1 varchar2(32767),
  jfc_v2 varchar2(32767),
  recording_duration_in_minutes number,
  recording_size_in_mb number,
  waiting_period_in_minutes number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_jfr_recordings_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_jfr_recordings_details_t (
    targets dbms_cloud_oci_jms_jfr_attachment_target_tbl,
    jfc_profile_name varchar2,
    jfc_v1 varchar2,
    jfc_v2 varchar2,
    recording_duration_in_minutes number,
    recording_size_in_mb number,
    waiting_period_in_minutes number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets

(optional) The attachment targets to start JFR.

jfc_profile_name

(required) The profile used for JFR events selection. If the name isn't recognized, the settings from jfcV1 or jfcV2 will be used depending on the JVM version. Both jfcV2 and jfcV1 should be provided to ensure JFR collection on different JVM versions.

jfc_v1

(optional) The BASE64 encoded string of JFR settings XML with schema used by JDK 8.

jfc_v2

(optional) The BASE64 encoded string of JFR settings XML with schema used by JDK 9 and after.

recording_duration_in_minutes

(optional) Duration of the JFR recording in minutes.

recording_size_in_mb

(optional) The maximum size limit for the JFR file collected.

waiting_period_in_minutes

(optional) Period to looking for JVMs. In addition to attach to running JVMs when given the command, JVM started within the waiting period will also be attached for JFR. The value should be larger than the agent polling interval setting for the fleet to ensure agent can get the instructions. If not specified, the agent polling interval for the fleet is used.

DBMS_CLOUD_OCI_JMS_REQUEST_PERFORMANCE_TUNING_ANALYSES_DETAILS_T Type

Details of the request to start a JFR performance tuning analysis.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_request_performance_tuning_analyses_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  targets dbms_cloud_oci_jms_jfr_attachment_target_tbl,
  recording_duration_in_minutes number,
  waiting_period_in_minutes number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_performance_tuning_analyses_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_request_performance_tuning_analyses_details_t (
    targets dbms_cloud_oci_jms_jfr_attachment_target_tbl,
    recording_duration_in_minutes number,
    waiting_period_in_minutes number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

targets

(optional) The attachment targets to start JFR.

recording_duration_in_minutes

(required) Duration of the JFR recording in minutes.

waiting_period_in_minutes

(optional) Period to looking for JVMs. In addition to attach to running JVMs when given the command, JVM started within the waiting period will also be attached for JFR. The value should be larger than the agent polling interval setting for the fleet to ensure agent can get the instructions. If not specified, the agent polling interval for the fleet is used.

DBMS_CLOUD_OCI_JMS_RESOURCE_INVENTORY_T Type

Inventory of JMS resources in a compartment during a specified time period.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_resource_inventory_t FORCE AUTHID CURRENT_USER IS OBJECT (
  active_fleet_count number,
  managed_instance_count number,
  jre_count number,
  installation_count number,
  application_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_resource_inventory_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_resource_inventory_t (
    active_fleet_count number,
    managed_instance_count number,
    jre_count number,
    installation_count number,
    application_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

active_fleet_count

(required) The number of _active_ fleets.

managed_instance_count

(required) The number of managed instances.

jre_count

(required) The number of Java Runtimes.

installation_count

(required) The number of Java installations.

application_count

(required) The number of applications.

DBMS_CLOUD_OCI_JMS_SCAN_JAVA_SERVER_USAGE_DETAILS_T Type

The list of managed instances to scan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_scan_java_server_usage_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  managed_instance_ids dbms_cloud_oci_jms_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_scan_java_server_usage_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_scan_java_server_usage_details_t (
    managed_instance_ids dbms_cloud_oci_jms_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

managed_instance_ids

(optional) The list of OCIDs of managed instances to scan.

DBMS_CLOUD_OCI_JMS_SCAN_LIBRARY_USAGE_DETAILS_T Type

The list of managed instances to scan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_scan_library_usage_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  managed_instance_ids dbms_cloud_oci_jms_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_scan_library_usage_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_scan_library_usage_details_t (
    managed_instance_ids dbms_cloud_oci_jms_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

managed_instance_ids

(optional) The list of OCIDs of managed instances to scan.

DBMS_CLOUD_OCI_JMS_UPDATE_DRS_FILE_DETAILS_T Type

Details of the request to update DRS file in a Fleet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_update_drs_file_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  bucket_name varchar2(32767),
  namespace varchar2(32767),
  drs_file_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_drs_file_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_drs_file_details_t (
    bucket_name varchar2,
    namespace varchar2,
    drs_file_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

bucket_name

(required) The Object Storage bucket name where the DRS file is located.

namespace

(required) The namespace for Object Storage.

drs_file_name

(required) The name of the DRS file in Object Store.

DBMS_CLOUD_OCI_JMS_UPDATE_EXPORT_SETTING_DETAILS_T Type

Attributes to update a Export setting.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_update_export_setting_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  export_duration varchar2(32767),
  export_resources varchar2(32767),
  is_cross_region_acknowledged number,
  target_bucket_name varchar2(32767),
  target_bucket_namespace varchar2(32767),
  target_bucket_region varchar2(32767),
  export_frequency varchar2(32767),
  is_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_export_setting_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_export_setting_details_t (
    export_duration varchar2,
    export_resources varchar2,
    is_cross_region_acknowledged number,
    target_bucket_name varchar2,
    target_bucket_namespace varchar2,
    target_bucket_region varchar2,
    export_frequency varchar2,
    is_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

export_duration

(optional) The duration of data to be exported for fleets.

Allowed values are: 'LAST_30_DAYS', 'LAST_60_DAYS', 'LAST_90_DAYS'

export_resources

(optional) Resource to export data associated from the fleets.

Allowed values are: 'MANAGED_INSTANCE', 'MANAGED_INSTANCE_PLUS_JAVA_RUNTIME', 'MANAGED_INSTANCE_PLUS_JAVA_RUNTIME_PLUS_APPLICATION'

is_cross_region_acknowledged

(optional) Acknowledgement for cross region target bucket configuration.

target_bucket_name

(optional) The name of the bucket where data will be exported.

target_bucket_namespace

(optional) The namespace of the bucket where data will be exported.

target_bucket_region

(optional) The namespace of the bucket where data will be exported.

export_frequency

(optional) Schedule at which data will be exported.

Allowed values are: 'DAILY', 'WEEKLY', 'MONTHLY'

is_enabled

(required) ExportSetting flag to store enabled or disabled status.

DBMS_CLOUD_OCI_JMS_UPDATE_FLEET_ADVANCED_FEATURE_CONFIGURATION_DETAILS_T Type

Details object containing advanced feature configurations to be updated. Ensure that the namespace and bucket storage are created prior to turning on the JfrRecording or CryptoEventAnalysis feature.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_update_fleet_advanced_feature_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  analytic_namespace varchar2(32767),
  analytic_bucket_name varchar2(32767),
  lcm dbms_cloud_oci_jms_lcm_t,
  crypto_event_analysis dbms_cloud_oci_jms_crypto_event_analysis_t,
  advanced_usage_tracking dbms_cloud_oci_jms_advanced_usage_tracking_t,
  jfr_recording dbms_cloud_oci_jms_jfr_recording_t,
  performance_tuning_analysis dbms_cloud_oci_jms_performance_tuning_analysis_t,
  java_migration_analysis dbms_cloud_oci_jms_java_migration_analysis_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_fleet_advanced_feature_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_fleet_advanced_feature_configuration_details_t (
    analytic_namespace varchar2,
    analytic_bucket_name varchar2,
    lcm dbms_cloud_oci_jms_lcm_t,
    crypto_event_analysis dbms_cloud_oci_jms_crypto_event_analysis_t,
    advanced_usage_tracking dbms_cloud_oci_jms_advanced_usage_tracking_t,
    jfr_recording dbms_cloud_oci_jms_jfr_recording_t,
    performance_tuning_analysis dbms_cloud_oci_jms_performance_tuning_analysis_t,
    java_migration_analysis dbms_cloud_oci_jms_java_migration_analysis_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

analytic_namespace

(optional) Namespace for the Fleet advanced feature.

analytic_bucket_name

(optional) Bucket name required to store JFR and related data.

lcm

(optional)

crypto_event_analysis

(optional)

advanced_usage_tracking

(optional)

jfr_recording

(optional)

performance_tuning_analysis

(optional)

java_migration_analysis

(optional)

DBMS_CLOUD_OCI_JMS_UPDATE_FLEET_AGENT_CONFIGURATION_DETAILS_T Type

Attributes to update a Fleet Agent Configuration.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_update_fleet_agent_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  jre_scan_frequency_in_minutes number,
  java_usage_tracker_processing_frequency_in_minutes number,
  work_request_validity_period_in_days number,
  agent_polling_interval_in_minutes number,
  linux_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
  windows_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
  mac_os_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_fleet_agent_configuration_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_fleet_agent_configuration_details_t (
    jre_scan_frequency_in_minutes number,
    java_usage_tracker_processing_frequency_in_minutes number,
    work_request_validity_period_in_days number,
    agent_polling_interval_in_minutes number,
    linux_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
    windows_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t,
    mac_os_configuration dbms_cloud_oci_jms_fleet_agent_os_configuration_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

jre_scan_frequency_in_minutes

(optional) The frequency (in minutes) of JRE scanning. (That is, how often should JMS scan for JRE installations.)

java_usage_tracker_processing_frequency_in_minutes

(optional) The frequency (in minutes) of Java Usage Tracker processing. (That is, how often should JMS process data from the Java Usage Tracker.)

work_request_validity_period_in_days

(optional) The validity period in days for work requests.

agent_polling_interval_in_minutes

(optional) Agent polling interval in minutes

linux_configuration

(optional)

windows_configuration

(optional)

mac_os_configuration

(optional)

DBMS_CLOUD_OCI_JMS_UPDATE_FLEET_DETAILS_T Type

Attributes to update a Fleet.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_update_fleet_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  description varchar2(32767),
  inventory_log dbms_cloud_oci_jms_custom_log_t,
  operation_log dbms_cloud_oci_jms_custom_log_t,
  is_advanced_features_enabled number,
  defined_tags json_element_t,
  freeform_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_fleet_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_update_fleet_details_t (
    display_name varchar2,
    description varchar2,
    inventory_log dbms_cloud_oci_jms_custom_log_t,
    operation_log dbms_cloud_oci_jms_custom_log_t,
    is_advanced_features_enabled number,
    defined_tags json_element_t,
    freeform_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) The name of the Fleet. The displayName must be unique for Fleets in the same compartment.

description

(optional) The Fleet's description.

inventory_log

(optional)

operation_log

(optional)

is_advanced_features_enabled

(optional) Whether or not advanced features are enabled in this Fleet. Deprecated, use `/fleets/{fleetId}/advanceFeatureConfiguration` API instead.

defined_tags

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

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\"}`. (See Managing Tags and Tag Namespaces.)

DBMS_CLOUD_OCI_JMS_WORK_ITEM_SUMMARY_T Type

Work item to complete a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_item_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  work_request_id varchar2(32767),
  installation_site dbms_cloud_oci_jms_installation_site_t,
  details dbms_cloud_oci_jms_work_item_details_t,
  status varchar2(32767),
  retry_count number,
  time_last_updated timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_item_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_item_summary_t (
    id varchar2,
    work_request_id varchar2,
    installation_site dbms_cloud_oci_jms_installation_site_t,
    details dbms_cloud_oci_jms_work_item_details_t,
    status varchar2,
    retry_count number,
    time_last_updated timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique ID of ths work item.

work_request_id

(required) The OCID of the work request created this work item.

installation_site

(required)

details

(required)

status

(required) The status of the work item.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'NEEDS_ATTENTION', 'RETRYING'

retry_count

(required) Number of times this work item is retried.

time_last_updated

(optional) The date and time the work item was last updated. (formatted according to RFC3339).

DBMS_CLOUD_OCI_JMS_WORK_ITEM_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_jms_work_item_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_item_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_work_item_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_WORK_ITEM_COLLECTION_T Type

A list of WorkItem.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_item_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_work_item_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_item_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_item_collection_t (
    items dbms_cloud_oci_jms_work_item_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of work request items.

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_RESOURCE_T Type

A resource that is created or operated on by an asynchronous operation that is tracked by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
  entity_type varchar2(32767),
  action_type varchar2(32767),
  identifier varchar2(32767),
  entity_uri varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type affected by the work request.

action_type

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

Allowed values are: 'CREATED', 'DELETED', 'IN_PROGRESS', 'RELATED', 'UPDATED', 'FAILED'

identifier

(required) An OCID or other unique identifier of the resource affected by the work request.

entity_uri

(optional) The URI path that the user can perform a GET operation to access the resource metadata.

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_jms_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_T Type

An asynchronous work request. See Work Requests.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
  operation_type varchar2(32767),
  status varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  resources dbms_cloud_oci_jms_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,
  created_by dbms_cloud_oci_jms_principal_t,
  time_last_updated timestamp with time zone,
  total_task_count number,
  completed_task_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_jms_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,
    created_by dbms_cloud_oci_jms_principal_t,
    time_last_updated timestamp with time zone,
    total_task_count number,
    completed_task_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The asynchronous operation tracked by this work request.

Allowed values are: 'CREATE_FLEET', 'DELETE_FLEET', 'MOVE_FLEET', 'UPDATE_FLEET', 'UPDATE_FLEET_AGENT_CONFIGURATION', 'DELETE_JAVA_INSTALLATION', 'CREATE_JAVA_INSTALLATION', 'COLLECT_JFR', 'REQUEST_CRYPTO_EVENT_ANALYSIS', 'REQUEST_PERFORMANCE_TUNING_ANALYSIS', 'REQUEST_JAVA_MIGRATION_ANALYSIS', 'DELETE_JMS_REPORT', 'SCAN_JAVA_SERVER_USAGE', 'SCAN_LIBRARY_USAGE', 'EXPORT_DATA_CSV', 'CREATE_DRS_FILE', 'UPDATE_DRS_FILE', 'DELETE_DRS_FILE', 'ENABLE_DRS', 'DISABLE_DRS'

status

(required) The status of the work request.

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

id

(required) The OCID 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 aren't in the same compartment, it's up to the service team to pick the primary resource whose compartment should be used.

resources

(required) The resources that are affected by this work request.

percent_complete

(required) The percentage complete of the operation tracked by this work request.

time_accepted

(required) The date and time the request was created (formatted according to RFC3339).

time_started

(optional) The date and time the work request transitioned from _ACCEPTED_ to _IN_PROGRESS_ (formatted according to RFC3339).

time_finished

(optional) The date and time the work request reached a terminal state, either _FAILED_ or _SUCCEEDED_ (formatted according to RFC3339).

created_by

(optional)

time_last_updated

(optional) The date and time the work request percentage was last updated. (formatted according to RFC3339).

total_task_count

(optional) The total number of tasks to be executed for this work request.

completed_task_count

(optional) The number of tasks had been executed to a terminal state.

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_TBL Type

Nested table type of dbms_cloud_oci_jms_work_request_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_work_request_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_COLLECTION_T Type

Results of a work request search. Contains WorkRequest items

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_work_request_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_collection_t (
    items dbms_cloud_oci_jms_work_request_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of work requests.

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_ERROR_T Type

An error encountered while executing an operation that is tracked by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_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_jms_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_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 occurred. Error codes are listed at API Errors.

message

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

l_timestamp

(required) The date and time the error occured (formatted according to RFC3339).

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_jms_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_ERROR_COLLECTION_T Type

Results of a work request error search. Contains WorkRequestError items

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_error_collection_t (
    items dbms_cloud_oci_jms_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of work request errors.

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_LOG_ENTRY_T Type

A log message from executing an operation that is tracked by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_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_jms_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_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 log message was written (formatted according to RFC3339).

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_jms_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_jms_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_JMS_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

Results of a work request log entry search. Contains WorkRequestLogEntry items

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_jms_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_jms_work_request_log_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_log_entry_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_jms_work_request_log_entry_collection_t (
    items dbms_cloud_oci_jms_work_request_log_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) A list of work request log entries.

Was this article helpful?