Fusion Apps Common Types

DBMS_CLOUD_OCI_FUSION_APPS_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_FUSION_APPS_ACTION_T Type

Action details

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_action_t FORCE AUTHID CURRENT_USER IS OBJECT (
  reference_key varchar2(32767),
  action_type varchar2(32767),
  state varchar2(32767),
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_action_t (
    reference_key varchar2,
    action_type varchar2,
    state varchar2,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

reference_key

(optional) Unique identifier of the object that represents the action

action_type

(required) Type of action

Allowed values are: 'QUARTERLY_UPGRADE', 'PATCH', 'VERTEX'

state

(optional) A string that describes whether the change is applied hot or cold

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

description

(required) A string that describes the details of the action. It does not have to be unique, and you can change it. Avoid entering confidential information.

DBMS_CLOUD_OCI_FUSION_APPS_ADMIN_USER_SUMMARY_T Type

IDM admin credentials without password

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_admin_user_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  username varchar2(32767),
  email_address varchar2(32767),
  first_name varchar2(32767),
  last_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_admin_user_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_admin_user_summary_t (
    username varchar2,
    email_address varchar2,
    first_name varchar2,
    last_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

username

(required) Admin username

email_address

(required) Admin users email address

first_name

(required) Admin users first name

last_name

(required) Admin users last name

DBMS_CLOUD_OCI_FUSION_APPS_ADMIN_USER_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_admin_user_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_admin_user_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_admin_user_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_ADMIN_USER_COLLECTION_T Type

IDM admin credentials without password

Syntax

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

Fields

Field Description

items

(required) A page of AdminUserSummary objects.

DBMS_CLOUD_OCI_FUSION_APPS_RULE_CONDITION_T Type

A condition to apply to an access control rule.

Syntax

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

Fields

Field Description

attribute_name

(required) RuleCondition type

Allowed values are: 'SOURCE_IP_ADDRESS', 'SOURCE_VCN_ID', 'SOURCE_VCN_IP_ADDRESS'

DBMS_CLOUD_OCI_FUSION_APPS_RULE_T Type

An object that represents an action to apply to a listener.

Syntax

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

Fields

Field Description

action

(required) Rule type

Allowed values are: 'ALLOW'

DBMS_CLOUD_OCI_FUSION_APPS_RULE_CONDITION_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_rule_condition_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_rule_condition_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_rule_condition_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_ALLOW_RULE_T Type

An object that represents the action of configuring an access control rule. Access control rules permit access to application resources based on user-specified match conditions. This rule applies only to HTTP listeners. **NOTES:** * If you do not specify any access control rules, the default rule is to allow all traffic. * If you add access control rules, the load balancer denies any traffic that does not match the rules. * Maximum of two match conditions can be specified in a rule. * You can specify this rule only with the following `RuleCondition` combinations: * `SOURCE_IP_ADDRESS` * `SOURCE_VCN_ID` * `SOURCE_VCN_ID\", \"SOURCE_VCN_IP_ADDRESS`

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_allow_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fusion_apps_rule_t (
  conditions dbms_cloud_oci_fusion_apps_rule_condition_tbl,
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_allow_rule_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_allow_rule_t (
    action varchar2,
    conditions dbms_cloud_oci_fusion_apps_rule_condition_tbl,
    description varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fusion_apps_allow_rule_t is a subtype of the dbms_cloud_oci_fusion_apps_rule_t type.

Fields

Field Description

conditions

(required)

description

(optional) A brief description of the access control rule. Avoid entering confidential information. example: `192.168.0.0/16 and 2001:db8::/32 are trusted clients. Whitelist them.`

DBMS_CLOUD_OCI_FUSION_APPS_CAPABILITIES_T Type

Status of capabilities that can be enabled for an environment family.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_capabilities_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_data_masking_enabled number,
  is_break_glass_enabled number,
  is_byok_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_capabilities_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_capabilities_t (
    is_data_masking_enabled number,
    is_break_glass_enabled number,
    is_byok_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_data_masking_enabled

(optional) Indicates whether data masking is enabled for the environment family. When enabled, data masking activities are supported.

is_break_glass_enabled

(optional) Indicates whether Break Glass is enabled for the environment family.

is_byok_enabled

(optional) Indicates whether customers can use their own encryption keys.

DBMS_CLOUD_OCI_FUSION_APPS_CHANGE_FUSION_ENVIRONMENT_COMPARTMENT_DETAILS_T Type

Details about the compartment the Fusion environment should move to.

Syntax

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

Fields

Field Description

compartment_id

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

DBMS_CLOUD_OCI_FUSION_APPS_CHANGE_FUSION_ENVIRONMENT_FAMILY_COMPARTMENT_DETAILS_T Type

Details about the compartment the environment family should be moved to.

Syntax

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

Fields

Field Description

compartment_id

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

DBMS_CLOUD_OCI_FUSION_APPS_CREATE_DATA_MASKING_ACTIVITY_DETAILS_T Type

The information about current data masking request.

Syntax

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

Fields

Field Description

is_resume_data_masking

(optional) This allows the Data Safe service to resume the previously failed data masking activity.

DBMS_CLOUD_OCI_FUSION_APPS_CREATE_FUSION_ENVIRONMENT_ADMIN_USER_DETAILS_T Type

The credentials for the Fusion Applications service administrator.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_create_fusion_environment_admin_user_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  username varchar2(32767),
  password varchar2(32767),
  email_address varchar2(32767),
  first_name varchar2(32767),
  last_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_fusion_environment_admin_user_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_fusion_environment_admin_user_details_t (
    username varchar2,
    password varchar2,
    email_address varchar2,
    first_name varchar2,
    last_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

username

(required) The username for the administrator.

password

(required) The password for the administrator.

email_address

(required) The email address for the administrator.

first_name

(required) The administrator's first name.

last_name

(required) The administrator's last name.

DBMS_CLOUD_OCI_FUSION_APPS_MAINTENANCE_POLICY_T Type

The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.

Syntax

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

Fields

Field Description

monthly_patching_override

(optional) When \"ENABLED\", the Fusion environment is patched monthly. When \"DISABLED\", the Fusion environment is not patched monthly. This setting overrides the environment family setting. When not set, the environment follows the environment family policy.

Allowed values are: 'ENABLED', 'DISABLED', 'NONE'

environment_maintenance_override

(optional) User choice to upgrade both test and prod pods at the same time. Overrides fusion environment families'.

Allowed values are: 'PROD', 'NON_PROD', 'NONE'

DBMS_CLOUD_OCI_FUSION_APPS_RULE_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_rule_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_rule_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_CREATE_FUSION_ENVIRONMENT_DETAILS_T Type

The configuration details of the FusionEnvironment. For more information about these fields, see Managing Environments.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_create_fusion_environment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  maintenance_policy dbms_cloud_oci_fusion_apps_maintenance_policy_t,
  compartment_id varchar2(32767),
  fusion_environment_family_id varchar2(32767),
  fusion_environment_type varchar2(32767),
  kms_key_id varchar2(32767),
  dns_prefix varchar2(32767),
  additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
  rules dbms_cloud_oci_fusion_apps_rule_tbl,
  create_fusion_environment_admin_user_details dbms_cloud_oci_fusion_apps_create_fusion_environment_admin_user_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_fusion_environment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_fusion_environment_details_t (
    display_name varchar2,
    maintenance_policy dbms_cloud_oci_fusion_apps_maintenance_policy_t,
    compartment_id varchar2,
    fusion_environment_family_id varchar2,
    fusion_environment_type varchar2,
    kms_key_id varchar2,
    dns_prefix varchar2,
    additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
    rules dbms_cloud_oci_fusion_apps_rule_tbl,
    create_fusion_environment_admin_user_details dbms_cloud_oci_fusion_apps_create_fusion_environment_admin_user_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) FusionEnvironment Identifier can be renamed.

maintenance_policy

(optional)

compartment_id

(required) The unique identifier (OCID) of the compartment where the Fusion Environment is located.

fusion_environment_family_id

(required) The unique identifier (OCID) of the Fusion Environment Family that the Fusion Environment belongs to.

fusion_environment_type

(required) The type of environment. Valid values are Production, Test, or Development.

kms_key_id

(optional) byok kms keyId

dns_prefix

(optional) DNS prefix.

additional_language_packs

(optional) Language packs.

rules

(optional) Rules.

create_fusion_environment_admin_user_details

(required)

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_FAMILY_MAINTENANCE_POLICY_T Type

The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_family_maintenance_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
  quarterly_upgrade_begin_times varchar2(32767),
  is_monthly_patching_enabled number,
  concurrent_maintenance varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_family_maintenance_policy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_family_maintenance_policy_t (
    quarterly_upgrade_begin_times varchar2,
    is_monthly_patching_enabled number,
    concurrent_maintenance varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

quarterly_upgrade_begin_times

(optional) The quarterly maintenance month group schedule of the Fusion environment family.

is_monthly_patching_enabled

(optional) When True, monthly patching is enabled for the environment family.

concurrent_maintenance

(optional) Option to upgrade both production and non-production environments at the same time. When set to PROD both types of environnments are upgraded on the production schedule. When set to NON_PROD both types of environments are upgraded on the non-production schedule.

Allowed values are: 'PROD', 'NON_PROD', 'DISABLED'

DBMS_CLOUD_OCI_FUSION_APPS_CREATE_FUSION_ENVIRONMENT_FAMILY_DETAILS_T Type

The information about new FusionEnvironmentFamily.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_create_fusion_environment_family_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  family_maintenance_policy dbms_cloud_oci_fusion_apps_family_maintenance_policy_t,
  compartment_id varchar2(32767),
  subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_fusion_environment_family_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_fusion_environment_family_details_t (
    display_name varchar2,
    family_maintenance_policy dbms_cloud_oci_fusion_apps_family_maintenance_policy_t,
    compartment_id varchar2,
    subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.

family_maintenance_policy

(optional)

compartment_id

(required) The OCID of the compartment where the environment family is located.

subscription_ids

(required) The list of the IDs of the applications subscriptions that are associated with the environment family.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_CREATE_REFRESH_ACTIVITY_DETAILS_T Type

The information about current refresh.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_create_refresh_activity_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_fusion_environment_id varchar2(32767),
  time_scheduled_start timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_refresh_activity_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_create_refresh_activity_details_t (
    source_fusion_environment_id varchar2,
    time_scheduled_start timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_fusion_environment_id

(required) The OCID of the source environment

time_scheduled_start

(optional) Current time the refresh activity is scheduled to start. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_FUSION_APPS_CREATE_SERVICE_ATTACHMENT_DETAILS_T Type

Information about the service attachment to be created.

Syntax

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

Fields

Field Description

service_instance_type

(required) Type of the ServiceInstance being attached.

service_instance_id

(required) The service instance OCID of the instance being attached

DBMS_CLOUD_OCI_FUSION_APPS_DATA_MASKING_ACTIVITY_T Type

Details of data masking activity.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_data_masking_activity_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  fusion_environment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  time_masking_start timestamp with time zone,
  time_masking_finish timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_data_masking_activity_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_data_masking_activity_t (
    id varchar2,
    fusion_environment_id varchar2,
    lifecycle_state varchar2,
    time_masking_start timestamp with time zone,
    time_masking_finish timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

fusion_environment_id

(required) Fusion Environment Identifier.

lifecycle_state

(required) The current state of the DataMaskingActivity.

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

time_masking_start

(required) The time the data masking activity started. An RFC3339 formatted datetime string.

time_masking_finish

(required) The time the data masking activity ended. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_FUSION_APPS_DATA_MASKING_ACTIVITY_SUMMARY_T Type

Summary of the data masking activity.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_data_masking_activity_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  lifecycle_state varchar2(32767),
  time_masking_start timestamp with time zone,
  time_masking_finish timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_data_masking_activity_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_data_masking_activity_summary_t (
    id varchar2,
    lifecycle_state varchar2,
    time_masking_start timestamp with time zone,
    time_masking_finish timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

lifecycle_state

(required) The current state of the data masking activity Scheduled, In progress , Failed, Completed

time_masking_start

(required) The time the data masking activity started. An RFC3339 formatted datetime string.

time_masking_finish

(required) The time the data masking activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_FUSION_APPS_DATA_MASKING_ACTIVITY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_data_masking_activity_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_data_masking_activity_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_data_masking_activity_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_DATA_MASKING_ACTIVITY_COLLECTION_T Type

Results of data masking activities on a given Fusion Environment.

Syntax

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

Fields

Field Description

items

(required) A page of data masking activity objects.

DBMS_CLOUD_OCI_FUSION_APPS_ENVIRONMENT_ROLE_T Type

Describes the role of the FA Environment.

Syntax

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

Fields

Field Description

current_role

(optional) The current role of the environment

Allowed values are: 'PRIMARY', 'STANDBY'

standby_environment_region

(optional) Region the standby environment is in

standby_environment_id

(optional) Fusion Environment ID of the standby environment

DBMS_CLOUD_OCI_FUSION_APPS_ERROR_T Type

Error Information.

Syntax

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

Fields

Field Description

code

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

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_FUSION_APPS_QUARTERLY_UPGRADE_BEGIN_TIMES_T Type

Determines the quarterly upgrade begin times (monthly maintenance group schedule ) of the Fusion environment.

Syntax

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

Fields

Field Description

override_type

(optional) Determines if the maintenance schedule of the Fusion environment is inherited from the Fusion environment family.

Allowed values are: 'OVERRIDDEN', 'INHERITED'

begin_times_value

(optional) The frequency and month when maintenance occurs for the Fusion environment.

DBMS_CLOUD_OCI_FUSION_APPS_GET_MAINTENANCE_POLICY_DETAILS_T Type

The policy that specifies the maintenance and upgrade preferences for an environment. For more information about the options, see Understanding Environment Maintenance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_get_maintenance_policy_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  quarterly_upgrade_begin_times dbms_cloud_oci_fusion_apps_quarterly_upgrade_begin_times_t,
  monthly_patching_override varchar2(32767),
  environment_maintenance_override varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_get_maintenance_policy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_get_maintenance_policy_details_t (
    quarterly_upgrade_begin_times dbms_cloud_oci_fusion_apps_quarterly_upgrade_begin_times_t,
    monthly_patching_override varchar2,
    environment_maintenance_override varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

quarterly_upgrade_begin_times

(optional)

monthly_patching_override

(optional) Whether the Fusion environment will be updated monthly or updated on the quarterly cycle. This setting overrides the monthly patching setting of its Fusion environment family.

environment_maintenance_override

(optional) User choice to upgrade both production and non-production environments at the same time. Overrides the Fusion environment family setting.

DBMS_CLOUD_OCI_FUSION_APPS_REFRESH_DETAILS_T Type

Describes a refresh of a fusion environment

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_refresh_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_fusion_environment_id varchar2(32767),
  time_finished timestamp with time zone,
  time_of_restoration_point timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_refresh_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_refresh_details_t (
    source_fusion_environment_id varchar2,
    time_finished timestamp with time zone,
    time_of_restoration_point timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_fusion_environment_id

(required) The source environment id for the last refresh

time_finished

(required) The time of when the last refresh finish

time_of_restoration_point

(required) The point of time of the latest DB backup for the last refresh

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_T Type

Description of FusionEnvironment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_fusion_environment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  maintenance_policy dbms_cloud_oci_fusion_apps_get_maintenance_policy_details_t,
  time_upcoming_maintenance timestamp with time zone,
  compartment_id varchar2(32767),
  fusion_environment_family_id varchar2(32767),
  subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
  fusion_environment_type varchar2(32767),
  kms_key_id varchar2(32767),
  kms_key_info json_element_t,
  domain_id varchar2(32767),
  idcs_domain_url varchar2(32767),
  applied_patch_bundles dbms_cloud_oci_fusion_apps_varchar2_tbl,
  version varchar2(32767),
  public_url varchar2(32767),
  dns_prefix varchar2(32767),
  additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
  lockbox_id varchar2(32767),
  is_break_glass_enabled number,
  refresh dbms_cloud_oci_fusion_apps_refresh_details_t,
  rules dbms_cloud_oci_fusion_apps_rule_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  system_name varchar2(32767),
  environment_role dbms_cloud_oci_fusion_apps_environment_role_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_t (
    id varchar2,
    display_name varchar2,
    maintenance_policy dbms_cloud_oci_fusion_apps_get_maintenance_policy_details_t,
    time_upcoming_maintenance timestamp with time zone,
    compartment_id varchar2,
    fusion_environment_family_id varchar2,
    subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
    fusion_environment_type varchar2,
    kms_key_id varchar2,
    kms_key_info json_element_t,
    domain_id varchar2,
    idcs_domain_url varchar2,
    applied_patch_bundles dbms_cloud_oci_fusion_apps_varchar2_tbl,
    version varchar2,
    public_url varchar2,
    dns_prefix varchar2,
    additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
    lockbox_id varchar2,
    is_break_glass_enabled number,
    refresh dbms_cloud_oci_fusion_apps_refresh_details_t,
    rules dbms_cloud_oci_fusion_apps_rule_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    system_name varchar2,
    environment_role dbms_cloud_oci_fusion_apps_environment_role_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation

display_name

(required) FusionEnvironment Identifier, can be renamed

maintenance_policy

(optional)

time_upcoming_maintenance

(optional) The next maintenance for this environment

compartment_id

(required) Compartment Identifier

fusion_environment_family_id

(optional) FusionEnvironmentFamily Identifier

subscription_ids

(optional) List of subscription IDs.

fusion_environment_type

(required) Type of the FusionEnvironment.

Allowed values are: 'PRODUCTION', 'TEST', 'DEVELOPMENT'

kms_key_id

(optional) BYOK key id

kms_key_info

(optional) BYOK key info

domain_id

(optional) The IDCS domain created for the fusion instance

idcs_domain_url

(optional) The IDCS Domain URL

applied_patch_bundles

(optional) Patch bundle names

version

(optional) Version of Fusion Apps used by this environment

public_url

(optional) Public URL

dns_prefix

(optional) DNS prefix

additional_language_packs

(optional) Language packs

lockbox_id

(optional) The lockbox Id of this fusion environment. If there's no lockbox id, this field will be null

is_break_glass_enabled

(optional) If it's true, then the Break Glass feature is enabled

refresh

(optional)

rules

(optional) Network Access Control Rules

time_created

(optional) The time the the FusionEnvironment was created. An RFC3339 formatted datetime string

time_updated

(optional) The time the FusionEnvironment was updated. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the ServiceInstance.

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

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

system_name

(optional) Environment Specific Guid/ System Name

environment_role

(optional)

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_SUMMARY_T Type

Summary of the internal FA Environment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_fusion_environment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  time_upcoming_maintenance timestamp with time zone,
  maintenance_policy dbms_cloud_oci_fusion_apps_get_maintenance_policy_details_t,
  compartment_id varchar2(32767),
  fusion_environment_family_id varchar2(32767),
  subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
  applied_patch_bundles dbms_cloud_oci_fusion_apps_varchar2_tbl,
  fusion_environment_type varchar2(32767),
  version varchar2(32767),
  public_url varchar2(32767),
  dns_prefix varchar2(32767),
  additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
  lockbox_id varchar2(32767),
  is_break_glass_enabled number,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_summary_t (
    id varchar2,
    display_name varchar2,
    time_upcoming_maintenance timestamp with time zone,
    maintenance_policy dbms_cloud_oci_fusion_apps_get_maintenance_policy_details_t,
    compartment_id varchar2,
    fusion_environment_family_id varchar2,
    subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
    applied_patch_bundles dbms_cloud_oci_fusion_apps_varchar2_tbl,
    fusion_environment_type varchar2,
    version varchar2,
    public_url varchar2,
    dns_prefix varchar2,
    additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
    lockbox_id varchar2,
    is_break_glass_enabled number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation

display_name

(required) FusionEnvironment Identifier, can be renamed

time_upcoming_maintenance

(optional) The next maintenance for this environment

maintenance_policy

(optional)

compartment_id

(required) Compartment Identifier

fusion_environment_family_id

(optional) FusionEnvironmentFamily Identifier

subscription_ids

(optional) List of subscription IDs.

applied_patch_bundles

(optional) Patch bundle names

fusion_environment_type

(required) Type of the FusionEnvironment.

version

(optional) Version of Fusion Apps used by this environment

public_url

(optional) Public URL

dns_prefix

(optional) DNS prefix

additional_language_packs

(optional) Language packs

lockbox_id

(optional) The lockbox Id of this fusion environment. If there's no lockbox id, this field will be null

is_break_glass_enabled

(optional) If it's true, then the Break Glass feature is enabled

time_created

(optional) The time the the FusionEnvironment was created. An RFC3339 formatted datetime string

time_updated

(optional) The time the FusionEnvironment was updated. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the FusionEnvironment.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_fusion_environment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_fusion_environment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_fusion_environment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_COLLECTION_T Type

Results of a fusion environment search.

Syntax

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

Fields

Field Description

items

(required) A page of FusionEnvironmentSummary objects.

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_FAMILY_T Type

Details of a Fusion environment family. An environment family is a logical grouping of environments. The environment family defines a set of characteristics that are shared across the environments to allow consistent management and maintenance across your production, test, and development environments. For more information, see Planning an Environment Family.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_fusion_environment_family_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  family_maintenance_policy dbms_cloud_oci_fusion_apps_family_maintenance_policy_t,
  compartment_id varchar2(32767),
  subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
  is_subscription_update_needed number,
  time_created timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  system_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_family_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_family_t (
    id varchar2,
    display_name varchar2,
    family_maintenance_policy dbms_cloud_oci_fusion_apps_family_maintenance_policy_t,
    compartment_id varchar2,
    subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
    is_subscription_update_needed number,
    time_created timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    system_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique identifier (OCID) of the environment family. Can't be changed after creation.

display_name

(required) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.

family_maintenance_policy

(optional)

compartment_id

(required) The OCID of the compartment where the environment family is located.

subscription_ids

(required) The list of the IDs of the applications subscriptions that are associated with the environment family.

is_subscription_update_needed

(optional) When set to True, a subscription update is required for the environment family.

time_created

(optional) The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the FusionEnvironmentFamily.

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

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

system_name

(optional) Environment Specific Guid/ System Name

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_FAMILY_SUMMARY_T Type

Summary information for a Fusion environment family.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_fusion_environment_family_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  family_maintenance_policy dbms_cloud_oci_fusion_apps_family_maintenance_policy_t,
  compartment_id varchar2(32767),
  subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
  is_subscription_update_needed number,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_family_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_family_summary_t (
    id varchar2,
    display_name varchar2,
    family_maintenance_policy dbms_cloud_oci_fusion_apps_family_maintenance_policy_t,
    compartment_id varchar2,
    subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
    is_subscription_update_needed number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique identifier (OCID) of the environment family. Can't be changed after creation.

display_name

(required) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.

family_maintenance_policy

(optional)

compartment_id

(required) The OCID of the compartment where the environment family is located.

subscription_ids

(required) The list of the IDs of the applications subscriptions that are associated with the environment family.

is_subscription_update_needed

(optional) When set to True, a subscription update is required for the environment family.

time_created

(optional) The time the the FusionEnvironmentFamily was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the FusionEnvironmentFamily was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the FusionEnvironmentFamily.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_FAMILY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_fusion_environment_family_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_fusion_environment_family_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_fusion_environment_family_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_FAMILY_COLLECTION_T Type

Results of a Fusion environment family search.

Syntax

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

Fields

Field Description

items

(required) A page of FusionEnvironmentFamilySummary objects.

DBMS_CLOUD_OCI_FUSION_APPS_LIMIT_AND_USAGE_T Type

The limit and usage for a specific environment type, for example, production, development, or test.

Syntax

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

Fields

Field Description

limit

(required) The limit of current environment.

usage

(required) The usage of current environment.

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_FAMILY_LIMITS_AND_USAGE_T Type

Details of EnvironmentLimits.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_fusion_environment_family_limits_and_usage_t FORCE AUTHID CURRENT_USER IS OBJECT (
  production_limit_and_usage dbms_cloud_oci_fusion_apps_limit_and_usage_t,
  test_limit_and_usage dbms_cloud_oci_fusion_apps_limit_and_usage_t,
  development_limit_and_usage dbms_cloud_oci_fusion_apps_limit_and_usage_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_family_limits_and_usage_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_fusion_environment_family_limits_and_usage_t (
    production_limit_and_usage dbms_cloud_oci_fusion_apps_limit_and_usage_t,
    test_limit_and_usage dbms_cloud_oci_fusion_apps_limit_and_usage_t,
    development_limit_and_usage dbms_cloud_oci_fusion_apps_limit_and_usage_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

production_limit_and_usage

(required)

test_limit_and_usage

(required)

development_limit_and_usage

(required)

DBMS_CLOUD_OCI_FUSION_APPS_FUSION_ENVIRONMENT_STATUS_T Type

The health status of the Fusion Applications environment. For more information, see Environment Status.

Syntax

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

Fields

Field Description

status

(required) The data plane status of FusionEnvironment.

Allowed values are: 'AVAILABLE', 'UNAVAILABLE', 'NOT_APPLICABLE', 'MAINTENANCE_IN_PROGRESS', 'REFRESH_IN_PROGRESS', 'UNKNOWN'

DBMS_CLOUD_OCI_FUSION_APPS_KMS_KEY_INFO_T Type

kmsKeyInfo

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_kms_key_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
  active_key_id varchar2(32767),
  active_key_version varchar2(32767),
  scheduled_key_id varchar2(32767),
  scheduled_key_version varchar2(32767),
  current_key_lifecycle_state varchar2(32767),
  scheduled_lifecycle_state varchar2(32767),
  scheduled_key_status varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_kms_key_info_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_kms_key_info_t (
    active_key_id varchar2,
    active_key_version varchar2,
    scheduled_key_id varchar2,
    scheduled_key_version varchar2,
    current_key_lifecycle_state varchar2,
    scheduled_lifecycle_state varchar2,
    scheduled_key_status varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

active_key_id

(optional) current BYOK keyId facp is using

active_key_version

(optional) current key version facp is using

scheduled_key_id

(optional) scheduled keyId to be updated

scheduled_key_version

(optional) scheduled key version to be updated.

current_key_lifecycle_state

(optional) current key lifeCycleState

scheduled_lifecycle_state

(optional) scheduled key lifeCycle state to be updated.

scheduled_key_status

(optional) the scheduled key status

Allowed values are: 'SCHEDULING', 'UPDATING', 'FAILED', 'NONE'

DBMS_CLOUD_OCI_FUSION_APPS_PATCH_ACTION_T Type

Monthly patch details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_patch_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fusion_apps_action_t (
  l_mode varchar2(32767),
  category varchar2(32767),
  artifact varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_patch_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_patch_action_t (
    reference_key varchar2,
    action_type varchar2,
    state varchar2,
    description varchar2,
    l_mode varchar2,
    category varchar2,
    artifact varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fusion_apps_patch_action_t is a subtype of the dbms_cloud_oci_fusion_apps_action_t type.

Fields

Field Description

l_mode

(optional) A string that describeds whether the change is applied hot or cold

Allowed values are: 'HOT', 'COLD'

category

(optional) patch artifact category

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

artifact

(optional) patch bundle name

DBMS_CLOUD_OCI_FUSION_APPS_REFRESH_ISSUE_DETAILS_T Type

Details of refresh failure or validation failure that needs to be investigated.

Syntax

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

Fields

Field Description

refresh_issues

(optional) Detail reasons of refresh failure or validation failure that needs to be shown to customer.

DBMS_CLOUD_OCI_FUSION_APPS_REFRESH_ISSUE_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_refresh_issue_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_refresh_issue_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_refresh_issue_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_REFRESH_ACTIVITY_T Type

An environment refresh copies data from a source environment to a target environment, making a copy of the source environment onto the target environment. For more information, see Refreshing an Environment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_refresh_activity_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  source_fusion_environment_id varchar2(32767),
  time_of_restoration_point timestamp with time zone,
  lifecycle_state varchar2(32767),
  service_availability varchar2(32767),
  time_scheduled_start timestamp with time zone,
  time_expected_finish timestamp with time zone,
  time_finished timestamp with time zone,
  time_accepted timestamp with time zone,
  time_updated timestamp with time zone,
  refresh_issue_details_list dbms_cloud_oci_fusion_apps_refresh_issue_details_tbl,
  lifecycle_details varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_refresh_activity_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_refresh_activity_t (
    id varchar2,
    display_name varchar2,
    source_fusion_environment_id varchar2,
    time_of_restoration_point timestamp with time zone,
    lifecycle_state varchar2,
    service_availability varchar2,
    time_scheduled_start timestamp with time zone,
    time_expected_finish timestamp with time zone,
    time_finished timestamp with time zone,
    time_accepted timestamp with time zone,
    time_updated timestamp with time zone,
    refresh_issue_details_list dbms_cloud_oci_fusion_apps_refresh_issue_details_tbl,
    lifecycle_details varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique identifier (OCID) of the refresh activity. Can't be changed after creation.

display_name

(required) A friendly name for the refresh activity. Can be changed later.

source_fusion_environment_id

(required) The OCID of the Fusion environment that is the source environment for the refresh.

time_of_restoration_point

(optional) The date and time of the most recent source environment backup used for the environment refresh.

lifecycle_state

(required) The current state of the refreshActivity.

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

service_availability

(required) Service availability / impact during refresh activity execution up down

Allowed values are: 'AVAILABLE', 'UNAVAILABLE'

time_scheduled_start

(required) The time the refresh activity is scheduled to start. An RFC3339 formatted datetime string.

time_expected_finish

(required) The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.

time_finished

(optional) The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.

time_accepted

(optional) The time the refresh activity record was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the refresh activity record was updated. An RFC3339 formatted datetime string.

refresh_issue_details_list

(optional) Details of refresh investigation information, each item represents a different issue.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Allowed values are: 'NONE', 'ROLLBACKACCEPTED', 'ROLLBACKINPROGRESS', 'ROLLBACKSUCCEEDED', 'ROLLBACKFAILED'

DBMS_CLOUD_OCI_FUSION_APPS_REFRESH_ACTIVITY_SUMMARY_T Type

Summary of the refresh activity.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_refresh_activity_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  source_fusion_environment_id varchar2(32767),
  time_of_restoration_point timestamp with time zone,
  lifecycle_state varchar2(32767),
  time_scheduled_start timestamp with time zone,
  time_expected_finish timestamp with time zone,
  time_finished timestamp with time zone,
  service_availability varchar2(32767),
  time_accepted timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_details varchar2(32767),
  refresh_issue_details_list dbms_cloud_oci_fusion_apps_refresh_issue_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_refresh_activity_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_refresh_activity_summary_t (
    id varchar2,
    display_name varchar2,
    source_fusion_environment_id varchar2,
    time_of_restoration_point timestamp with time zone,
    lifecycle_state varchar2,
    time_scheduled_start timestamp with time zone,
    time_expected_finish timestamp with time zone,
    time_finished timestamp with time zone,
    service_availability varchar2,
    time_accepted timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_details varchar2,
    refresh_issue_details_list dbms_cloud_oci_fusion_apps_refresh_issue_details_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique identifier (OCID) of the refresh activity. Can't be changed after creation.

display_name

(required) A friendly name for the refresh activity. Can be changed later.

source_fusion_environment_id

(required) The OCID of the Fusion environment that is the source environment for the refresh.

time_of_restoration_point

(optional) The date and time of the most recent source environment backup used for the environment refresh.

lifecycle_state

(required) The current state of the refresh activity. Valid values are Scheduled, In progress , Failed, Completed.

time_scheduled_start

(required) The time the refresh activity is scheduled to start. An RFC3339 formatted datetime string.

time_expected_finish

(required) The time the refresh activity is scheduled to end. An RFC3339 formatted datetime string.

time_finished

(optional) The time the refresh activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.

service_availability

(required) Service availability / impact during refresh activity execution, up down

time_accepted

(optional) The time the refresh activity record was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the refresh activity record was updated. An RFC3339 formatted datetime string.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

refresh_issue_details_list

(optional) Details of refresh investigation information, each item represents a different issue.

DBMS_CLOUD_OCI_FUSION_APPS_REFRESH_ACTIVITY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_refresh_activity_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_refresh_activity_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_refresh_activity_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_REFRESH_ACTIVITY_COLLECTION_T Type

Results of a refresh activity search.

Syntax

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

Fields

Field Description

items

(required) A page of refresh activity objects.

DBMS_CLOUD_OCI_FUSION_APPS_RESET_FUSION_ENVIRONMENT_PASSWORD_DETAILS_T Type

IDM admin credentials

Syntax

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

Fields

Field Description

password

(required) Admin password

DBMS_CLOUD_OCI_FUSION_APPS_ACTION_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_action_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_action_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_action_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_SCHEDULED_ACTIVITY_T Type

Details of scheduled activity.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_scheduled_activity_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  run_cycle varchar2(32767),
  fusion_environment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  actions dbms_cloud_oci_fusion_apps_action_tbl,
  service_availability varchar2(32767),
  time_scheduled_start timestamp with time zone,
  time_expected_finish timestamp with time zone,
  time_finished timestamp with time zone,
  delay_in_hours number,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_details varchar2(32767),
  scheduled_activity_phase varchar2(32767),
  scheduled_activity_association_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_scheduled_activity_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_scheduled_activity_t (
    id varchar2,
    display_name varchar2,
    run_cycle varchar2,
    fusion_environment_id varchar2,
    lifecycle_state varchar2,
    actions dbms_cloud_oci_fusion_apps_action_tbl,
    service_availability varchar2,
    time_scheduled_start timestamp with time zone,
    time_expected_finish timestamp with time zone,
    time_finished timestamp with time zone,
    delay_in_hours number,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_details varchar2,
    scheduled_activity_phase varchar2,
    scheduled_activity_association_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) scheduled activity display name, can be renamed.

run_cycle

(required) run cadence.

Allowed values are: 'QUARTERLY', 'MONTHLY', 'ONEOFF', 'VERTEX'

fusion_environment_id

(required) FAaaS Environment Identifier.

lifecycle_state

(required) The current state of the scheduledActivity.

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

actions

(optional) List of actions

service_availability

(required) Service availability / impact during scheduled activity execution up down

Allowed values are: 'AVAILABLE', 'UNAVAILABLE'

time_scheduled_start

(required) Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.

time_expected_finish

(required) Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.

time_finished

(optional) The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.

delay_in_hours

(optional) Cumulative delay hours

time_created

(optional) The time the scheduled activity record was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the scheduled activity record was updated. An RFC3339 formatted datetime string.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Allowed values are: 'NONE', 'ROLLBACKACCEPTED', 'ROLLBACKINPROGRESS', 'ROLLBACKSUCCEEDED', 'ROLLBACKFAILED'

scheduled_activity_phase

(required) A property describing the phase of the scheduled activity.

Allowed values are: 'PRE_MAINTENANCE', 'MAINTENANCE', 'POST_MAINTENANCE'

scheduled_activity_association_id

(required) The unique identifier that associates a scheduled activity with others in one complete maintenance. For example, with ZDT, a complete upgrade maintenance includes 5 scheduled activities - PREPARE, EXECUTE, POST, PRE_MAINTENANCE, and POST_MAINTENANCE. All of them share the same unique identifier - scheduledActivityAssociationId.

DBMS_CLOUD_OCI_FUSION_APPS_SCHEDULED_ACTIVITY_SUMMARY_T Type

Summary of the scheduled activity for a Fusion environment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_scheduled_activity_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  run_cycle varchar2(32767),
  fusion_environment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  actions dbms_cloud_oci_fusion_apps_action_tbl,
  time_scheduled_start timestamp with time zone,
  time_expected_finish timestamp with time zone,
  time_finished timestamp with time zone,
  delay_in_hours number,
  service_availability varchar2(32767),
  time_accepted timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_details varchar2(32767),
  scheduled_activity_phase varchar2(32767),
  scheduled_activity_association_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_scheduled_activity_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_scheduled_activity_summary_t (
    id varchar2,
    display_name varchar2,
    run_cycle varchar2,
    fusion_environment_id varchar2,
    lifecycle_state varchar2,
    actions dbms_cloud_oci_fusion_apps_action_tbl,
    time_scheduled_start timestamp with time zone,
    time_expected_finish timestamp with time zone,
    time_finished timestamp with time zone,
    delay_in_hours number,
    service_availability varchar2,
    time_accepted timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_details varchar2,
    scheduled_activity_phase varchar2,
    scheduled_activity_association_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(required) A friendly name for the scheduled activity. Can be changed later.

run_cycle

(required) The run cadence of this scheduled activity. Valid values are Quarterly, Monthly, OneOff, and Vertex.

fusion_environment_id

(required) The OCID of the Fusion environment for the scheduled activity.

lifecycle_state

(required) The current state of the scheduled activity. Valid values are Scheduled, In progress , Failed, Completed.

actions

(optional) List of actions

time_scheduled_start

(required) Current time the scheduled activity is scheduled to start. An RFC3339 formatted datetime string.

time_expected_finish

(required) Current time the scheduled activity is scheduled to end. An RFC3339 formatted datetime string.

time_finished

(optional) The time the scheduled activity actually completed / cancelled / failed. An RFC3339 formatted datetime string.

delay_in_hours

(optional) Cumulative delay hours

service_availability

(required) Service availability / impact during scheduled activity execution, up down

time_accepted

(optional) The time the scheduled activity record was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the scheduled activity record was updated. An RFC3339 formatted datetime string.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

scheduled_activity_phase

(required) A property describing the phase of the scheduled activity.

scheduled_activity_association_id

(required) The unique identifier that associates a scheduled activity with others in one complete maintenance. For example, with ZDT, a complete upgrade maintenance includes 5 scheduled activities - PREPARE, EXECUTE, POST, PRE_MAINTENANCE, and POST_MAINTENANCE. All of them share the same unique identifier - scheduledActivityAssociationId.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_SCHEDULED_ACTIVITY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_scheduled_activity_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_scheduled_activity_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_scheduled_activity_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_SCHEDULED_ACTIVITY_COLLECTION_T Type

Results of a scheduled activity search.

Syntax

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

Fields

Field Description

items

(required) A page of scheduled activity objects.

DBMS_CLOUD_OCI_FUSION_APPS_SERVICE_ATTACHMENT_T Type

Description of ServiceAttachment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_service_attachment_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  service_instance_id varchar2(32767),
  display_name varchar2(32767),
  service_instance_type varchar2(32767),
  service_url varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  is_sku_based number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_service_attachment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_service_attachment_t (
    id varchar2,
    compartment_id varchar2,
    service_instance_id varchar2,
    display_name varchar2,
    service_instance_type varchar2,
    service_url varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    is_sku_based number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation

compartment_id

(optional) Compartment Identifier

service_instance_id

(optional) The ID of the service instance created that can be used to identify this on the service control plane

display_name

(required) Service Attachment Display name, can be renamed

service_instance_type

(required) Type of the serviceInstance.

Allowed values are: 'DIGITAL_ASSISTANT', 'INTEGRATION_CLOUD', 'ANALYTICS_WAREHOUSE', 'VBCS', 'VISUAL_BUILDER_STUDIO'

service_url

(optional) Public URL

time_created

(optional) The time the the ServiceInstance was created. An RFC3339 formatted datetime string

time_updated

(optional) The time the ServiceInstance was updated. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the ServiceInstance.

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

is_sku_based

(required) Whether this service is provisioned due to the customer being subscribed to a specific SKU

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_SERVICE_ATTACHMENT_SUMMARY_T Type

Summary of the ServiceInstance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_service_attachment_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  service_instance_type varchar2(32767),
  service_instance_id varchar2(32767),
  service_url varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  is_sku_based number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_service_attachment_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_service_attachment_summary_t (
    id varchar2,
    display_name varchar2,
    service_instance_type varchar2,
    service_instance_id varchar2,
    service_url varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    is_sku_based number,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation

display_name

(required) ServiceInstance Identifier, can be renamed

service_instance_type

(required) Type of the service.

service_instance_id

(optional) The ID of the service instance created that can be used to identify this on the service control plane

service_url

(optional) Service URL of the instance

time_created

(optional) The time the service instance was created. An RFC3339 formatted datetime string

time_updated

(optional) The time the serivce instance was updated. An RFC3339 formatted datetime string

lifecycle_state

(required) The current state of the ServiceInstance.

lifecycle_details

(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

is_sku_based

(required) Whether this service is provisioned due to the customer being subscribed to a specific SKU

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_SERVICE_ATTACHMENT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_service_attachment_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_service_attachment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_service_attachment_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_SERVICE_ATTACHMENT_COLLECTION_T Type

List of service attachments for a fusion instance.

Syntax

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

Fields

Field Description

items

(required) A page of FusionEnvironmentFamilySummary objects.

DBMS_CLOUD_OCI_FUSION_APPS_SOURCE_IP_ADDRESS_CONDITION_T Type

An access control rule condition that requires a match on the specified source IP address or address range.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_source_ip_address_condition_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fusion_apps_rule_condition_t (
  attribute_value varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_source_ip_address_condition_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_source_ip_address_condition_t (
    attribute_name varchar2,
    attribute_value varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fusion_apps_source_ip_address_condition_t is a subtype of the dbms_cloud_oci_fusion_apps_rule_condition_t type.

Fields

Field Description

attribute_value

(required) An IPv4 or IPv6 address range that the source IP address of an incoming packet must match. The service accepts only classless inter-domain routing (CIDR) format (x.x.x.x/y or x:x::x/y) strings. Specify 0.0.0.0/0 or ::/0 to match all incoming traffic. example: \"192.168.0.0/16\"

DBMS_CLOUD_OCI_FUSION_APPS_SOURCE_VCN_ID_CONDITION_T Type

An access control rule condition that requires a match on the specified source VCN OCID.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_source_vcn_id_condition_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fusion_apps_rule_condition_t (
  attribute_value varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_source_vcn_id_condition_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_source_vcn_id_condition_t (
    attribute_name varchar2,
    attribute_value varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fusion_apps_source_vcn_id_condition_t is a subtype of the dbms_cloud_oci_fusion_apps_rule_condition_t type.

Fields

Field Description

attribute_value

(required) The OCID of the originating VCN that an incoming packet must match. You can use this condition in conjunction with `SourceVcnIpAddressCondition`. **NOTE:** If you define this condition for a rule without a `SourceVcnIpAddressCondition`, this condition matches all incoming traffic in the specified VCN.

DBMS_CLOUD_OCI_FUSION_APPS_SOURCE_VCN_IP_ADDRESS_CONDITION_T Type

An access control rule condition that requires a match on the specified source VCN and IP address range. This condition must be used only in conjunction with `SourceVcnIdCondition`.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_source_vcn_ip_address_condition_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fusion_apps_rule_condition_t (
  attribute_value varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_source_vcn_ip_address_condition_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_source_vcn_ip_address_condition_t (
    attribute_name varchar2,
    attribute_value varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fusion_apps_source_vcn_ip_address_condition_t is a subtype of the dbms_cloud_oci_fusion_apps_rule_condition_t type.

Fields

Field Description

attribute_value

(required) An IPv4 address range that the original client IP address (in the context of the specified VCN) of an incoming packet must match. The service accepts only classless inter-domain routing (CIDR) format (x.x.x.x/y) strings. Specify 0.0.0.0/0 to match all incoming traffic in the customer VCN.

DBMS_CLOUD_OCI_FUSION_APPS_SUBSCRIPTION_SKU_T Type

SKU information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_subscription_sku_t FORCE AUTHID CURRENT_USER IS OBJECT (
  sku varchar2(32767),
  license_part_description varchar2(32767),
  metric_name varchar2(32767),
  quantity number,
  description varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_subscription_sku_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_subscription_sku_t (
    sku varchar2,
    license_part_description varchar2,
    metric_name varchar2,
    quantity number,
    description varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

sku

(required) Stock keeping unit id.

license_part_description

(optional) Description of the covered product belonging to this Sku.

metric_name

(optional) Base metric for billing the service.

quantity

(required) Quantity of the stock units.

description

(optional) Description of the stock units.

DBMS_CLOUD_OCI_FUSION_APPS_SUBSCRIPTION_SKU_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_subscription_sku_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_subscription_sku_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_subscription_sku_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_SUBSCRIPTION_T Type

Subscription information for compartmentId. Only root compartments are allowed.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_subscription_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  classic_subscription_id varchar2(32767),
  service_name varchar2(32767),
  skus dbms_cloud_oci_fusion_apps_subscription_sku_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_subscription_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_subscription_t (
    id varchar2,
    classic_subscription_id varchar2,
    service_name varchar2,
    skus dbms_cloud_oci_fusion_apps_subscription_sku_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) OCID of the subscription details for particular root compartment or tenancy.

classic_subscription_id

(required) Subscription id.

service_name

(required) The type of subscription, such as 'CLOUDCM'/'SAAS'/'CRM', etc.

skus

(required) Stock keeping unit.

DBMS_CLOUD_OCI_FUSION_APPS_SUBSCRIPTION_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_subscription_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_subscription_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_subscription_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_SUBSCRIPTION_DETAIL_T Type

Detail for the FusionEnvironmentFamily subscription.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_subscription_detail_t FORCE AUTHID CURRENT_USER IS OBJECT (
  subscriptions dbms_cloud_oci_fusion_apps_subscription_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_subscription_detail_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_subscription_detail_t (
    subscriptions dbms_cloud_oci_fusion_apps_subscription_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

subscriptions

(required) List of subscriptions.

DBMS_CLOUD_OCI_FUSION_APPS_TIME_AVAILABLE_FOR_REFRESH_T Type

one available refresh time.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_time_available_for_refresh_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_available_for_refresh timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_time_available_for_refresh_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_time_available_for_refresh_t (
    time_available_for_refresh timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_available_for_refresh

(required) refresh time.

DBMS_CLOUD_OCI_FUSION_APPS_TIME_AVAILABLE_FOR_REFRESH_SUMMARY_T Type

one available refresh time.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_time_available_for_refresh_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_available_for_refresh timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_time_available_for_refresh_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_time_available_for_refresh_summary_t (
    time_available_for_refresh timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_available_for_refresh

(required) refresh time.

DBMS_CLOUD_OCI_FUSION_APPS_TIME_AVAILABLE_FOR_REFRESH_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_time_available_for_refresh_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_time_available_for_refresh_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_time_available_for_refresh_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_TIME_AVAILABLE_FOR_REFRESH_COLLECTION_T Type

The available refresh times for a fusion environment

Syntax

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

Fields

Field Description

items

(required) A list of available refresh time objects.

DBMS_CLOUD_OCI_FUSION_APPS_UPDATE_FAMILY_MAINTENANCE_POLICY_DETAILS_T Type

The editable settings of the policy that specifies the maintenance and upgrade preferences for an environment.

Syntax

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

Fields

Field Description

is_monthly_patching_enabled

(optional) Whether the Fusion environment receives monthly patching.

concurrent_maintenance

(optional) Whether production and non-production environments are upgraded concurrently.

DBMS_CLOUD_OCI_FUSION_APPS_UPDATE_FUSION_ENVIRONMENT_DETAILS_T Type

The information to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_update_fusion_environment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  kms_key_id varchar2(32767),
  maintenance_policy dbms_cloud_oci_fusion_apps_maintenance_policy_t,
  additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
  rules dbms_cloud_oci_fusion_apps_rule_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_update_fusion_environment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_update_fusion_environment_details_t (
    display_name varchar2,
    kms_key_id varchar2,
    maintenance_policy dbms_cloud_oci_fusion_apps_maintenance_policy_t,
    additional_language_packs dbms_cloud_oci_fusion_apps_varchar2_tbl,
    rules dbms_cloud_oci_fusion_apps_rule_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) FusionEnvironment Identifier, can be renamed

kms_key_id

(optional) byok kms keyId

maintenance_policy

(optional)

additional_language_packs

(optional) Language packs

rules

(optional) Network access control rules to limit internet traffic that can access the environment. For more information, see ALLOW_RULE Function.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_UPDATE_FUSION_ENVIRONMENT_FAMILY_DETAILS_T Type

The details of the Fusion environment family to be updated.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_update_fusion_environment_family_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  family_maintenance_policy dbms_cloud_oci_fusion_apps_update_family_maintenance_policy_details_t,
  subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_update_fusion_environment_family_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_update_fusion_environment_family_details_t (
    display_name varchar2,
    family_maintenance_policy dbms_cloud_oci_fusion_apps_update_family_maintenance_policy_details_t,
    subscription_ids dbms_cloud_oci_fusion_apps_varchar2_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A friendly name for the environment family. The name must contain only letters, numbers, dashes, and underscores. Can be changed later.

family_maintenance_policy

(optional)

subscription_ids

(optional) The list of the IDs of the applications subscriptions that are associated with the environment family.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_FUSION_APPS_UPDATE_REFRESH_ACTIVITY_DETAILS_T Type

The information about scheduled refresh.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_update_refresh_activity_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  time_scheduled_start timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_update_refresh_activity_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_update_refresh_activity_details_t (
    time_scheduled_start timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

time_scheduled_start

(optional) Time the refresh activity is scheduled to start. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_FUSION_APPS_UPGRADE_ACTION_T Type

Quarterly upgrade details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_upgrade_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fusion_apps_action_t (
  version varchar2(32767),
  qualifier varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_upgrade_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_upgrade_action_t (
    reference_key varchar2,
    action_type varchar2,
    state varchar2,
    description varchar2,
    version varchar2,
    qualifier varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fusion_apps_upgrade_action_t is a subtype of the dbms_cloud_oci_fusion_apps_action_t type.

Fields

Field Description

version

(optional) name of the repo

qualifier

(optional) month qualifier

DBMS_CLOUD_OCI_FUSION_APPS_VERIFY_SERVICE_ATTACHMENT_DETAILS_T Type

Information about the service attachment to be verified.

Syntax

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

Fields

Field Description

service_instance_type

(required) Type of the ServiceInstance being attached.

service_instance_id

(required) The service instance OCID of the instance being attached

DBMS_CLOUD_OCI_FUSION_APPS_VERTEX_ACTION_T Type

Vertex update action

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_vertex_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fusion_apps_action_t (
  artifact varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_vertex_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_vertex_action_t (
    reference_key varchar2,
    action_type varchar2,
    state varchar2,
    description varchar2,
    artifact varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fusion_apps_vertex_action_t is a subtype of the dbms_cloud_oci_fusion_apps_action_t type.

Fields

Field Description

artifact

(optional) patch that delivered the vertex update prerequisite

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_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_fusion_apps_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

entity_type

(required) The resource type the work request affects.

action_type

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

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

identifier

(required) The identifier of the resource the work request affects.

entity_uri

(optional) The URI path that the user can do a GET on to access the resource metadata

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_T Type

A description of workrequest status

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_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_fusion_apps_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_fusion_apps_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) Possible operation types.

Allowed values are: 'CREATE_FUSION_ENVIRONMENT', 'UPDATE_FUSION_ENVIRONMENT', 'RESET_FUSION_ENVIRONMENT_ADMIN_PASSWORD', 'SCALE_FUSION_ENVIRONMENT', 'ARCHIVE_FUSION_ENVIRONMENT', 'RESTORE_FUSION_ENVIRONMENT', 'CREATE_SERVICE_INSTANCE', 'UPDATE_SERVICE_INSTANCE', 'DETACH_SERVICE_INSTANCE', 'ADD_USER', 'REMOVE_USER', 'DELETE_FUSION_ENVIRONMENT', 'CHANGE_FUSION_ENVIRONMENT_COMPARTMENT', 'UPGRADE_FUSION_ENVIRONMENT', 'CREATE_FUSION_ENVIRONMENT_FAMILY', 'DELETE_FUSION_ENVIRONMENT_FAMILY', 'UPDATE_FUSION_ENVIRONMENT_FAMILY', 'CHANGE_FUSION_ENVIRONMENT_FAMILY_COMPARTMENT', 'REFRESH_FUSION_ENVIRONMENT', 'EXECUTE_COLD_PATCH', 'DATA_MASK_FUSION_ENVIRONMENT'

status

(required) Possible operation status.

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

id

(required) The id of the work request.

compartment_id

(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

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

time_started

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

time_finished

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

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_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_fusion_apps_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_work_request_error_t (
    code varchar2,
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

code

(required) A machine-usable code for the error that occured. Error codes are listed on (https://docs.us-phoenix-1.oraclecloud.com/Content/API/References/apierrors.htm)

message

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

l_timestamp

(required) The time the error occured. An RFC3339 formatted datetime string.

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_ERROR_COLLECTION_T Type

Results of a workRequestError search. Contains both WorkRequestError items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of workRequestError objects.

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_LOG_ENTRY_T Type

A log message from the execution of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_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_fusion_apps_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_work_request_log_entry_t (
    message varchar2,
    l_timestamp timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

message

(required) Human-readable log message.

l_timestamp

(required) The time the log message was written. An RFC3339 formatted datetime string

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

Results of a workRequestLog search. Contains both workRequestLog items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of workRequestLogEntries.

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_SUMMARY_T Type

A summary of the status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_work_request_summary_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_fusion_apps_work_request_resource_tbl,
  percent_complete number,
  time_accepted timestamp with time zone,
  time_started timestamp with time zone,
  time_finished timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fusion_apps_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_fusion_apps_work_request_resource_tbl,
    percent_complete number,
    time_accepted timestamp with time zone,
    time_started timestamp with time zone,
    time_finished timestamp with time zone
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) Possible operation types.

status

(required) Possible operation status.

id

(required) The id of the work request.

compartment_id

(required) The ocid of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used

resources

(required) The resources affected by this work request.

percent_complete

(required) Percentage of the request completed.

time_accepted

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

time_started

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

time_finished

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

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fusion_apps_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fusion_apps_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fusion_apps_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FUSION_APPS_WORK_REQUEST_SUMMARY_COLLECTION_T Type

Results of a workRequest search. Contains both WorkRequest items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of workRequestSummary objects.

Was this article helpful?