Fleet Software Update Common Types

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ACTIVE_CYCLE_DETAILS_T Type

Active Exadata Fleet Update Cycle resource for this Collection. Object would be null if there is no active Cycle.

Syntax

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

Fields

Field Description

id

(optional) OCID of the active Exadata Fleet Update Cycle resource.

display_name

(optional) Display name of the active Exadata Fleet Update Cycle resource.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_ENTRY_T Type

Details to specify a target to add or remove from a Exadata Fleet Update Collection.

Syntax

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

Fields

Field Description

entity_type

(required) Resource entity type

Allowed values are: 'DATABASE', 'VMCLUSTER', 'CLOUDVMCLUSTER'

identifier

(required) Resource identifier OCID

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_target_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_target_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_target_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ADD_FSU_COLLECTION_TARGETS_DETAILS_T Type

Add Targets to a Exadata Fleet Update Collection.

Syntax

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

Fields

Field Description

targets

(required) List of Targets to add into the Exadata Fleet Update Collection.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_SCHEDULE_DETAILS_T Type

Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails would execute the Exadata Fleet Update Action as soon as possible.

Syntax

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

Fields

Field Description

l_type

(required) Type of scheduling strategy to use for Fleet Patching Update Action execution.

Allowed values are: 'START_TIME'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_ACTION_PROGRESS_DETAILS_T Type

Progress of the Action in execution. If the Exadata Fleet Update Action has not started yet, this will be omitted.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  in_progress_targets number,
  completed_targets number,
  failed_targets number,
  waiting_targets number,
  total_targets number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t (
    in_progress_targets number,
    completed_targets number,
    failed_targets number,
    waiting_targets number,
    total_targets number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

in_progress_targets

(optional) Number of targets with jobs in progress.

completed_targets

(optional) Number of targets with completed jobs.

failed_targets

(optional) Number of targets with failed jobs.

waiting_targets

(optional) Number of targets with jobs waiting for batch to execute or for user to resume.

total_targets

(optional) Total number of targets impacted by Exadata Fleet Update Action.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_ACTION_T Type

Exadata Fleet Update Action resource details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_action_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_finished 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,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_action_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Action.

display_name

(optional) Exadata Fleet Update Action display name.

compartment_id

(required) Compartment Identifier.

l_type

(required) Type of Exadata Fleet Update Action.

Allowed values are: 'STAGE', 'PRECHECK', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

time_created

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

time_started

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

time_finished

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

time_updated

(optional) The date and time the Action was last updated, as described in RFC 3339, section 14.29.

lifecycle_state

(required) The current state of the Exadata Fleet Update Action.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'UPDATING', 'FAILED', 'NEEDS_ATTENTION', 'SUCCEEDED', 'CANCELING', 'CANCELED', 'UNKNOWN', 'DELETING', 'DELETED'

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\"}}`

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_APPLY_ACTION_T Type

Apply Exadata Fleet Update Action details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_apply_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_action_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_apply_action_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_ACTION_SUMMARY_T Type

Exadata Fleet Update Action summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_action_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_finished 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,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_action_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_action_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Action.

display_name

(optional) Exadata Fleet Update Action display name.

compartment_id

(required) Compartment Identifier.

l_type

(required) Type of Exadata Fleet Update Action.

Allowed values are: 'STAGE', 'PRECHECK', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

time_created

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

time_started

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

time_finished

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

time_updated

(optional) The date and time the Action was last updated, as described in RFC 3339, section 14.29.

lifecycle_state

(required) The current state of the Exadata Fleet Update Action.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'UPDATING', 'FAILED', 'NEEDS_ATTENTION', 'SUCCEEDED', 'CANCELING', 'CANCELED', 'UNKNOWN', 'DELETING', 'DELETED'

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\"}}`

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_APPLY_ACTION_SUMMARY_T Type

Apply Exadata Fleet Update Action summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_apply_action_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_summary_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_action_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_action_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_apply_action_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_summary_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_JOB_PROGRESS_DETAILS_T Type

Details about the Exadata Fleet Update Job progress.

Syntax

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

Fields

Field Description

progress_of_operation

(optional) Percentage of progress against the total to complete the operation.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_JOB_T Type

Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_job_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  l_type varchar2(32767),
  compartment_id varchar2(32767),
  fsu_action_id varchar2(32767),
  progress dbms_cloud_oci_fleet_software_update_job_progress_details_t,
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_updated timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_job_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_details_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Job.

display_name

(optional) Exadata Fleet Update Job display name.

l_type

(required) Exadata Fleet Update Job type.

Allowed values are: 'STAGE', 'PRECHECK', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

compartment_id

(required) Compartment Identifier, this will map to the owner Exadata Fleet Update Action resource.

fsu_action_id

(required) OCID of the Exadata Fleet Update Action that this job is part of.

progress

(optional)

time_created

(required) The time the Exadata Fleet Update Job was created. An RFC3339 formatted datetime string.

time_started

(optional) The time the Exadata Fleet Update Job started execution. An RFC3339 formatted datetime string.

time_updated

(optional) The time the Exadata Fleet Update Job was updated. An RFC3339 formatted datetime string.

time_finished

(optional) The time the Exadata Fleet Update Job completed execution. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the Exadata Fleet Update Job.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'UNKNOWN', 'TERMINATED', 'FAILED', 'NEEDS_ATTENTION', 'SUCCEEDED', 'WAITING', 'CANCELING', 'CANCELED'

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\"}}`

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_APPLY_FSU_JOB_T Type

Apply Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_apply_fsu_job_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_fsu_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_fsu_job_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_details_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_apply_fsu_job_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_t type.

Fields

Field Description

fsu_collection_id

(required) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(required) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_JOB_PROGRESS_T Type

Summary of progress for the Exadata Fleet Update Job.

Syntax

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

Fields

Field Description

progress_of_operation

(optional) Percentage of progress against the total to complete the operation.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_JOB_SUMMARY_T Type

Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_job_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  l_type varchar2(32767),
  compartment_id varchar2(32767),
  fsu_action_id varchar2(32767),
  progress dbms_cloud_oci_fleet_software_update_job_progress_t,
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_updated timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_job_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(optional) OCID identifier for the Exadata Fleet Update Job.

display_name

(optional) Exadata Fleet Update Job display name.

l_type

(required) Exadata Fleet Update Job type.

Allowed values are: 'STAGE', 'PRECHECK', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

compartment_id

(optional) Compartment Identifier, this will map to the owner Exadata Fleet Update Action resource.

fsu_action_id

(optional) OCID of the Exadata Fleet Update Action that this job is part of.

progress

(optional)

time_created

(optional) The time the Exadata Fleet Update Job was created. An RFC3339 formatted datetime string.

time_started

(optional) The time the Exadata Fleet Update Job started execution. An RFC3339 formatted datetime string.

time_updated

(optional) The time the Exadata Fleet Update Job was updated. An RFC3339 formatted datetime string.

time_finished

(optional) The time the Exadata Fleet Update Job completed execution. An RFC3339 formatted datetime string.

lifecycle_state

(optional) The current state of the Job.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'UNKNOWN', 'TERMINATED', 'FAILED', 'NEEDS_ATTENTION', 'SUCCEEDED', 'WAITING', 'CANCELING', 'CANCELED'

lifecycle_details

(optional) A message describing the current state in more detail.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_APPLY_FSU_JOB_SUMMARY_T Type

Summary of Apply Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_apply_fsu_job_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_summary_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_fsu_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_apply_fsu_job_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_apply_fsu_job_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_summary_t type.

Fields

Field Description

fsu_collection_id

(optional) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(optional) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_BATCHING_STRATEGY_DETAILS_T Type

Batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

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

Fields

Field Description

l_type

(optional) Supported batching strategies.

Allowed values are: 'SEQUENTIAL', 'FIFTY_FIFTY', 'SERVICE_AVAILABILITY_FACTOR', 'NON_ROLLING'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CHANGE_FSU_ACTION_COMPARTMENT_DETAILS_T Type

Compartment to move the Exadata Fleet Update Action to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_change_fsu_action_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_action_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_action_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_FLEET_SOFTWARE_UPDATE_CHANGE_FSU_COLLECTION_COMPARTMENT_DETAILS_T Type

Compartment to move the Exadata Fleet Update Collection to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_change_fsu_collection_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_collection_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_collection_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_FLEET_SOFTWARE_UPDATE_CHANGE_FSU_CYCLE_COMPARTMENT_DETAILS_T Type

Compartment to move the Exadata Fleet Update Cycle to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_change_fsu_cycle_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_cycle_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_cycle_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_FLEET_SOFTWARE_UPDATE_CHANGE_FSU_DISCOVERY_COMPARTMENT_DETAILS_T Type

Compartment to move the Exadata Fleet Update Discovery to.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_change_fsu_discovery_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_discovery_compartment_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_change_fsu_discovery_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_FLEET_SOFTWARE_UPDATE_CLEANUP_ACTION_T Type

Cleanup Exadata Fleet Update Action details. For a 'DB' Collection, Cleanup Action will attempt to remove unused source DBHomes for a completed Maintenance Cycle.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_cleanup_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_action_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_cleanup_action_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CLEANUP_ACTION_SUMMARY_T Type

Cleanup Exadata Fleet Update Action summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_cleanup_action_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_summary_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_action_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_action_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_cleanup_action_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_summary_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CLEANUP_FSU_JOB_T Type

Cleanup Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_details_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_t type.

Fields

Field Description

fsu_collection_id

(required) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(required) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CLEANUP_FSU_JOB_SUMMARY_T Type

Summary of Cleanup Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_summary_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_cleanup_fsu_job_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_summary_t type.

Fields

Field Description

fsu_collection_id

(optional) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(optional) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_GOAL_VERSION_DETAILS_T Type

Goal version or image details for the Exadata Fleet Update Cycle.

Syntax

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

Fields

Field Description

l_type

(required) Type of goal target version specified

Allowed values are: 'VERSION', 'IMAGE_ID'

home_policy

(optional) Goal home policy to use when Staging the Goal Version during patching. CREATE_NEW: Create a new DBHome (for Database Collections) for the specified image or version. USE_EXISTING: All database targets in the same VMCluster or CloudVmCluster will be moved to a shared database home. If an existing home for the selected image or version is not found in the VM Cluster for a target database, then a new home will be created. If more than one existing home for the selected image is found, then the home with the least number of databases will be used. If multiple homes have the least number of databases, then a home will be selected at random.

Allowed values are: 'CREATE_NEW', 'USE_EXISTING'

new_home_prefix

(optional) Prefix name used for new DB home resources created as part of the Stage Action. Format: <specified_prefix>_<timestamp> If not specified, a default OCI DB home resource will be generated for the new DB home resources created.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_BATCHING_STRATEGY_DETAILS_T Type

Batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

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

Fields

Field Description

l_type

(optional) Supported batching strategies.

Allowed values are: 'SEQUENTIAL', 'FIFTY_FIFTY', 'SERVICE_AVAILABILITY_FACTOR', 'NON_ROLLING'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_SCHEDULE_DETAILS_T Type

Scheduling related details for the Exadata Fleet Update Action during create operations. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. Null scheduleDetails for Stage and Apply Actions in Exadata Fleet Update Cycle creation would not create Actions. Null scheduleDetails for CreateAction would execute the Exadata Fleet Update Action as soon as possible.

Syntax

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

Fields

Field Description

l_type

(required) Type of scheduling strategy to use for Fleet Patching Update Action execution.

Allowed values are: 'START_TIME'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CLONE_FSU_CYCLE_DETAILS_T Type

Details for cloning an existing Exadata Fleet Update Cycle resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_clone_fsu_cycle_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  fsu_collection_id varchar2(32767),
  goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
  batching_strategy dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t,
  stage_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  apply_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_clone_fsu_cycle_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_clone_fsu_cycle_details_t (
    display_name varchar2,
    compartment_id varchar2,
    fsu_collection_id varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    batching_strategy dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t,
    stage_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
    apply_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Exadata Fleet Update Cycle display name.

compartment_id

(optional) Compartment Identifier.

fsu_collection_id

(optional) OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to. If not specified, it will be assigned to the same Collection as the source Exadata Fleet Update Cycle.

goal_version_details

(required)

batching_strategy

(optional)

stage_action_schedule

(optional)

apply_action_schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_DETAILS_T Type

Details of target member of a Exadata Fleet Update Collection.

Syntax

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

Fields

Field Description

entity_type

(required) Resource EntityType for the target in the Exadata Fleet Update Collection.

Allowed values are: 'DATABASE', 'VMCLUSTER', 'CLOUDVMCLUSTER'

id

(optional) OCID of the target resource in the Exadata Fleet Update Collection.

compartment_id

(optional) Compartment identifier of the target.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CLOUD_VM_CLUSTER_TARGET_SUMMARY_T Type

Details of a CloudVmCluster target member of a Exadata Fleet Update Collection. Stored references of the resource documented in https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/CloudVmCluster/

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_cloud_vm_cluster_target_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_target_details_t (
  infrastructure_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cloud_vm_cluster_target_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_cloud_vm_cluster_target_summary_t (
    entity_type varchar2,
    id varchar2,
    compartment_id varchar2,
    infrastructure_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_cloud_vm_cluster_target_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_target_details_t type.

Fields

Field Description

infrastructure_id

(optional) OCID of the related Exadata Infrastructure or Cloud Exadata Infrastructure resource.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_FSU_ACTION_DETAILS_T Type

Exadata Fleet Update Action resource details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) Exadata Fleet Update Action display name.

compartment_id

(required) Compartment Identifier.

l_type

(required) Type of Exadata Fleet Update Action.

Allowed values are: 'STAGE', 'PRECHECK', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

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_FLEET_SOFTWARE_UPDATE_CREATE_APPLY_ACTION_DETAILS_T Type

Apply Exadata Fleet Update Action creation details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_apply_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t (
  fsu_cycle_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_apply_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_apply_action_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fsu_cycle_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_apply_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_CLEANUP_ACTION_DETAILS_T Type

Cleanup Exadata Fleet Update Action creation details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_cleanup_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t (
  fsu_cycle_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_cleanup_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_cleanup_action_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fsu_cycle_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_cleanup_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_FLEET_DISCOVERY_DETAILS_T Type

Supported fleet discovery strategies for DB Collections. If specified on an Update Collection request, this will re-discover the targets of the Collection.

Syntax

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

Fields

Field Description

strategy

(required) Possible fleet discovery strategies.

Allowed values are: 'SEARCH_QUERY', 'FILTERS', 'TARGET_LIST', 'DISCOVERY_RESULTS'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_FSU_COLLECTION_DETAILS_T Type

The information about new Exadata Fleet Update Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_fsu_collection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  l_type varchar2(32767),
  service_type varchar2(32767),
  compartment_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_collection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_collection_details_t (
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) Exadata Fleet Update Collection Identifier.

l_type

(required) Collection type. DB: Only Database entity type resources allowed. GI: CloudVMCluster and VMCluster entity type resources allowed.

Allowed values are: 'DB', 'GI'

service_type

(required) Exadata service type for the target resource members.

Allowed values are: 'EXACS', 'EXACC'

compartment_id

(required) Compartment Identifier

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_FLEET_SOFTWARE_UPDATE_CREATE_DB_FSU_COLLECTION_DETAILS_T Type

Details to create a 'DB' type Exadata Fleet Update Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_db_fsu_collection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_collection_details_t (
  source_major_version varchar2(32767),
  fleet_discovery dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_db_fsu_collection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_db_fsu_collection_details_t (
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    source_major_version varchar2,
    fleet_discovery dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_db_fsu_collection_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_collection_details_t type.

Fields

Field Description

source_major_version

(required) Database Major Version of targets to be included in the Exadata Fleet Update Collection. https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbVersionSummary/ListDbVersions Only Database targets that match the version specified in this value would be added to the Exadata Fleet Update Collection.

Allowed values are: 'DB_11204', 'DB_121', 'DB_122', 'DB_18', 'DB_19'

fleet_discovery

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_FIFTY_FIFTY_BATCHING_STRATEGY_DETAILS_T Type

Fifty-Fifty batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_fifty_fifty_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t (
  is_wait_for_batch_resume number,
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fifty_fifty_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fifty_fifty_batching_strategy_details_t (
    l_type varchar2,
    is_wait_for_batch_resume number,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_fifty_fifty_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t type.

Fields

Field Description

is_wait_for_batch_resume

(optional) True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_FSU_CYCLE_DETAILS_T Type

Exadata Fleet Update Cycle resource creation details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_fsu_cycle_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  fsu_collection_id varchar2(32767),
  goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
  batching_strategy dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t,
  stage_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  apply_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_cycle_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_cycle_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    fsu_collection_id varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    batching_strategy dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t,
    stage_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
    apply_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) Exadata Fleet Update Cycle display name.

compartment_id

(required) Compartment Identifier.

l_type

(required) Type of Exadata Fleet Update Cycle.

Allowed values are: 'PATCH'

fsu_collection_id

(required) OCID identifier for the Collection ID the Exadata Fleet Update Cycle will be assigned to.

goal_version_details

(required)

batching_strategy

(optional)

stage_action_schedule

(optional)

apply_action_schedule

(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_FLEET_SOFTWARE_UPDATE_DISCOVERY_DETAILS_T Type

Discovery filter details for search.

Syntax

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

Fields

Field Description

l_type

(required) Exadata Fleet Update Discovery type.

Allowed values are: 'DB', 'GI'

service_type

(required) Exadata service type for the target resource members.

Allowed values are: 'EXACS', 'EXACC'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_FSU_DISCOVERY_DETAILS_T Type

The information about new Exadata Fleet Update Discovery resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_fsu_discovery_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  details dbms_cloud_oci_fleet_software_update_discovery_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_discovery_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_fsu_discovery_details_t (
    display_name varchar2,
    compartment_id varchar2,
    details dbms_cloud_oci_fleet_software_update_discovery_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) Exadata Fleet Update Collection display name.

compartment_id

(required) Compartment Identifier.

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_FLEET_SOFTWARE_UPDATE_GI_FLEET_DISCOVERY_DETAILS_T Type

Supported fleet discovery strategies for GI Collections. If specified on an Update Collection request, this will re-discover the targets of the Collection.

Syntax

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

Fields

Field Description

strategy

(required) Possible fleet discovery strategies.

Allowed values are: 'SEARCH_QUERY', 'FILTERS', 'TARGET_LIST', 'DISCOVERY_RESULTS'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_GI_FSU_COLLECTION_DETAILS_T Type

Details to create a 'GI' type Exadata Fleet Update Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_gi_fsu_collection_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_collection_details_t (
  source_major_version varchar2(32767),
  fleet_discovery dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_gi_fsu_collection_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_gi_fsu_collection_details_t (
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    source_major_version varchar2,
    fleet_discovery dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_gi_fsu_collection_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_collection_details_t type.

Fields

Field Description

source_major_version

(required) Grid Infrastructure Major Version of targets to be included in the Exadata Fleet Update Collection. Only GI targets that match the version specified in this value would be added to the Exadata Fleet Update Collection.

Allowed values are: 'GI_18', 'GI_19'

fleet_discovery

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_NON_ROLLING_BATCHING_STRATEGY_DETAILS_T Type

Non-rolling batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_non_rolling_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_non_rolling_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_non_rolling_batching_strategy_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_non_rolling_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t type.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_PATCH_FSU_CYCLE_T Type

Patch Exadata Fleet Update Cycle resource creation details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_patch_fsu_cycle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_cycle_details_t (
  is_ignore_patches number,
  is_ignore_missing_patches dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  max_drain_timeout_in_seconds number,
  is_keep_placement number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_patch_fsu_cycle_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_patch_fsu_cycle_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    fsu_collection_id varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    batching_strategy dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t,
    stage_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
    apply_action_schedule dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    is_ignore_patches number,
    is_ignore_missing_patches dbms_cloud_oci_fleet_software_update_varchar2_tbl,
    max_drain_timeout_in_seconds number,
    is_keep_placement number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_patch_fsu_cycle_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_cycle_details_t type.

Fields

Field Description

is_ignore_patches

(optional) Ignore all patches between the source and target homes during patching.

is_ignore_missing_patches

(optional) List of patch IDs to ignore.

max_drain_timeout_in_seconds

(optional) Service drain timeout specified in seconds.

is_keep_placement

(optional) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_PRECHECK_ACTION_DETAILS_T Type

Precheck Exadata Fleet Update Action creation details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_precheck_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t (
  fsu_cycle_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_precheck_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_precheck_action_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fsu_cycle_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_precheck_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ROLLBACK_DETAILS_T Type

Rollback details specified for the action.

Syntax

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

Fields

Field Description

strategy

(required) Rollback strategy to use. FAILED_JOBS: Rollback and remove targets which had a failure in their last job. LIST_OF_TARGETS: Rollback and remove a specific list of targets.

Allowed values are: 'FAILED_JOBS', 'LIST_OF_TARGETS'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_ROLLBACK_ACTION_DETAILS_T Type

Rollback Exadata Fleet Update Action creation details. This action will attempt to rollback the specified Targets according to strategy to the source target version prior to patching in this Exadata Fleet Update Cycle and remove them from the Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_rollback_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t (
  fsu_cycle_id varchar2(32767),
  details dbms_cloud_oci_fleet_software_update_rollback_details_t,
  schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_rollback_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_rollback_action_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fsu_cycle_id varchar2,
    details dbms_cloud_oci_fleet_software_update_rollback_details_t,
    schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_rollback_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

details

(required)

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_SEQUENTIAL_BATCHING_STRATEGY_DETAILS_T Type

Sequential batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_sequential_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t (
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_sequential_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_sequential_batching_strategy_details_t (
    l_type varchar2,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_sequential_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t type.

Fields

Field Description

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_SERVICE_AVAILABILITY_FACTOR_BATCHING_STRATEGY_DETAILS_T Type

Service Availability Factor batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_service_availability_factor_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t (
  percentage number,
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_service_availability_factor_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_service_availability_factor_batching_strategy_details_t (
    l_type varchar2,
    percentage number,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_service_availability_factor_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_batching_strategy_details_t type.

Fields

Field Description

percentage

(optional) Percentage of availability in the service during the Patch operation.

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_STAGE_ACTION_DETAILS_T Type

Stage Exadata Fleet Update Action creation details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_stage_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t (
  fsu_cycle_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_stage_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_stage_action_details_t (
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    fsu_cycle_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_create_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_stage_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_fsu_action_details_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_CREATE_START_TIME_SCHEDULE_DETAILS_T Type

Start time details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. If Stage and Apply Actions are created with a timeToStart specified during Exadata Fleet Update Cycle creation, Apply should be scheduled at least 24 hours after the start time of the Stage Action.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_create_start_time_schedule_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_create_schedule_details_t (
  time_to_start timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_start_time_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_create_start_time_schedule_details_t (
    l_type varchar2,
    time_to_start timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_create_start_time_schedule_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_create_schedule_details_t type.

Fields

Field Description

time_to_start

(required) The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DATABASE_TARGET_SUMMARY_T Type

Details of a Database target member of a Exadata Fleet Update Collection. Stored references of the resource documented in https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/Database/

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_database_target_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_target_details_t (
  db_home_id varchar2(32767),
  vm_cluster_id varchar2(32767),
  infrastructure_id varchar2(32767),
  software_image_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_database_target_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_database_target_summary_t (
    entity_type varchar2,
    id varchar2,
    compartment_id varchar2,
    db_home_id varchar2,
    vm_cluster_id varchar2,
    infrastructure_id varchar2,
    software_image_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_database_target_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_target_details_t type.

Fields

Field Description

db_home_id

(optional) OCID of the database home.

vm_cluster_id

(optional) OCID of the related VM Cluster or Cloud VM Cluster.

infrastructure_id

(optional) OCID of the related Exadata Infrastructure or Cloud Exadata Infrastructure resource.

software_image_id

(optional) OCID of the Database sofware image.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_COLLECTION_T Type

Exadata Fleet Update Collection Resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  l_type varchar2(32767),
  service_type varchar2(32767),
  compartment_id varchar2(32767),
  active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
  target_count 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,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_collection_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
    target_count 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,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Collection.

display_name

(required) Exadata Fleet Update Collection resource display name.

l_type

(required) Exadata Fleet Update Collection type.

Allowed values are: 'DB', 'GI'

service_type

(required) Exadata service type for the target resource members.

Allowed values are: 'EXACS', 'EXACC'

compartment_id

(required) Compartment Identifier

active_fsu_cycle

(optional)

target_count

(optional) Number of targets that are members of this Collection.

time_created

(required) The time the Exadata Fleet Update Collection was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the Exadata Fleet Update Collection was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the Exadata Fleet Update Collection.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'NEEDS_ATTENTION', '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.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_COLLECTION_T Type

'DB' type Exadata Fleet Update Collection details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_collection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_collection_t (
  source_major_version varchar2(32767),
  fleet_discovery dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_collection_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
    target_count 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,
    system_tags json_element_t,
    source_major_version varchar2,
    fleet_discovery dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_collection_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_collection_t type.

Fields

Field Description

source_major_version

(required) Database Major Version of targets to be included in the Exadata Fleet Update Collection. https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbVersionSummary/ListDbVersions Only Database targets that match the version specified in this value would be added to the Exadata Fleet Update Collection.

Allowed values are: 'DB_11204', 'DB_121', 'DB_122', 'DB_18', 'DB_19'

fleet_discovery

(required)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_FLEET_DISCOVERY_FILTER_T Type

Possible Discovery filters for Database targets.

Syntax

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

Fields

Field Description

l_type

(required) Type of filters supported for Database targets discovery.

Allowed values are: 'COMPARTMENT_ID', 'VERSION', 'DB_NAME', 'DB_UNIQUE_NAME', 'DB_HOME_NAME', 'FREEFORM_TAG', 'DEFINED_TAG', 'RESOURCE_ID'

l_mode

(optional) INCLUDE or EXCLUDE the filter results in the discovery for DB targets. Supported for 'FSUCOLLECTION' RESOURCE_ID filter only.

Allowed values are: 'INCLUDE', 'EXCLUDE'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_COMPARTMENT_ID_FILTER_T Type

List of Compartments to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_compartment_id_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_compartment_id_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_compartment_id_filter_t (
    l_type varchar2,
    l_mode varchar2,
    identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_compartment_id_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

identifiers

(required) List of Compartments OCIDs to include in the discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DEFINED_TAG_FILTER_ENTRY_T Type

Defined Tag filter entry.

Syntax

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

Fields

Field Description

namespace

(required) Defined tag namespace.

key

(required) Defined tag key.

value

(required) Defined tag value.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DEFINED_TAG_FILTER_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_defined_tag_filter_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_defined_tag_filter_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_defined_tag_filter_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_DEFINED_TAGS_FILTER_T Type

Defined tags to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_defined_tags_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  tags dbms_cloud_oci_fleet_software_update_defined_tag_filter_entry_tbl,
  operator varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_defined_tags_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_defined_tags_filter_t (
    l_type varchar2,
    l_mode varchar2,
    tags dbms_cloud_oci_fleet_software_update_defined_tag_filter_entry_tbl,
    operator varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_defined_tags_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

tags

(required) Defined tags to include in the discovery.

operator

(optional) Type of join for each element in this filter.

Allowed values are: 'AND', 'OR'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_DISCOVERY_DETAILS_T Type

'DB' type Exadata Fleet Update Discovery details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_discovery_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_discovery_details_t (
  source_major_version varchar2(32767),
  criteria dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_discovery_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_discovery_details_t (
    l_type varchar2,
    service_type varchar2,
    source_major_version varchar2,
    criteria dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_discovery_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_discovery_details_t type.

Fields

Field Description

source_major_version

(required) Database Major Version of targets to be included in the Exadata Fleet Update Discovery results. https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbVersionSummary/ListDbVersions Only Database targets that match the version specified in this value would be added to the Exadata Fleet Update Discovery results.

Allowed values are: 'DB_11204', 'DB_121', 'DB_122', 'DB_18', 'DB_19'

criteria

(required)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_DISCOVERY_RESULTS_T Type

Collection built from the results of a Succeeded Fleet Software Update Discovery resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_discovery_results_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t (
  fsu_discovery_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_discovery_results_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_discovery_results_t (
    strategy varchar2,
    fsu_discovery_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_discovery_results_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t type.

Fields

Field Description

fsu_discovery_id

(required) OCIDs of Fleet Software Update Discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_FLEET_DISCOVERY_FILTER_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_FILTERS_DISCOVERY_T Type

Collection discovery done from the results of the specified filters.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_filters_discovery_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t (
  filters dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_filters_discovery_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_filters_discovery_t (
    strategy varchar2,
    filters dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_filters_discovery_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t type.

Fields

Field Description

filters

(required) Filters to perform the target discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FREEFORM_TAG_FILTER_ENTRY_T Type

Freeform Tag filter entry.

Syntax

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

Fields

Field Description

key

(required) Freeform tag key.

value

(required) Freeform tag value.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FREEFORM_TAG_FILTER_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_freeform_tag_filter_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_freeform_tag_filter_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_freeform_tag_filter_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_FREEFORM_TAGS_FILTER_T Type

Freeform tags to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_freeform_tags_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  tags dbms_cloud_oci_fleet_software_update_freeform_tag_filter_entry_tbl,
  operator varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_freeform_tags_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_freeform_tags_filter_t (
    l_type varchar2,
    l_mode varchar2,
    tags dbms_cloud_oci_fleet_software_update_freeform_tag_filter_entry_tbl,
    operator varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_freeform_tags_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

tags

(required) Freeform tags to include in the discovery.

operator

(optional) Type of join for each element in this filter.

Allowed values are: 'AND', 'OR'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_COLLECTION_SUMMARY_T Type

Exadata Fleet Update Collection Resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  l_type varchar2(32767),
  service_type varchar2(32767),
  compartment_id varchar2(32767),
  active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
  target_count 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,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
    target_count 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,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Collection.

display_name

(required) Exadata Fleet Update Collection resource display name.

l_type

(required) Exadata Fleet Update Collection type.

Allowed values are: 'DB', 'GI'

service_type

(required) Exadata service type for the target resource members.

Allowed values are: 'EXACS', 'EXACC'

compartment_id

(required) Compartment Identifier

active_fsu_cycle

(optional)

target_count

(optional) Number of targets that are members of this Collection.

time_created

(required) The time the Exadata Fleet Update Collection was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the Exadata Fleet Update Collection was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the Exadata Fleet Update Collection.

Allowed values are: 'CREATING', 'UPDATING', 'ACTIVE', 'NEEDS_ATTENTION', '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.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_FSU_COLLECTION_SUMMARY_T Type

'DB' type Exadata Fleet Update Collection summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_fsu_collection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t (
  source_major_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_fsu_collection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_fsu_collection_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
    target_count 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,
    system_tags json_element_t,
    source_major_version varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_fsu_collection_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t type.

Fields

Field Description

source_major_version

(required) Database Major Version of targets to be included in the Exadata Fleet Update Collection. https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/DbVersionSummary/ListDbVersions Only Database targets that match the version specified in this value would be added to the Exadata Fleet Update Collection.

Allowed values are: 'DB_11204', 'DB_121', 'DB_122', 'DB_18', 'DB_19'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_HOME_NAME_FILTER_T Type

Database home name to include in the discovery. '*' Wildcard is allowed for 'startsWith' or 'endsWith' filtering.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_home_name_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  names dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_home_name_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_home_name_filter_t (
    l_type varchar2,
    l_mode varchar2,
    names dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_home_name_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

names

(required) List of Database home names to include in the discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_NAME_FILTER_T Type

Database name to include in the discovery. '*' Wildcard is allowed for 'startsWith' or 'endsWith' filtering.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_name_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  names dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_name_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_name_filter_t (
    l_type varchar2,
    l_mode varchar2,
    names dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_name_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

names

(required) List of Database names to include in the discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_RESOURCE_ID_FILTER_T Type

Related resource Ids to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_resource_id_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  entity_type varchar2(32767),
  identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  operator varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_resource_id_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_resource_id_filter_t (
    l_type varchar2,
    l_mode varchar2,
    entity_type varchar2,
    identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl,
    operator varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_resource_id_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

entity_type

(required) Type of resource to match in the discovery.

Allowed values are: 'DATABASESOFTWAREIMAGE', 'DBHOME', 'EXADATAINFRASTRUCTURE', 'CLOUDEXADATAINFRASTRUCTURE', 'VMCLUSTER', 'CLOUDVMCLUSTER', 'FSUCOLLECTION'

identifiers

(required) Related resource Ids to include in the discovery. All must match the specified entityType.

operator

(optional) Type of join for each element in this filter.

Allowed values are: 'AND', 'OR'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_SEARCH_QUERY_DISCOVERY_T Type

Collection discovery done from the results of the specified Search Service query string.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_search_query_discovery_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t (
  query varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_search_query_discovery_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_search_query_discovery_t (
    strategy varchar2,
    query varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_search_query_discovery_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t type.

Fields

Field Description

query

(required) OCI Search Service query string.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_TARGET_LIST_DISCOVERY_T Type

Collection discovery conformed by the specified list of targets.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_target_list_discovery_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t (
  targets dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_target_list_discovery_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_target_list_discovery_t (
    strategy varchar2,
    targets dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_target_list_discovery_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_details_t type.

Fields

Field Description

targets

(required) OCIDs of target database resources to include.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_UNIQUE_NAME_FILTER_T Type

Database unique name to include in the discovery. '*' Wildcard is allowed for 'startsWith' or 'endsWith' filtering.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_unique_name_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  names dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_unique_name_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_unique_name_filter_t (
    l_type varchar2,
    l_mode varchar2,
    names dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_unique_name_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

names

(required) List of Database unique names to include in the discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DB_VERSION_FILTER_T Type

Versions to include in the discovery. These should be under the Source Major Version of the Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_db_version_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t (
  versions dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_version_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_db_version_filter_t (
    l_type varchar2,
    l_mode varchar2,
    versions dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_db_version_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_db_fleet_discovery_filter_t type.

Fields

Field Description

versions

(required) List of Version strings to include in the discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_DISCOVERY_DETAILS_SUMMARY_T Type

Summarized Discovery details.

Syntax

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

Fields

Field Description

l_type

(required) Exadata Fleet Update Discovery type.

Allowed values are: 'DB', 'GI'

service_type

(required) Exadata service type for the target resource members.

Allowed values are: 'EXACS', 'EXACC'

criteria

(optional) Criteria used for Exadata Fleet Update Discovery.

Allowed values are: 'SEARCH_QUERY', 'FILTERS'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ERROR_T Type

Error Information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_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_FLEET_SOFTWARE_UPDATE_FAILED_JOBS_ROLLBACK_DETAILS_T Type

FAILED_JOBS strategy rollback details. This strategy would only act-upon targets that had a failed job during patching.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_failed_jobs_rollback_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_rollback_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_failed_jobs_rollback_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_failed_jobs_rollback_details_t (
    strategy varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_failed_jobs_rollback_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_rollback_details_t type.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FIFTY_FIFTY_BATCHING_STRATEGY_DETAILS_T Type

Fifty-Fifty batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fifty_fifty_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_batching_strategy_details_t (
  is_wait_for_batch_resume number,
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fifty_fifty_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fifty_fifty_batching_strategy_details_t (
    l_type varchar2,
    is_wait_for_batch_resume number,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_fifty_fifty_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_batching_strategy_details_t type.

Fields

Field Description

is_wait_for_batch_resume

(optional) True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_ACTION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_fsu_action_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_action_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_fsu_action_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_ACTION_SUMMARY_COLLECTION_T Type

List of FsuActionSummary objects.

Syntax

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

Fields

Field Description

items

(required) List of FsuActionSummary entries.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_COLLECTION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_collection_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_COLLECTION_SUMMARY_COLLECTION_T Type

List of FsuCollectionSummary objects.

Syntax

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

Fields

Field Description

items

(required) List of FsuCollectionSummary entries.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_NEXT_ACTION_TO_EXECUTE_DETAILS_T Type

Details of the next Exadata Fleet Update Action to execute in a Maintenance Cycle.

Syntax

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

Fields

Field Description

l_type

(required) Type of Exadata Fleet Update Action

Allowed values are: 'STAGE', 'PRECHECK_STAGE', 'PRECHECK_APPLY', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

time_to_start

(optional) The date and time the Exadata Fleet Update Action is expected to start. Null if no Action has been scheduled. RFC 3339, section 14.29.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_NEXT_ACTION_TO_EXECUTE_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_CYCLE_T Type

Exadata Fleet Update Cycle resource details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_cycle_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  fsu_collection_id varchar2(32767),
  collection_type varchar2(32767),
  executing_fsu_action_id varchar2(32767),
  next_action_to_execute dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_tbl,
  last_completed_action varchar2(32767),
  goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
  batching_strategy dbms_cloud_oci_fleet_software_update_batching_strategy_details_t,
  stage_action_schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  apply_action_schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_cycle_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_cycle_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    fsu_collection_id varchar2,
    collection_type varchar2,
    executing_fsu_action_id varchar2,
    next_action_to_execute dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_tbl,
    last_completed_action varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    batching_strategy dbms_cloud_oci_fleet_software_update_batching_strategy_details_t,
    stage_action_schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
    apply_action_schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Cycle.

display_name

(optional) Exadata Fleet Update Cycle display name.

compartment_id

(required) Compartment Identifier.

l_type

(required) Type of Exadata Fleet Update Cycle.

Allowed values are: 'PATCH'

fsu_collection_id

(required) OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.

collection_type

(optional) Type of Collection this Exadata Fleet Update Cycle belongs to.

Allowed values are: 'DB', 'GI'

executing_fsu_action_id

(optional) OCID identifier for the Action that is currently in execution, if applicable.

next_action_to_execute

(optional) In this array all the possible actions will be listed. The first element is the suggested Action.

last_completed_action

(optional) The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.

Allowed values are: 'STAGE', 'PRECHECK_STAGE', 'PRECHECK_APPLY', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

goal_version_details

(optional)

batching_strategy

(optional)

stage_action_schedule

(optional)

apply_action_schedule

(optional)

time_created

(required) The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.

time_updated

(optional) The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.

lifecycle_state

(required) The current state of the Exadata Fleet Update Cycle.

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

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\"}}`

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_CYCLE_SUMMARY_T Type

Exadata Fleet Update Cycle Summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_cycle_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  l_type varchar2(32767),
  fsu_collection_id varchar2(32767),
  collection_type varchar2(32767),
  executing_fsu_action_id varchar2(32767),
  next_action_to_execute dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_tbl,
  last_completed_action varchar2(32767),
  goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_cycle_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_cycle_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    fsu_collection_id varchar2,
    collection_type varchar2,
    executing_fsu_action_id varchar2,
    next_action_to_execute dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_tbl,
    last_completed_action varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Cycle.

display_name

(optional) Exadata Fleet Update Cycle display name.

compartment_id

(required) Compartment Identifier.

l_type

(required) Type of Exadata Fleet Update Cycle.

Allowed values are: 'PATCH'

fsu_collection_id

(required) OCID identifier for the Collection ID the Exadata Fleet Update Cycle is assigned to.

collection_type

(required) Type of Collection this Exadata Fleet Update Cycle belongs to.

Allowed values are: 'DB', 'GI'

executing_fsu_action_id

(optional) OCID identifier for the Action that is currently in execution, if applicable.

next_action_to_execute

(optional) In this array all the possible actions will be listed. The first element is the suggested Action.

last_completed_action

(optional) The latest Action type that was completed in the Exadata Fleet Update Cycle. No value would indicate that the Cycle has not completed any Action yet.

Allowed values are: 'STAGE', 'PRECHECK_STAGE', 'PRECHECK_APPLY', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

goal_version_details

(required)

time_created

(required) The date and time the Exadata Fleet Update Cycle was created, as described in RFC 3339, section 14.29.

time_updated

(optional) The date and time the Exadata Fleet Update Cycle was updated, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the Exadata Fleet Update Cycle was finished, as described in RFC 3339.

lifecycle_state

(required) The current state of the Exadata Fleet Update Cycle.

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

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\"}}`

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_CYCLE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_fsu_cycle_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_cycle_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_fsu_cycle_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_CYCLE_SUMMARY_COLLECTION_T Type

List of FsuCycleSummary objects.

Syntax

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

Fields

Field Description

items

(required) List of FsuCycleSummary entries.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_DISCOVERY_T Type

Exadata Fleet Update Discovery resource details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_discovery_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  details dbms_cloud_oci_fleet_software_update_discovery_details_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_discovery_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_discovery_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    details dbms_cloud_oci_fleet_software_update_discovery_details_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Discovery.

display_name

(required) Exadata Fleet Update Discovery display name.

compartment_id

(required) Compartment Identifier.

details

(required)

time_created

(required) The date and time the Exadata Fleet Update Discovery was created, as described in RFC 3339, section 14.29.

time_updated

(optional) The date and time the Exadata Fleet Update Discovery was updated, as described in RFC 3339, section 14.29.

time_finished

(optional) The date and time the Exadata Fleet Update Discovery was finished, as described in RFC 3339.

lifecycle_state

(required) The current state of the Exadata Fleet Update Discovery.

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

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\"}}`

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_DISCOVERY_SUMMARY_T Type

Exadata Fleet Update Discovery Resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_discovery_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  details dbms_cloud_oci_fleet_software_update_discovery_details_summary_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_finished timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_discovery_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_fsu_discovery_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    details dbms_cloud_oci_fleet_software_update_discovery_details_summary_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) OCID identifier for the Exadata Fleet Update Discovery.

display_name

(required) Exadata Fleet Update Discovery display name.

compartment_id

(required) Compartment Identifier.

details

(required)

time_created

(required) The time the Exadata Fleet Update Discovery was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time the Exadata Fleet Update Discovery was updated. An RFC3339 formatted datetime string.

time_finished

(optional) The date and time the Exadata Fleet Update Discovery was finished, as described in RFC 3339.

lifecycle_state

(required) The current state of the Exadata Fleet Update Discovery.

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

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\"}}`

system_tags

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

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_DISCOVERY_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_fsu_discovery_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_discovery_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_fsu_discovery_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_DISCOVERY_SUMMARY_COLLECTION_T Type

List of FleetSoftwareUpdateDiscoverySummary objects.

Syntax

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

Fields

Field Description

items

(required) List of FleetSoftwareUpdateDiscoverySummary entries.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_JOB_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_fsu_job_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_job_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_fsu_job_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_JOB_COLLECTION_T Type

Results of a Exadata Fleet Update Job Summary listing. Contains FleetSoftwareUpdateJobSummary items.

Syntax

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

Fields

Field Description

items

(required) Items in collection.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_JOB_OUTPUT_SUMMARY_T Type

Job output summary line.

Syntax

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

Fields

Field Description

message

(required) Job output line.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_JOB_OUTPUT_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_fsu_job_output_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_fsu_job_output_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_fsu_job_output_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_FSU_JOB_OUTPUT_SUMMARY_COLLECTION_T Type

Results of a Exadata Fleet Update Job output listing. Contains FleetSoftwareUpdateJobOutputSummary items.

Syntax

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

Fields

Field Description

items

(required) Items in collection.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_COLLECTION_T Type

Details to create a 'GI' type Exadata Fleet Update Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_collection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_collection_t (
  source_major_version varchar2(32767),
  fleet_discovery dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_collection_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
    target_count 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,
    system_tags json_element_t,
    source_major_version varchar2,
    fleet_discovery dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_collection_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_collection_t type.

Fields

Field Description

source_major_version

(required) Grid Infrastructure Major Version of targets to be included in the Exadata Fleet Update Collection. Only GI targets that match the version specified in this value would be added to the Exadata Fleet Update Collection.

Allowed values are: 'GI_18', 'GI_19'

fleet_discovery

(required)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_FLEET_DISCOVERY_FILTER_T Type

Possible Discovery filters.

Syntax

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

Fields

Field Description

l_type

(required) Type of filters supported for GI targets discovery.

Allowed values are: 'COMPARTMENT_ID', 'VERSION', 'FREEFORM_TAG', 'DEFINED_TAG', 'RESOURCE_ID'

l_mode

(optional) INCLUDE or EXCLUDE the filter results in the discovery for GI targets. Supported for 'FSUCOLLECTION' RESOURCE_ID filter only.

Allowed values are: 'INCLUDE', 'EXCLUDE'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_COMPARTMENT_ID_FILTER_T Type

List of Compartments to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_compartment_id_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t (
  identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_compartment_id_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_compartment_id_filter_t (
    l_type varchar2,
    l_mode varchar2,
    identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_compartment_id_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t type.

Fields

Field Description

identifiers

(required) List of Compartments OCIDs to include in the discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_DEFINED_TAGS_FILTER_T Type

Defined tags to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_defined_tags_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t (
  tags dbms_cloud_oci_fleet_software_update_defined_tag_filter_entry_tbl,
  operator varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_defined_tags_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_defined_tags_filter_t (
    l_type varchar2,
    l_mode varchar2,
    tags dbms_cloud_oci_fleet_software_update_defined_tag_filter_entry_tbl,
    operator varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_defined_tags_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t type.

Fields

Field Description

tags

(required) Defined tags to include in the discovery.

operator

(optional) Type of join for each element in this filter.

Allowed values are: 'AND', 'OR'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_DISCOVERY_DETAILS_T Type

Details to create a 'GI' type Exadata Fleet Update Discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_discovery_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_discovery_details_t (
  source_major_version varchar2(32767),
  criteria dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_discovery_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_discovery_details_t (
    l_type varchar2,
    service_type varchar2,
    source_major_version varchar2,
    criteria dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_discovery_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_discovery_details_t type.

Fields

Field Description

source_major_version

(required) Grid Infrastructure Major Version of targets to be included in the Exadata Fleet Update Discovery results. Only GI targets that match the version specified in this value would be added to the Exadata Fleet Update Discovery results.

Allowed values are: 'GI_18', 'GI_19'

criteria

(required)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_DISCOVERY_RESULTS_T Type

Collection built from the results of a Succeeded Fleet Software Update Discovery resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_discovery_results_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t (
  fsu_discovery_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_discovery_results_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_discovery_results_t (
    strategy varchar2,
    fsu_discovery_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_discovery_results_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t type.

Fields

Field Description

fsu_discovery_id

(required) OCIDs of Fleet Software Update Discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_FLEET_DISCOVERY_FILTER_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_FILTERS_DISCOVERY_T Type

Collection discovery done from the results of the specified filters.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_filters_discovery_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t (
  filters dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_filters_discovery_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_filters_discovery_t (
    strategy varchar2,
    filters dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_filters_discovery_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t type.

Fields

Field Description

filters

(required) Filters to perform the target discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_FREEFORM_TAGS_FILTER_T Type

Freeform tags to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_freeform_tags_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t (
  tags dbms_cloud_oci_fleet_software_update_freeform_tag_filter_entry_tbl,
  operator varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_freeform_tags_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_freeform_tags_filter_t (
    l_type varchar2,
    l_mode varchar2,
    tags dbms_cloud_oci_fleet_software_update_freeform_tag_filter_entry_tbl,
    operator varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_freeform_tags_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t type.

Fields

Field Description

tags

(required) Freeform tags to include in the discovery.

operator

(optional) Type of join for each element in this filter.

Allowed values are: 'AND', 'OR'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_FSU_COLLECTION_SUMMARY_T Type

'GI' type Exadata Fleet Update Collection summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_fsu_collection_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t (
  source_major_version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_fsu_collection_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_fsu_collection_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    service_type varchar2,
    compartment_id varchar2,
    active_fsu_cycle dbms_cloud_oci_fleet_software_update_active_cycle_details_t,
    target_count 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,
    system_tags json_element_t,
    source_major_version varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_fsu_collection_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_collection_summary_t type.

Fields

Field Description

source_major_version

(required) Grid Infrastructure Major Version of targets to be included in the Exadata Fleet Update Collection. Only GI targets that match the version specified in this value would be added to the Exadata Fleet Update Collection.

Allowed values are: 'GI_18', 'GI_19'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_RESOURCE_ID_FILTER_T Type

Related resource Ids to include in the discovery.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_resource_id_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t (
  entity_type varchar2(32767),
  identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  operator varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_resource_id_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_resource_id_filter_t (
    l_type varchar2,
    l_mode varchar2,
    entity_type varchar2,
    identifiers dbms_cloud_oci_fleet_software_update_varchar2_tbl,
    operator varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_resource_id_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t type.

Fields

Field Description

entity_type

(required) Type of resource to match in the discovery.

Allowed values are: 'EXADATAINFRASTRUCTURE', 'CLOUDEXADATAINFRASTRUCTURE', 'VMCLUSTER', 'CLOUDVMCLUSTER', 'FSUCOLLECTION'

identifiers

(required) Related resource Ids to include in the discovery. All must match the specified entityType.

operator

(optional) Type of join for each element in this filter.

Allowed values are: 'AND', 'OR'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_SEARCH_QUERY_DISCOVERY_T Type

Collection discovery done from the results of the specified Search Service query string.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_search_query_discovery_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t (
  query varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_search_query_discovery_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_search_query_discovery_t (
    strategy varchar2,
    query varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_search_query_discovery_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t type.

Fields

Field Description

query

(required) OCI Search Service query string.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_TARGET_LIST_DISCOVERY_T Type

Collection discovery conformed by the specified list of targets.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_target_list_discovery_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t (
  targets dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_target_list_discovery_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_target_list_discovery_t (
    strategy varchar2,
    targets dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_target_list_discovery_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_details_t type.

Fields

Field Description

targets

(required) OCIDs of target resources to include. For EXACC service type Collections only VMClusters are allowed. For EXACS service type Collections only CloudVMClusters are allowed.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_GI_VERSION_FILTER_T Type

Versions to include in the discovery. These should be under the Source Major Version of the Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_gi_version_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t (
  versions dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_version_filter_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_gi_version_filter_t (
    l_type varchar2,
    l_mode varchar2,
    versions dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_gi_version_filter_t is a subtype of the dbms_cloud_oci_fleet_software_update_gi_fleet_discovery_filter_t type.

Fields

Field Description

versions

(required) List of Versions strings to include in the discovery.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_IMAGE_ID_FSU_TARGET_DETAILS_T Type

Exadata Fleet Update Cycle Target Image Id details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_image_id_fsu_target_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t (
  software_image_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_image_id_fsu_target_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_image_id_fsu_target_details_t (
    l_type varchar2,
    home_policy varchar2,
    new_home_prefix varchar2,
    software_image_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_image_id_fsu_target_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t type.

Fields

Field Description

software_image_id

(required) Target database software image OCID.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_LIST_OF_TARGETS_ROLLBACK_DETAILS_T Type

LIST_OF_TARGETS strategy rollback details. The specified list would only act-upon targets that had a failed job during patching.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_list_of_targets_rollback_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_rollback_details_t (
  targets dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_list_of_targets_rollback_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_list_of_targets_rollback_details_t (
    strategy varchar2,
    targets dbms_cloud_oci_fleet_software_update_varchar2_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_list_of_targets_rollback_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_rollback_details_t type.

Fields

Field Description

targets

(required) OCIDs of targets to rollback.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_NON_ROLLING_BATCHING_STRATEGY_DETAILS_T Type

Non-rolling batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_non_rolling_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_batching_strategy_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_non_rolling_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_non_rolling_batching_strategy_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_non_rolling_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_batching_strategy_details_t type.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_BATCHING_STRATEGY_DETAILS_T Type

Batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

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

Fields

Field Description

l_type

(optional) Supported batching strategies.

Allowed values are: 'SEQUENTIAL', 'FIFTY_FIFTY', 'SERVICE_AVAILABILITY_FACTOR', 'NON_ROLLING', 'NONE'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_NONE_BATCHING_STRATEGY_DETAILS_T Type

No batching strategy details. To specify during update Exadata Fleet Update Cycle operation and remove configured batching strategy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_none_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_none_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_none_batching_strategy_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_none_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t type.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_SCHEDULE_DETAILS_T Type

Scheduling related details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. 'NONE' type scheduleDetails for UpdateAction would execute the Exadata Fleet Update Action as soon as possible.

Syntax

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

Fields

Field Description

l_type

(required) Type of scheduling strategy to use for Fleet Patching Update Action execution.

Allowed values are: 'START_TIME', 'NONE'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_NONE_SCHEDULE_DETAILS_T Type

Type used to remove previously stored scheduled details. The Action will be executed as soon as possible after the update completes. Used during Update operations.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_none_schedule_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_schedule_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_none_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_none_schedule_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_none_schedule_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_schedule_details_t type.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_PATCH_FSU_CYCLE_T Type

Patch Exadata Fleet Update Cycle resource details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_patch_fsu_cycle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_cycle_t (
  is_ignore_patches number,
  is_ignore_missing_patches dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  max_drain_timeout_in_seconds number,
  is_keep_placement number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_patch_fsu_cycle_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_patch_fsu_cycle_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    fsu_collection_id varchar2,
    collection_type varchar2,
    executing_fsu_action_id varchar2,
    next_action_to_execute dbms_cloud_oci_fleet_software_update_next_action_to_execute_details_tbl,
    last_completed_action varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    batching_strategy dbms_cloud_oci_fleet_software_update_batching_strategy_details_t,
    stage_action_schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
    apply_action_schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    is_ignore_patches number,
    is_ignore_missing_patches dbms_cloud_oci_fleet_software_update_varchar2_tbl,
    max_drain_timeout_in_seconds number,
    is_keep_placement number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_patch_fsu_cycle_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_cycle_t type.

Fields

Field Description

is_ignore_patches

(optional) Ignore all patches between the source and target homes during patching.

is_ignore_missing_patches

(optional) List of bug numbers to ignore.

max_drain_timeout_in_seconds

(optional) Service drain timeout specified in seconds.

is_keep_placement

(optional) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_PRECHECK_ACTION_T Type

Precheck Exadata Fleet Update Action details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_precheck_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_action_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_precheck_action_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_PRECHECK_ACTION_SUMMARY_T Type

Precheck Exadata Fleet Update Action summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_precheck_action_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_summary_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_action_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_action_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_precheck_action_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_summary_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_PRECHECK_FSU_JOB_T Type

Precheck Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_precheck_fsu_job_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_fsu_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_fsu_job_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_details_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_precheck_fsu_job_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_t type.

Fields

Field Description

fsu_collection_id

(required) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(required) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_PRECHECK_FSU_JOB_SUMMARY_T Type

Summary of Precheck Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_precheck_fsu_job_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_summary_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_fsu_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_precheck_fsu_job_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_precheck_fsu_job_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_summary_t type.

Fields

Field Description

fsu_collection_id

(optional) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(optional) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_REMOVE_FSU_COLLECTION_TARGETS_DETAILS_T Type

Remove targets from a Exadata Fleet Update Collection.

Syntax

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

Fields

Field Description

removal_strategy

(required) Strategy to follow for removal of targets: TARGET_IDS: Remove a list of targets

Allowed values are: 'TARGET_IDS'

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ROLLBACK_ACTION_T Type

Rollback Exadata Fleet Update Action details. This would rollback the specified targets to the source version before patching and remove them from the Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_rollback_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  details dbms_cloud_oci_fleet_software_update_rollback_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_action_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
    details dbms_cloud_oci_fleet_software_update_rollback_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_rollback_action_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ROLLBACK_ACTION_SUMMARY_T Type

Rollback Exadata Fleet Update Action summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_rollback_action_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_summary_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  details dbms_cloud_oci_fleet_software_update_rollback_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_action_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_action_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
    details dbms_cloud_oci_fleet_software_update_rollback_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_rollback_action_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_summary_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ROLLBACK_FSU_JOB_T Type

Rolback & Remove Targets Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_rollback_fsu_job_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_fsu_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_fsu_job_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_details_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_rollback_fsu_job_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_t type.

Fields

Field Description

fsu_collection_id

(required) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(required) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_ROLLBACK_FSU_JOB_SUMMARY_T Type

Summary of Rolback & Remove Targets Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_rollback_fsu_job_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_summary_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_fsu_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_rollback_fsu_job_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_rollback_fsu_job_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_summary_t type.

Fields

Field Description

fsu_collection_id

(optional) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(optional) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_SEQUENTIAL_BATCHING_STRATEGY_DETAILS_T Type

Sequential batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_sequential_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_batching_strategy_details_t (
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_sequential_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_sequential_batching_strategy_details_t (
    l_type varchar2,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_sequential_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_batching_strategy_details_t type.

Fields

Field Description

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_SERVICE_AVAILABILITY_FACTOR_BATCHING_STRATEGY_DETAILS_T Type

Service Availability Factor batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_service_availability_factor_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_batching_strategy_details_t (
  percentage number,
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_service_availability_factor_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_service_availability_factor_batching_strategy_details_t (
    l_type varchar2,
    percentage number,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_service_availability_factor_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_batching_strategy_details_t type.

Fields

Field Description

percentage

(optional) Percentage of availability in the service during the Patch operation.

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_STAGE_ACTION_T Type

Stage Exadata Fleet Update Action details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_stage_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_action_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_stage_action_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_STAGE_ACTION_SUMMARY_T Type

Stage Exadata Fleet Update Action summary.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_stage_action_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_action_summary_t (
  fsu_cycle_id varchar2(32767),
  related_fsu_action_id varchar2(32767),
  schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
  progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_action_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_action_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_finished 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,
    system_tags json_element_t,
    fsu_cycle_id varchar2,
    related_fsu_action_id varchar2,
    schedule_details dbms_cloud_oci_fleet_software_update_schedule_details_t,
    progress dbms_cloud_oci_fleet_software_update_fsu_action_progress_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_stage_action_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_action_summary_t type.

Fields

Field Description

fsu_cycle_id

(required) OCID identifier for the Exadata Fleet Update Cycle the Action will be part of.

related_fsu_action_id

(optional) OCID identifier for the Exadata Fleet Update Action.

schedule_details

(optional)

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_STAGE_FSU_JOB_T Type

Stage Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_stage_fsu_job_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_fsu_job_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_fsu_job_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_details_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_stage_fsu_job_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_t type.

Fields

Field Description

fsu_collection_id

(required) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(required) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_STAGE_FSU_JOB_SUMMARY_T Type

Summary of Stage Exadata Fleet Update Job resource.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_stage_fsu_job_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_job_summary_t (
  fsu_collection_id varchar2(32767),
  fsu_cycle_id varchar2(32767),
  target_id varchar2(32767),
  schedule dbms_cloud_oci_fleet_software_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_fsu_job_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_stage_fsu_job_summary_t (
    id varchar2,
    display_name varchar2,
    l_type varchar2,
    compartment_id varchar2,
    fsu_action_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_job_progress_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_finished timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    fsu_collection_id varchar2,
    fsu_cycle_id varchar2,
    target_id varchar2,
    schedule dbms_cloud_oci_fleet_software_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_stage_fsu_job_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_job_summary_t type.

Fields

Field Description

fsu_collection_id

(optional) OCID of the Exadata Fleet Update Collection that the job is executing on.

fsu_cycle_id

(optional) OCID of the Exadata Fleet Update Cycle that this job is part of.

target_id

(optional) OCID of Target resource on which the job is executing the action.

schedule

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_START_TIME_SCHEDULE_DETAILS_T Type

Start time details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. If Stage and Apply Actions are created with a timeToStart specified during Exadata Fleet Update Cycle creation, Apply should be scheduled at least 24 hours after the start time of the Stage Action.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_start_time_schedule_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_schedule_details_t (
  time_to_start timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_start_time_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_start_time_schedule_details_t (
    l_type varchar2,
    time_to_start timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_start_time_schedule_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_schedule_details_t type.

Fields

Field Description

time_to_start

(required) The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_IDS_REMOVE_TARGETS_DETAILS_T Type

Remove a list of targets from a Exadata Fleet Update Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_target_ids_remove_targets_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_remove_fsu_collection_targets_details_t (
  targets dbms_cloud_oci_fleet_software_update_target_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_target_ids_remove_targets_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_target_ids_remove_targets_details_t (
    removal_strategy varchar2,
    targets dbms_cloud_oci_fleet_software_update_target_entry_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_target_ids_remove_targets_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_remove_fsu_collection_targets_details_t type.

Fields

Field Description

targets

(required) List of target entries to remove from the Exadata Fleet Update Collection.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_PROGRESS_SUMMARY_T Type

Progress details of the executing job for a Database target.

Syntax

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

Fields

Field Description

operation_type

(optional) Type of operations being executed.

Allowed values are: 'STAGE', 'PRECHECK', 'APPLY', 'ROLLBACK'

progress_of_operation

(optional) Percentage of progress of the operation in execution.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_SUMMARY_T Type

Details of a target member of a Exadata Fleet Update Collection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_target_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  target dbms_cloud_oci_fleet_software_update_target_details_t,
  current_version varchar2(32767),
  status varchar2(32767),
  executing_fsu_job_id varchar2(32767),
  active_fsu_cycle_id varchar2(32767),
  progress dbms_cloud_oci_fleet_software_update_target_progress_summary_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_target_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_target_summary_t (
    target dbms_cloud_oci_fleet_software_update_target_details_t,
    current_version varchar2,
    status varchar2,
    executing_fsu_job_id varchar2,
    active_fsu_cycle_id varchar2,
    progress dbms_cloud_oci_fleet_software_update_target_progress_summary_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

target

(optional)

current_version

(optional) Current version of the target

status

(optional) Status of the target in the Exadata Fleet Update Collection.

Allowed values are: 'IDLE', 'EXECUTING_JOB', 'JOB_FAILED'

executing_fsu_job_id

(optional) Exadata Fleet Update Job OCID executing an action in the target. Null if no job is being executed.

active_fsu_cycle_id

(optional) Active Exadata Fleet Update Cycle OCID. Null if no Cycle is active that has this target as member.

progress

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_target_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_target_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_target_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_TARGET_SUMMARY_COLLECTION_T Type

List of TargetSummary objects.

Syntax

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

Fields

Field Description

items

(required) List of TargetSummary entries.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_FSU_ACTION_DETAILS_T Type

Exadata Fleet Update Action resource details to update.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t (
    l_type varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) Type of Exadata Fleet Update Action to update. Specifying this option will not change the Action type.

Allowed values are: 'STAGE', 'PRECHECK', 'APPLY', 'ROLLBACK_AND_REMOVE_TARGET', 'CLEANUP'

display_name

(optional) Exadata Fleet Update Action display 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_FLEET_SOFTWARE_UPDATE_UPDATE_APPLY_ACTION_DETAILS_T Type

Apply Exadata Fleet Update Action update details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_apply_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t (
  schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_apply_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_apply_action_details_t (
    l_type varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_apply_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t type.

Fields

Field Description

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_CLEANUP_ACTION_DETAILS_T Type

Cleanup Exadata Fleet Update Action update details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_cleanup_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t (
  schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_cleanup_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_cleanup_action_details_t (
    l_type varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_cleanup_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t type.

Fields

Field Description

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_FIFTY_FIFTY_BATCHING_STRATEGY_DETAILS_T Type

Fifty-Fifty batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_fifty_fifty_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t (
  is_wait_for_batch_resume number,
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_fifty_fifty_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_fifty_fifty_batching_strategy_details_t (
    l_type varchar2,
    is_wait_for_batch_resume number,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_fifty_fifty_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t type.

Fields

Field Description

is_wait_for_batch_resume

(optional) True to wait for customer to resume the Apply Action once the first half is done. False to automatically patch the second half.

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_FSU_COLLECTION_DETAILS_T Type

The information to Update Exadata Fleet Update Collection.

Syntax

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

Fields

Field Description

display_name

(optional) Exadata Fleet Update Collection display 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_FLEET_SOFTWARE_UPDATE_UPDATE_FSU_CYCLE_DETAILS_T Type

Update Exadata Fleet Update Cycle resource details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_fsu_cycle_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  l_type varchar2(32767),
  goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
  batching_strategy dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_fsu_cycle_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_fsu_cycle_details_t (
    display_name varchar2,
    l_type varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    batching_strategy dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

display_name

(optional) Exadata Fleet Update Cycle display name.

l_type

(required) Type of Exadata Fleet Update Cycle to update. This will not change the Maintenance Cycle type, it is to define the set of properties that can be updated depending on the Cycle type. Type value should match the Maintenance Cycle type.

Allowed values are: 'PATCH'

goal_version_details

(optional)

batching_strategy

(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_FLEET_SOFTWARE_UPDATE_UPDATE_FSU_DISCOVERY_DETAILS_T Type

The information to Update Exadata Fleet Update Discovery resource.

Syntax

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

Fields

Field Description

display_name

(optional) Fleet Software Update Collection display 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_FLEET_SOFTWARE_UPDATE_UPDATE_FSU_JOB_DETAILS_T Type

Update Exadata Fleet Update Job Details.

Syntax

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

Fields

Field Description

display_name

(optional) Name of the job.

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_FLEET_SOFTWARE_UPDATE_UPDATE_NON_ROLLING_BATCHING_STRATEGY_DETAILS_T Type

Non-rolling batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_non_rolling_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_non_rolling_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_non_rolling_batching_strategy_details_t (
    l_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_non_rolling_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t type.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_PATCH_FSU_CYCLE_T Type

Update Patch Exadata Fleet Update Cycle resource details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_patch_fsu_cycle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_fsu_cycle_details_t (
  is_ignore_patches number,
  is_ignore_missing_patches dbms_cloud_oci_fleet_software_update_varchar2_tbl,
  max_drain_timeout_in_seconds number,
  is_keep_placement number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_patch_fsu_cycle_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_patch_fsu_cycle_t (
    display_name varchar2,
    l_type varchar2,
    goal_version_details dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t,
    batching_strategy dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    is_ignore_patches number,
    is_ignore_missing_patches dbms_cloud_oci_fleet_software_update_varchar2_tbl,
    max_drain_timeout_in_seconds number,
    is_keep_placement number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_patch_fsu_cycle_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_fsu_cycle_details_t type.

Fields

Field Description

is_ignore_patches

(optional) Ignore all patches between the source and target homes during patching.

is_ignore_missing_patches

(optional) List of patch IDs to ignore. An empty array removes the previously stored patch IDs in the Maintenance Cycle properties.

max_drain_timeout_in_seconds

(optional) Service drain timeout specified in seconds.

is_keep_placement

(optional) Ensure that services of administrator-managed Oracle RAC or Oracle RAC One databases are running on the same instances before and after the move operation.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_PRECHECK_ACTION_DETAILS_T Type

Precheck Exadata Fleet Update Action update details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_precheck_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t (
  schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_precheck_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_precheck_action_details_t (
    l_type varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_precheck_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t type.

Fields

Field Description

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_ROLLBACK_ACTION_DETAILS_T Type

Rollback Exadata Fleet Update Action update details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_rollback_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t (
  schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_rollback_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_rollback_action_details_t (
    l_type varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_rollback_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t type.

Fields

Field Description

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_SEQUENTIAL_BATCHING_STRATEGY_DETAILS_T Type

Sequential batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_sequential_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t (
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_sequential_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_sequential_batching_strategy_details_t (
    l_type varchar2,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_sequential_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t type.

Fields

Field Description

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_SERVICE_AVAILABILITY_FACTOR_BATCHING_STRATEGY_DETAILS_T Type

Service Availability Factor batching strategy details to use during PRECHECK and APPLY Cycle Actions.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_service_availability_factor_batching_strategy_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t (
  percentage number,
  is_force_rolling number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_service_availability_factor_batching_strategy_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_service_availability_factor_batching_strategy_details_t (
    l_type varchar2,
    percentage number,
    is_force_rolling number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_service_availability_factor_batching_strategy_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_batching_strategy_details_t type.

Fields

Field Description

percentage

(optional) Percentage of availability in the service during the Patch operation.

is_force_rolling

(optional) True to force rolling patching.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_STAGE_ACTION_DETAILS_T Type

Stage Exadata Fleet Update Action update details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_stage_action_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t (
  schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_stage_action_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_stage_action_details_t (
    l_type varchar2,
    display_name varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    schedule_details dbms_cloud_oci_fleet_software_update_update_schedule_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_stage_action_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_fsu_action_details_t type.

Fields

Field Description

schedule_details

(optional)

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_UPDATE_START_TIME_SCHEDULE_DETAILS_T Type

Start time details for the Exadata Fleet Update Action. The specified time should not conflict with existing Exadata Infrastructure maintenance windows. If Stage and Apply Actions are created with a timeToStart specified during Exadata Fleet Update Cycle creation, Apply should be scheduled at least 24 hours after the start time of the Stage Action.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_update_start_time_schedule_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_update_schedule_details_t (
  time_to_start timestamp with time zone,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_start_time_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_update_start_time_schedule_details_t (
    l_type varchar2,
    time_to_start timestamp with time zone
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_update_start_time_schedule_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_update_schedule_details_t type.

Fields

Field Description

time_to_start

(required) The date and time the Exadata Fleet Update Action is expected to start. RFC 3339, section 14.29.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_VERSION_FSU_TARGET_DETAILS_T Type

Exadata Fleet Update Cycle Target version string details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_version_fsu_target_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t (
  version varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_version_fsu_target_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_version_fsu_target_details_t (
    l_type varchar2,
    home_policy varchar2,
    new_home_prefix varchar2,
    version varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_version_fsu_target_details_t is a subtype of the dbms_cloud_oci_fleet_software_update_fsu_goal_version_details_t type.

Fields

Field Description

version

(required) Target DB or GI version string for the Exadata Fleet Update Cycle.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_VM_CLUSTER_TARGET_SUMMARY_T Type

Details of a VmCluster target member of a Exadata Fleet Update Collection. Stored references of the resource documented in https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/VmCluster/

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_vm_cluster_target_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_fleet_software_update_target_details_t (
  infrastructure_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_vm_cluster_target_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_vm_cluster_target_summary_t (
    entity_type varchar2,
    id varchar2,
    compartment_id varchar2,
    infrastructure_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_fleet_software_update_vm_cluster_target_summary_t is a subtype of the dbms_cloud_oci_fleet_software_update_target_details_t type.

Fields

Field Description

infrastructure_id

(optional) OCID of the related Exadata Infrastructure or Cloud Exadata Infrastructure resource.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_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),
  metadata json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_resource_t (
    entity_type varchar2,
    action_type varchar2,
    identifier varchar2,
    entity_uri varchar2,
    metadata json_element_t
  ) 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.

metadata

(optional) Additional information that helps to explain the resource.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_T Type

A description of workrequest status.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_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_fleet_software_update_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_fleet_software_update_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_fleet_software_update_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) Type of the work request.

Allowed values are: 'CREATE_DISCOVERY', 'DELETE_DISCOVERY', 'CREATE_COLLECTION', 'UPDATE_COLLECTION', 'DELETE_COLLECTION', 'MOVE_COLLECTION', 'ADD_TARGETS_TO_COLLECTION', 'REMOVE_TARGETS_IN_COLLECTION', 'CREATE_MAINTENANCE_CYCLE', 'UPDATE_MAINTENANCE_CYCLE', 'DELETE_MAINTENANCE_CYCLE', 'MOVE_MAINTENANCE_CYCLE', 'CLONE_MAINTENANCE_CYCLE', 'CREATE_ACTION', 'UPDATE_ACTION', 'DELETE_ACTION', 'MOVE_ACTION', 'PATCH_ACTION', 'CLEANUP_ACTION', 'ROLLBACK_AND_REMOVE_ACTION', 'APPLY_ACTION', 'PRECHECK_ACTION', 'STAGE_ACTION'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', '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_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_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_fleet_software_update_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_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.cloud.oracle.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_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_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_fleet_software_update_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_fleet_software_update_work_request_error_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_error_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_error_collection_t (
    items dbms_cloud_oci_fleet_software_update_work_request_error_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestError objects.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_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_fleet_software_update_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_fleet_software_update_work_request_log_entry_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_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_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_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_fleet_software_update_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_fleet_software_update_work_request_log_entry_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_log_entry_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_log_entry_collection_t (
    items dbms_cloud_oci_fleet_software_update_work_request_log_entry_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestLogEntries.

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_SUMMARY_T Type

A summary of the status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_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_fleet_software_update_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_fleet_software_update_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_fleet_software_update_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) Type of the work request.

Allowed values are: 'CREATE_DISCOVERY', 'DELETE_DISCOVERY', 'CREATE_COLLECTION', 'UPDATE_COLLECTION', 'DELETE_COLLECTION', 'MOVE_COLLECTION', 'ADD_TARGETS_TO_COLLECTION', 'REMOVE_TARGETS_IN_COLLECTION', 'CREATE_MAINTENANCE_CYCLE', 'UPDATE_MAINTENANCE_CYCLE', 'DELETE_MAINTENANCE_CYCLE', 'MOVE_MAINTENANCE_CYCLE', 'CLONE_MAINTENANCE_CYCLE', 'CREATE_ACTION', 'UPDATE_ACTION', 'DELETE_ACTION', 'MOVE_ACTION', 'PATCH_ACTION', 'CLEANUP_ACTION', 'ROLLBACK_AND_REMOVE_ACTION', 'APPLY_ACTION', 'PRECHECK_ACTION', 'STAGE_ACTION'

status

(required) Status of current work request.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', '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_FLEET_SOFTWARE_UPDATE_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_fleet_software_update_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_fleet_software_update_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_fleet_software_update_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_FLEET_SOFTWARE_UPDATE_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_fleet_software_update_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  items dbms_cloud_oci_fleet_software_update_work_request_summary_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_summary_collection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_fleet_software_update_work_request_summary_collection_t (
    items dbms_cloud_oci_fleet_software_update_work_request_summary_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

items

(required) List of workRequestSummary objects.

Was this article helpful?