Disaster Recovery Common Types

DBMS_CLOUD_OCI_DISASTER_RECOVERY_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_DISASTER_RECOVERY_ASSOCIATE_DR_PROTECTION_GROUP_DETAILS_T Type

The details for associating a DR protection group with a peer DR protection group.

Syntax

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

Fields

Field Description

peer_id

(optional) The OCID of the peer DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_region

(optional) The region of the peer DR protection group. Example: `us-ashburn-1`

role

(required) The role of the DR protection group. Example: `STANDBY`

Allowed values are: 'PRIMARY', 'STANDBY', 'UNCONFIGURED'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_BLOCK_VOLUME_ATTACHMENT_DETAILS_T Type

The details for attaching or detaching a block volume.

Syntax

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

Fields

Field Description

volume_attachment_reference_instance_id

(required) The OCID of the reference compute instance from which to obtain the attachment details for the volume. This reference compute instance is from the peer DR protection group. Example: `ocid1.instance.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_BLOCK_VOLUME_MOUNT_DETAILS_T Type

The details for mounting or unmounting the file system on a block volume.

Syntax

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

Fields

Field Description

mount_point

(required) The physical mount point used for mounting and unmounting the file system on a block volume. Example: `/mnt/yourmountpoint`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_EXECUTION_CONTROL_DETAILS_T Type

The details for controlling plan execution.

Syntax

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

Fields

Field Description

action_type

(required) The type of control action.

Allowed values are: 'CANCEL', 'PAUSE', 'RESUME'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CANCEL_DR_PLAN_EXECUTION_DETAILS_T Type

The details for cancelling a DR plan execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_cancel_dr_plan_execution_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_control_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_cancel_dr_plan_execution_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_cancel_dr_plan_execution_details_t (
    action_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_cancel_dr_plan_execution_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_control_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CHANGE_DR_PROTECTION_GROUP_COMPARTMENT_DETAILS_T Type

The details for moving a DR protection group to another compartment.

Syntax

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

Fields

Field Description

compartment_id

(required) The OCID of the compartment to which the DR protection group should be moved. Example: `ocid1.compartment.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FILE_SYSTEM_MOUNT_DETAILS_T Type

Mount details of a file system.

Syntax

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

Fields

Field Description

mount_target_id

(required) The OCID of the mount target for this file system. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FILE_SYSTEM_UNMOUNT_DETAILS_T Type

Unmount details for a file system.

Syntax

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

Fields

Field Description

mount_target_id

(required) The OCID of the mount target for this file system. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_MOVABLE_FILE_SYSTEM_OPERATION_T Type

The details of operations performed on a file system.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  export_path varchar2(32767),
  mount_point varchar2(32767),
  mount_details dbms_cloud_oci_disaster_recovery_file_system_mount_details_t,
  unmount_details dbms_cloud_oci_disaster_recovery_file_system_unmount_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_t (
    export_path varchar2,
    mount_point varchar2,
    mount_details dbms_cloud_oci_disaster_recovery_file_system_mount_details_t,
    unmount_details dbms_cloud_oci_disaster_recovery_file_system_unmount_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

export_path

(required) The export path of the file system. Example: `/fs-export-path`

mount_point

(required) The physical mount point of the file system on a host. Example: `/mnt/yourmountpoint`

mount_details

(required)

unmount_details

(required)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_MOVABLE_VNIC_MAPPING_T Type

Source VNIC to destination subnet mapping for a movable compute instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_vnic_id varchar2(32767),
  destination_subnet_id varchar2(32767),
  destination_primary_private_ip_address varchar2(32767),
  destination_primary_private_ip_hostname_label varchar2(32767),
  destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_t (
    source_vnic_id varchar2,
    destination_subnet_id varchar2,
    destination_primary_private_ip_address varchar2,
    destination_primary_private_ip_hostname_label varchar2,
    destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_vnic_id

(required) The OCID of the source VNIC. Example: `ocid1.vnic.oc1..uniqueID`

destination_subnet_id

(required) The OCID of the destination subnet to which the source VNIC should connect. Example: `ocid1.subnet.oc1..uniqueID`

destination_primary_private_ip_address

(optional) The private IP address to be assigned as the VNIC's primary IP address in the destination subnet. This must be a valid IP address in the destination subnet and the IP address must be available. Example: `10.0.3.3`

destination_primary_private_ip_hostname_label

(optional) The hostname label to be assigned in the destination subnet for the primary private IP of the source VNIC. This label is the hostname portion of the private IP's fully qualified domain name (FQDN) (for example, 'myhost1' in the FQDN 'myhost1.subnet123.vcn1.oraclevcn.com'). Example: `myhost1`

destination_nsg_id_list

(optional) A list of OCIDs of network security groups (NSG) in the destination region which should be assigned to the source VNIC. Example: `[ ocid1.networksecuritygroup.oc1..uniqueID, ocid1.networksecuritygroup.oc1..uniqueID ]`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_MOVABLE_VNIC_MAPPING_DETAILS_T Type

Source VNIC to destination subnet mapping for a movable compute instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_vnic_id varchar2(32767),
  destination_subnet_id varchar2(32767),
  destination_primary_private_ip_address varchar2(32767),
  destination_primary_private_ip_hostname_label varchar2(32767),
  destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_t (
    source_vnic_id varchar2,
    destination_subnet_id varchar2,
    destination_primary_private_ip_address varchar2,
    destination_primary_private_ip_hostname_label varchar2,
    destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_vnic_id

(required) The OCID of the source VNIC. Example: `ocid1.vnic.oc1..uniqueID`

destination_subnet_id

(required) The OCID of the destination subnet to which the source VNIC should connect. Example: `ocid1.subnet.oc1..uniqueID`

destination_primary_private_ip_address

(optional) The primary private IP address to be assigned to the source VNIC in the destination subnet. This IP address must belong to the destination subnet. Example: `10.0.3.3`

destination_primary_private_ip_hostname_label

(optional) The hostname label to be assigned in the destination subnet for the primary private IP of the source VNIC. This label is the hostname portion of the private IP's fully qualified domain name (FQDN) (for example, 'myhost1' in the FQDN 'myhost1.subnet123.vcn1.oraclevcn.com'). Example: `myhost1`

destination_nsg_id_list

(optional) A list of OCIDs of network security groups (NSG) in the destination region which should be assigned to the source VNIC. Example: `[ ocid1.networksecuritygroup.oc1..uniqueID, ocid1.networksecuritygroup.oc1..uniqueID ]`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_NON_MOVABLE_BLOCK_VOLUME_OPERATION_T Type

The details of operations performed on a block volume.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  block_volume_id varchar2(32767),
  attachment_details dbms_cloud_oci_disaster_recovery_block_volume_attachment_details_t,
  mount_details dbms_cloud_oci_disaster_recovery_block_volume_mount_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_t (
    block_volume_id varchar2,
    attachment_details dbms_cloud_oci_disaster_recovery_block_volume_attachment_details_t,
    mount_details dbms_cloud_oci_disaster_recovery_block_volume_mount_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

block_volume_id

(required) The OCID of the block volume. Example: `ocid1.volume.oc1..uniqueID`

attachment_details

(optional)

mount_details

(optional)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_NON_MOVABLE_FILE_SYSTEM_OPERATION_T Type

The details of operations performed on a file system.

Syntax

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

Fields

Field Description

export_path

(required) The export path of the file system. Example: `/fs-export-path`

mount_point

(required) The physical mount point of the file system on a host. Example: `/mnt/yourmountpoint`

mount_target_id

(required) The OCID of mount target. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_VNIC_MAPPING_T Type

Deprecated. Source VNIC to destination subnet mapping for a compute instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_vnic_id varchar2(32767),
  destination_subnet_id varchar2(32767),
  destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_t (
    source_vnic_id varchar2,
    destination_subnet_id varchar2,
    destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_vnic_id

(required) The OCID of the VNIC. Example: `ocid1.vnic.oc1..uniqueID`

destination_subnet_id

(required) The OCID of the destination subnet to which the source VNIC should connect. Example: `ocid1.subnet.oc1..uniqueID`

destination_nsg_id_list

(optional) A list of OCIDs of network security groups (NSG) in the destination region which should be assigned to the source VNIC. Example: `[ ocid1.networksecuritygroup.oc1..uniqueID1, ocid1.networksecuritygroup.oc1..uniqueID2 ]`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_VNIC_MAPPING_DETAILS_T Type

Deprecated. Source VNIC to destination subnet mapping for a compute instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  source_vnic_id varchar2(32767),
  destination_subnet_id varchar2(32767),
  destination_primary_private_ip_address varchar2(32767),
  destination_primary_private_ip_hostname_label varchar2(32767),
  destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_t (
    source_vnic_id varchar2,
    destination_subnet_id varchar2,
    destination_primary_private_ip_address varchar2,
    destination_primary_private_ip_hostname_label varchar2,
    destination_nsg_id_list dbms_cloud_oci_disaster_recovery_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

source_vnic_id

(required) The OCID of the VNIC. Example: `ocid1.vnic.oc1..uniqueID`

destination_subnet_id

(required) The OCID of the destination subnet to which this source VNIC should connect. Example: `ocid1.subnet.oc1..uniqueID`

destination_primary_private_ip_address

(optional) The primary private IP address to be assigned to the VNIC in the destination region. This address must belong to the destination subnet. Example: `10.0.3.3`

destination_primary_private_ip_hostname_label

(optional) The hostname label to be assigned in the destination subnet for the primary private IP of the source VNIC. This label is the hostname portion of the private IP's fully qualified domain name (FQDN) (for example, 'myhost1' in the FQDN 'myhost1.subnet123.vcn1.oraclevcn.com'). Example: `myhost1`

destination_nsg_id_list

(optional) A list of OCIDs of network security groups (NSG) in the destination region which should be assigned to the source VNIC. Example: `[ ocid1.networksecuritygroup.oc1..uniqueID, ocid1.networksecuritygroup.oc1..uniqueID ]`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_BLOCK_VOLUME_ATTACHMENT_DETAILS_T Type

The details for creating a block volume attachment.

Syntax

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

Fields

Field Description

volume_attachment_reference_instance_id

(optional) The OCID of the reference compute instance from which to obtain the attachment details for the volume. This reference compute instance is from the peer DR protection group. Example: `ocid1.instance.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_BLOCK_VOLUME_MOUNT_DETAILS_T Type

The details for creating a mount for a file system on a block volume.

Syntax

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

Fields

Field Description

mount_point

(optional) The physical mount point used for mounting the file system on the block volume. Example: `/mnt/yourmountpoint`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_FILE_SYSTEM_MOUNT_DETAILS_T Type

The details for creating a file system mount.

Syntax

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

Fields

Field Description

mount_target_id

(optional) The OCID of the mount target for this file system. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_FILE_SYSTEM_UNMOUNT_DETAILS_T Type

The details for creating a file system unmount.

Syntax

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

Fields

Field Description

mount_target_id

(optional) The OCID of the mount target. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_COMPUTE_INSTANCE_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_T Type

The details for creating the operations performed on a file system for movable compute instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  export_path varchar2(32767),
  mount_point varchar2(32767),
  mount_details dbms_cloud_oci_disaster_recovery_create_file_system_mount_details_t,
  unmount_details dbms_cloud_oci_disaster_recovery_create_file_system_unmount_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_t (
    export_path varchar2,
    mount_point varchar2,
    mount_details dbms_cloud_oci_disaster_recovery_create_file_system_mount_details_t,
    unmount_details dbms_cloud_oci_disaster_recovery_create_file_system_unmount_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

export_path

(required) The export path of the file system. Example: `/fs-export-path`

mount_point

(required) The physical mount point of the file system on a host. Example: `/mnt/yourmountpoint`

mount_details

(required)

unmount_details

(required)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_COMPUTE_INSTANCE_NON_MOVABLE_BLOCK_VOLUME_OPERATION_DETAILS_T Type

The details for creating the operations performed on a block volume.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  block_volume_id varchar2(32767),
  attachment_details dbms_cloud_oci_disaster_recovery_create_block_volume_attachment_details_t,
  mount_details dbms_cloud_oci_disaster_recovery_create_block_volume_mount_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_t (
    block_volume_id varchar2,
    attachment_details dbms_cloud_oci_disaster_recovery_create_block_volume_attachment_details_t,
    mount_details dbms_cloud_oci_disaster_recovery_create_block_volume_mount_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

block_volume_id

(required) The OCID of the block volume. Example: `ocid1.volume.oc1..uniqueID`

attachment_details

(optional)

mount_details

(optional)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_COMPUTE_INSTANCE_NON_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_T Type

The details for creating the operations performed on a file system for non-movable compute instance.

Syntax

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

Fields

Field Description

export_path

(required) The export path of the file system. Example: `/fs-export-path`

mount_point

(required) The physical mount point of the file system on a host. Example: `/mnt/yourmountpoint`

mount_target_id

(required) The OCID of the mount target. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PLAN_DETAILS_T Type

The details for creating a DR plan.

Syntax

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

Fields

Field Description

display_name

(required) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`

l_type

(required) The type of DR plan to be created.

Allowed values are: 'SWITCHOVER', 'FAILOVER', 'START_DRILL', 'STOP_DRILL'

dr_protection_group_id

(required) The OCID of the DR protection group to which this DR plan belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_EXECUTION_OPTION_DETAILS_T Type

The options for a plan execution.

Syntax

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

Fields

Field Description

plan_execution_type

(required) The type of the plan execution.

Allowed values are: 'SWITCHOVER', 'SWITCHOVER_PRECHECK', 'FAILOVER', 'FAILOVER_PRECHECK', 'START_DRILL', 'START_DRILL_PRECHECK', 'STOP_DRILL', 'STOP_DRILL_PRECHECK'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PLAN_EXECUTION_DETAILS_T Type

The details for creating a DR plan execution.

Syntax

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

Fields

Field Description

display_name

(optional) The display name of the DR plan execution. Example: `Execution - EBS Switchover PHX to IAD`

plan_id

(required) The OCID of the DR plan. Example: `ocid1.drplan.oc1..uniqueID`

execution_options

(required)

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_OBJECT_STORAGE_LOG_LOCATION_DETAILS_T Type

The details for creating an object storage log location for a DR protection group.

Syntax

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

Fields

Field Description

namespace

(required) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`

bucket

(required) The bucket name inside the object storage namespace. Example: `operation_logs`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_DETAILS_T Type

Create properties for a member in a DR protection group.

Syntax

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

Fields

Field Description

member_id

(required) The OCID of the member. Example: `ocid1.instance.oc1..uniqueID`

member_type

(required) The type of the member.

Allowed values are: 'COMPUTE_INSTANCE', 'COMPUTE_INSTANCE_MOVABLE', 'COMPUTE_INSTANCE_NON_MOVABLE', 'VOLUME_GROUP', 'DATABASE', 'AUTONOMOUS_DATABASE', 'LOAD_BALANCER', 'NETWORK_LOAD_BALANCER', 'FILE_SYSTEM'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_DETAILS_T Type

The details for creating a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  log_location dbms_cloud_oci_disaster_recovery_create_object_storage_log_location_details_t,
  association dbms_cloud_oci_disaster_recovery_associate_dr_protection_group_details_t,
  members dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_details_t (
    compartment_id varchar2,
    display_name varchar2,
    log_location dbms_cloud_oci_disaster_recovery_create_object_storage_log_location_details_t,
    association dbms_cloud_oci_disaster_recovery_associate_dr_protection_group_details_t,
    members dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compartment_id

(required) The OCID of the compartment in which to create the DR protection group. Example: `ocid1.compartment.oc1..uniqueID`

display_name

(required) The display name of the DR protection group. Example: `EBS PHX Group`

log_location

(required)

association

(optional)

members

(optional) A list of DR protection group members.

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_AUTONOMOUS_DATABASE_DETAILS_T Type

Create properties for an Autonomous Database Serverless member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_autonomous_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_autonomous_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_autonomous_database_details_t (
    member_id varchar2,
    member_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_autonomous_database_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_VNIC_MAPPING_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_DETAILS_T Type

Deprecated. Create properties for a compute instance member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  is_movable number,
  vnic_mapping dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_tbl,
  destination_compartment_id varchar2(32767),
  destination_dedicated_vm_host_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_details_t (
    member_id varchar2,
    member_type varchar2,
    is_movable number,
    vnic_mapping dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_tbl,
    destination_compartment_id varchar2,
    destination_dedicated_vm_host_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

Fields

Field Description

is_movable

(optional) A flag indicating if the compute instance should be moved during DR operations. Example: `false`

vnic_mapping

(optional) A list of compute instance VNIC mappings.

destination_compartment_id

(optional) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`

destination_dedicated_vm_host_id

(optional) The OCID of a dedicated VM host in the destination region where the compute instance should be launched. Example: `ocid1.dedicatedvmhost.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_MOVABLE_VNIC_MAPPING_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_COMPUTE_INSTANCE_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_MOVABLE_DETAILS_T Type

Create properties for a movable compute instance member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_movable_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  is_retain_fault_domain number,
  destination_capacity_reservation_id varchar2(32767),
  vnic_mappings dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_tbl,
  destination_compartment_id varchar2(32767),
  destination_dedicated_vm_host_id varchar2(32767),
  file_system_operations dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_movable_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_movable_details_t (
    member_id varchar2,
    member_type varchar2,
    is_retain_fault_domain number,
    destination_capacity_reservation_id varchar2,
    vnic_mappings dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_tbl,
    destination_compartment_id varchar2,
    destination_dedicated_vm_host_id varchar2,
    file_system_operations dbms_cloud_oci_disaster_recovery_create_compute_instance_movable_file_system_operation_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_movable_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

Fields

Field Description

is_retain_fault_domain

(optional) A flag indicating if the compute instance should be moved to the same fault domain in the destination region. The compute instance launch will fail if this flag is set to true and capacity is not available in the specified fault domain in the destination region. Example: `false`

destination_capacity_reservation_id

(optional) The OCID of a capacity reservation in the destination region which will be used to launch the compute instance. Example: `ocid1.capacityreservation.oc1..uniqueID`

vnic_mappings

(optional) A list of compute instance VNIC mappings.

destination_compartment_id

(optional) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`

destination_dedicated_vm_host_id

(optional) The OCID of a dedicated VM host in the destination region where the compute instance should be launched. Example: `ocid1.dedicatedvmhost.oc1..uniqueID`

file_system_operations

(optional) A list of operations performed on file systems used by the compute instance.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_COMPUTE_INSTANCE_NON_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_file_system_operation_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_file_system_operation_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_file_system_operation_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_COMPUTE_INSTANCE_NON_MOVABLE_BLOCK_VOLUME_OPERATION_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_NON_MOVABLE_DETAILS_T Type

Create properties for a non-movable compute instance member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_non_movable_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  is_start_stop_enabled number,
  file_system_operations dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_file_system_operation_details_tbl,
  block_volume_operations dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_non_movable_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_non_movable_details_t (
    member_id varchar2,
    member_type varchar2,
    is_start_stop_enabled number,
    file_system_operations dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_file_system_operation_details_tbl,
    block_volume_operations dbms_cloud_oci_disaster_recovery_create_compute_instance_non_movable_block_volume_operation_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_compute_instance_non_movable_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

Fields

Field Description

is_start_stop_enabled

(optional) A flag indicating whether the non-movable compute instance should be started and stopped during DR operations. *Prechecks cannot be executed on stopped instances that are configured to be started.*

file_system_operations

(optional) A list of operations performed on file systems used by the compute instance.

block_volume_operations

(optional) A list of operations performed on block volumes used by the compute instance.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_DATABASE_DETAILS_T Type

Create properties for a Database (DBCS) member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  password_vault_secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_database_details_t (
    member_id varchar2,
    member_type varchar2,
    password_vault_secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_database_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

Fields

Field Description

password_vault_secret_id

(optional) The OCID of the vault secret where the database SYSDBA password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FILE_SYSTEM_EXPORT_MAPPING_DETAILS_T Type

The mapping between a file system export in the primary region and a mount target in the standby region.

Syntax

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

Fields

Field Description

export_id

(required) The OCID of the export path in the primary region used to mount or unmount the file system. Example: `ocid1.export.oc1..uniqueID`

destination_mount_target_id

(required) The OCID of the destination mount target in the destination region which is used to export the file system. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FILE_SYSTEM_EXPORT_MAPPING_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_file_system_export_mapping_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_file_system_export_mapping_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_file_system_export_mapping_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_FILE_SYSTEM_DETAILS_T Type

Create properties for a file system member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_file_system_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  destination_availability_domain varchar2(32767),
  export_mappings dbms_cloud_oci_disaster_recovery_file_system_export_mapping_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_file_system_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_file_system_details_t (
    member_id varchar2,
    member_type varchar2,
    destination_availability_domain varchar2,
    export_mappings dbms_cloud_oci_disaster_recovery_file_system_export_mapping_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_file_system_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

Fields

Field Description

destination_availability_domain

(optional) The availability domain of the destination mount target. Example: `BBTh:region-AD`

export_mappings

(optional) A list of mappings between file system exports in the primary region and mount targets in the standby region.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_LOAD_BALANCER_BACKEND_SET_MAPPING_DETAILS_T Type

Create backend set mapping properties for a load balancer member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_backend_set_for_non_movable number,
  source_backend_set_name varchar2(32767),
  destination_backend_set_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_t (
    is_backend_set_for_non_movable number,
    source_backend_set_name varchar2,
    destination_backend_set_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_backend_set_for_non_movable

(required) This flag specifies if this backend set is used for traffic for non-movable compute instances. Backend sets that point to non-movable instances are only enabled or disabled during DR, their contents are not altered. For non-movable instances this flag should be set to 'true'. Backend sets that point to movable instances are emptied and their contents are transferred to the destination region load balancer. For movable instances this flag should be set to 'false'. Example: `true`

source_backend_set_name

(required) The name of the source backend set. Example: `Source-BackendSet-1`

destination_backend_set_name

(required) The name of the destination backend set. Example: `Destination-BackendSet-1`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_LOAD_BALANCER_BACKEND_SET_MAPPING_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_LOAD_BALANCER_DETAILS_T Type

Create properties for a load balancer member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_load_balancer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  destination_load_balancer_id varchar2(32767),
  backend_set_mappings dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_load_balancer_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_load_balancer_details_t (
    member_id varchar2,
    member_type varchar2,
    destination_load_balancer_id varchar2,
    backend_set_mappings dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_load_balancer_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

Fields

Field Description

destination_load_balancer_id

(optional) The OCID of the destination load balancer. Example: `ocid1.loadbalancer.oc1..uniqueID`

backend_set_mappings

(optional) A list of backend set mappings that are used to transfer or update backends during DR.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_NETWORK_LOAD_BALANCER_BACKEND_SET_MAPPING_DETAILS_T Type

Create backend set mapping properties for a network load balancer member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_backend_set_for_non_movable number,
  source_backend_set_name varchar2(32767),
  destination_backend_set_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_t (
    is_backend_set_for_non_movable number,
    source_backend_set_name varchar2,
    destination_backend_set_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_backend_set_for_non_movable

(required) This flag specifies if this backend set is used for traffic for non-movable compute instances. Backend sets that point to non-movable instances are only enabled or disabled during DR, their contents are not altered. For non-movable instances this flag should be set to 'true'. Backend sets that point to movable instances are emptied and their contents are transferred to the destination region load balancer. For movable instances this flag should be set to 'false'. Example: `true`

source_backend_set_name

(required) The name of the source backend set. Example: `Source-BackendSet-1`

destination_backend_set_name

(required) The name of the destination backend set. Example: `Destination-BackendSet-1`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_NETWORK_LOAD_BALANCER_BACKEND_SET_MAPPING_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_NETWORK_LOAD_BALANCER_DETAILS_T Type

Create properties for a network load balancer member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_network_load_balancer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  destination_network_load_balancer_id varchar2(32767),
  backend_set_mappings dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_network_load_balancer_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_network_load_balancer_details_t (
    member_id varchar2,
    member_type varchar2,
    destination_network_load_balancer_id varchar2,
    backend_set_mappings dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_network_load_balancer_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

Fields

Field Description

destination_network_load_balancer_id

(optional) The OCID of the destination network load balancer. Example: `ocid1.networkloadbalancer.oc1..uniqueID`

backend_set_mappings

(optional) A list of backend set mappings that are used to transfer or update backends during DR.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_CREATE_DR_PROTECTION_GROUP_MEMBER_VOLUME_GROUP_DETAILS_T Type

Create properties for a volume group member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_volume_group_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_volume_group_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_volume_group_details_t (
    member_id varchar2,
    member_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_volume_group_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_create_dr_protection_group_member_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DISASSOCIATE_DR_PROTECTION_GROUP_DETAILS_T Type

The details for disassociating this DR protection group from a peer DR protection group.

Syntax

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

Fields

Field Description

l_type

(required) The default type.

Allowed values are: 'DEFAULT'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DISASSOCIATE_DR_PROTECTION_GROUP_DEFAULT_DETAILS_T Type

The default type.

Syntax

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

dbms_cloud_oci_disaster_recovery_disassociate_dr_protection_group_default_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_disassociate_dr_protection_group_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_USER_DEFINED_STEP_T Type

The details for a user-defined step in a DR plan.

Syntax

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

Fields

Field Description

step_type

(required) The type of the user-defined step. **RUN_OBJECTSTORE_SCRIPT_PRECHECK** - A step which performs a precheck on a script stored in OCI object storage. **RUN_LOCAL_SCRIPT_PRECHECK** - A step which performs a precheck on a script which resides locally on a compute instance. **INVOKE_FUNCTION_PRECHECK** - A step which performs a precheck on an OCI function. See https://docs.oracle.com/en-us/iaas/Content/Functions/home.htm. **RUN_OBJECTSTORE_SCRIPT** - A step which runs a script stored in OCI object storage. **RUN_LOCAL_SCRIPT** - A step which runs a script that resides locally on a compute instance. **INVOKE_FUNCTION** - A step which invokes an OCI function. See https://docs.oracle.com/en-us/iaas/Content/Functions/home.htm.

Allowed values are: 'RUN_OBJECTSTORE_SCRIPT_PRECHECK', 'RUN_LOCAL_SCRIPT_PRECHECK', 'INVOKE_FUNCTION_PRECHECK', 'RUN_OBJECTSTORE_SCRIPT', 'RUN_LOCAL_SCRIPT', 'INVOKE_FUNCTION'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_STEP_T Type

Details of a step in a DR plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_step_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  group_id varchar2(32767),
  member_id varchar2(32767),
  l_type varchar2(32767),
  display_name varchar2(32767),
  error_mode varchar2(32767),
  timeout number,
  is_enabled number,
  user_defined_step dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_step_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_step_t (
    id varchar2,
    group_id varchar2,
    member_id varchar2,
    l_type varchar2,
    display_name varchar2,
    error_mode varchar2,
    timeout number,
    is_enabled number,
    user_defined_step dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`

group_id

(required) The unique id of the group to which this step belongs. Must not be modified by user. Example: `sgid1.group..uniqueID`

member_id

(optional) The OCID of the member associated with this step. Example: `ocid1.database.oc1..uniqueID`

l_type

(required) The plan step type.

Allowed values are: 'COMPUTE_INSTANCE_STOP_PRECHECK', 'COMPUTE_INSTANCE_LAUNCH_PRECHECK', 'COMPUTE_INSTANCE_TERMINATE_PRECHECK', 'COMPUTE_INSTANCE_REMOVE_PRECHECK', 'VOLUME_GROUP_RESTORE_SWITCHOVER_PRECHECK', 'VOLUME_GROUP_RESTORE_FAILOVER_PRECHECK', 'DATABASE_SWITCHOVER_PRECHECK', 'DATABASE_FAILOVER_PRECHECK', 'AUTONOMOUS_DATABASE_SWITCHOVER_PRECHECK', 'AUTONOMOUS_DATABASE_FAILOVER_PRECHECK', 'USER_DEFINED_PRECHECK', 'COMPUTE_INSTANCE_LAUNCH', 'COMPUTE_INSTANCE_STOP', 'COMPUTE_INSTANCE_TERMINATE', 'COMPUTE_INSTANCE_REMOVE', 'DATABASE_SWITCHOVER', 'DATABASE_FAILOVER', 'AUTONOMOUS_DATABASE_SWITCHOVER', 'AUTONOMOUS_DATABASE_FAILOVER', 'VOLUME_GROUP_RESTORE_SWITCHOVER', 'VOLUME_GROUP_RESTORE_FAILOVER', 'VOLUME_GROUP_REVERSE', 'VOLUME_GROUP_DELETE', 'VOLUME_GROUP_REMOVE', 'VOLUME_GROUP_TERMINATE', 'USER_DEFINED', 'VOLUME_GROUP_RESTORE_START_DRILL_PRECHECK', 'VOLUME_GROUP_REMOVE_PRECHECK', 'VOLUME_GROUP_TERMINATE_PRECHECK', 'VOLUME_GROUP_RESTORE_START_DRILL', 'AUTONOMOUS_DATABASE_CREATE_CLONE_PRECHECK', 'AUTONOMOUS_DATABASE_DELETE_CLONE_PRECHECK', 'LOAD_BALANCER_UPDATE_PRIMARY_BACKEND_SET_PRECHECK', 'LOAD_BALANCER_UPDATE_STANDBY_BACKEND_SET_PRECHECK', 'FILE_SYSTEM_SWITCHOVER_PRECHECK', 'FILE_SYSTEM_FAILOVER_PRECHECK', 'FILE_SYSTEM_START_DRILL_PRECHECK', 'FILE_SYSTEM_STOP_DRILL_PRECHECK', 'FILE_SYSTEM_REMOVE_PRECHECK', 'FILE_SYSTEM_TERMINATE_PRECHECK', 'FILE_SYSTEM_MOUNT_PRECHECK', 'FILE_SYSTEM_UNMOUNT_PRECHECK', 'COMPUTE_INSTANCE_START_PRECHECK', 'COMPUTE_INSTANCE_ATTACH_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_INSTANCE_DETACH_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_INSTANCE_MOUNT_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_INSTANCE_UNMOUNT_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_CAPACITY_RESERVATION_START_DRILL_PRECHECK', 'COMPUTE_CAPACITY_AVAILABILITY_START_DRILL_PRECHECK', 'AUTONOMOUS_DATABASE_CREATE_CLONE', 'AUTONOMOUS_DATABASE_DELETE_CLONE', 'LOAD_BALANCER_UPDATE_PRIMARY_BACKEND_SET', 'LOAD_BALANCER_UPDATE_STANDBY_BACKEND_SET', 'FILE_SYSTEM_SWITCHOVER', 'FILE_SYSTEM_FAILOVER', 'FILE_SYSTEM_REMOVE', 'FILE_SYSTEM_REVERSE', 'FILE_SYSTEM_TERMINATE', 'FILE_SYSTEM_START_DRILL', 'FILE_SYSTEM_STOP_DRILL', 'COMPUTE_INSTANCE_START', 'COMPUTE_INSTANCE_ATTACH_BLOCK_VOLUMES', 'COMPUTE_INSTANCE_DETACH_BLOCK_VOLUMES', 'FILE_SYSTEM_MOUNT', 'FILE_SYSTEM_UNMOUNT', 'COMPUTE_CAPACITY_RESERVATION_SWITCHOVER_PRECHECK', 'COMPUTE_CAPACITY_RESERVATION_FAILOVER_PRECHECK', 'COMPUTE_CAPACITY_AVAILABILITY_SWITCHOVER_PRECHECK', 'COMPUTE_CAPACITY_AVAILABILITY_FAILOVER_PRECHECK'

display_name

(required) The display name of the group. Example: `DATABASE_SWITCHOVER`

error_mode

(required) The error mode for this step.

Allowed values are: 'STOP_ON_ERROR', 'CONTINUE_ON_ERROR'

timeout

(required) The timeout in seconds for executing this step. Example: `600`

is_enabled

(required) A flag indicating whether this step should be enabled for execution. Example: `true`

user_defined_step

(optional)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_STEP_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_dr_plan_step_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_step_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_plan_step_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_GROUP_T Type

Details of a group in a DR plan.

Syntax

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

Fields

Field Description

id

(required) The unique id of the group. Must not be modified by user. Example: `sgid1.group..uniqueID`

l_type

(required) The group type. Example: `BUILT_IN`

Allowed values are: 'USER_DEFINED', 'BUILT_IN', 'BUILT_IN_PRECHECK'

display_name

(required) The display name of the group. Example: `DATABASE_SWITCHOVER`

steps

(required) The list of steps in the group.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_GROUP_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_dr_plan_group_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_group_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_plan_group_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_T Type

The details of a DR plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_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_updated timestamp with time zone,
  dr_protection_group_id varchar2(32767),
  peer_dr_protection_group_id varchar2(32767),
  peer_region varchar2(32767),
  plan_groups dbms_cloud_oci_disaster_recovery_dr_plan_group_tbl,
  lifecycle_state varchar2(32767),
  life_cycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    l_type varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    dr_protection_group_id varchar2,
    peer_dr_protection_group_id varchar2,
    peer_region varchar2,
    plan_groups dbms_cloud_oci_disaster_recovery_dr_plan_group_tbl,
    lifecycle_state varchar2,
    life_cycle_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) The OCID of the DR plan. Example: `ocid1.drplan.oc1..uniqueID`

display_name

(required) The display name of the DR plan. Example: `EBS Switchover PHX to IAD`

compartment_id

(required) The OCID of the compartment containing the DR plan. Example: `ocid1.compartment.oc1..uniqueID`

l_type

(required) The type of the DR plan.

Allowed values are: 'SWITCHOVER', 'FAILOVER', 'START_DRILL', 'STOP_DRILL'

time_created

(required) The date and time the DR plan was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_updated

(required) The date and time the DR plan was updated. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

dr_protection_group_id

(required) The OCID of the DR protection group to which this DR plan belongs. Example: `ocid1.drplan.oc1..uniqueID`

peer_dr_protection_group_id

(required) The OCID of the peer DR protection group associated with this plan's DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_region

(required) The region of the peer DR protection group associated with this plan's DR protection group. Example: `us-ashburn-1`

plan_groups

(required) The list of groups in this DR plan.

lifecycle_state

(required) The current state of the DR plan.

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

life_cycle_details

(optional) A message describing the DR plan's 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: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

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

The summary of a DR plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  l_type varchar2(32767),
  dr_protection_group_id varchar2(32767),
  peer_dr_protection_group_id varchar2(32767),
  peer_region varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  life_cycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    l_type varchar2,
    dr_protection_group_id varchar2,
    peer_dr_protection_group_id varchar2,
    peer_region varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    life_cycle_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) The OCID of the DR plan. Example: `ocid1.drplan.oc1..uniqueID`

compartment_id

(required) The OCID of the compartment containing the DR plan. Example: `ocid1.compartment.oc1..uniqueID`

display_name

(required) The display name of the DR plan. Example: `EBS Switchover PHX to IAD`

l_type

(required) The type of the DR plan. Example: `SWITCHOVER`

Allowed values are: 'SWITCHOVER', 'FAILOVER', 'START_DRILL', 'STOP_DRILL'

dr_protection_group_id

(required) The OCID of the DR protection group to which this DR plan belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_dr_protection_group_id

(required) The OCID of the peer DR protection group associated with this plan's DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_region

(required) The region of the peer DR protection group associated with this plan's DR protection group. Example: `us-ashburn-1`

time_created

(required) The date and time the DR plan was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_updated

(required) The date and time the DR plan was updated. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

lifecycle_state

(required) The current state of the DR plan. Example: `ACTIVE`

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

life_cycle_details

(optional) A message describing the DR plan's 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: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

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

Nested table type of dbms_cloud_oci_disaster_recovery_dr_plan_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_plan_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_COLLECTION_T Type

A list of DR plan summaries.

Syntax

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

Fields

Field Description

items

(required) A list of DR plan summaries.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_EXECUTION_OPTIONS_T Type

The options for a plan execution.

Syntax

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

Fields

Field Description

plan_execution_type

(required) The type of the plan execution.

Allowed values are: 'SWITCHOVER', 'SWITCHOVER_PRECHECK', 'FAILOVER', 'FAILOVER_PRECHECK', 'START_DRILL_PRECHECK', 'START_DRILL', 'STOP_DRILL_PRECHECK', 'STOP_DRILL'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_OBJECT_STORAGE_LOG_LOCATION_T Type

The details of an object storage log location for a DR protection group.

Syntax

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

Fields

Field Description

namespace

(required) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`

bucket

(required) The bucket name inside the object storage namespace. Example: `operation_logs`

object

(optional) The object name inside the object storage bucket. Example: `switchover_plan_executions`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_STEP_EXECUTION_T Type

The details of a step execution in a DR plan execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_t FORCE AUTHID CURRENT_USER IS OBJECT (
  step_id varchar2(32767),
  l_type varchar2(32767),
  group_id varchar2(32767),
  display_name varchar2(32767),
  log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
  status varchar2(32767),
  status_details varchar2(32767),
  time_started timestamp with time zone,
  time_ended timestamp with time zone,
  execution_duration_in_sec number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_t (
    step_id varchar2,
    l_type varchar2,
    group_id varchar2,
    display_name varchar2,
    log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
    status varchar2,
    status_details varchar2,
    time_started timestamp with time zone,
    time_ended timestamp with time zone,
    execution_duration_in_sec number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

step_id

(required) The unique id of the step. Must not be modified by user. Example: `sgid1.step..uniqueID`

l_type

(required) The step type.

Allowed values are: 'COMPUTE_INSTANCE_STOP_PRECHECK', 'COMPUTE_INSTANCE_LAUNCH_PRECHECK', 'COMPUTE_INSTANCE_TERMINATE_PRECHECK', 'COMPUTE_INSTANCE_REMOVE_PRECHECK', 'VOLUME_GROUP_RESTORE_SWITCHOVER_PRECHECK', 'VOLUME_GROUP_RESTORE_FAILOVER_PRECHECK', 'DATABASE_SWITCHOVER_PRECHECK', 'DATABASE_FAILOVER_PRECHECK', 'AUTONOMOUS_DATABASE_SWITCHOVER_PRECHECK', 'AUTONOMOUS_DATABASE_FAILOVER_PRECHECK', 'USER_DEFINED_PRECHECK', 'COMPUTE_INSTANCE_LAUNCH', 'COMPUTE_INSTANCE_STOP', 'COMPUTE_INSTANCE_TERMINATE', 'COMPUTE_INSTANCE_REMOVE', 'DATABASE_SWITCHOVER', 'DATABASE_FAILOVER', 'AUTONOMOUS_DATABASE_SWITCHOVER', 'AUTONOMOUS_DATABASE_FAILOVER', 'VOLUME_GROUP_RESTORE_SWITCHOVER', 'VOLUME_GROUP_RESTORE_FAILOVER', 'VOLUME_GROUP_REVERSE', 'VOLUME_GROUP_DELETE', 'VOLUME_GROUP_REMOVE', 'VOLUME_GROUP_TERMINATE', 'USER_DEFINED', 'VOLUME_GROUP_RESTORE_START_DRILL_PRECHECK', 'VOLUME_GROUP_REMOVE_PRECHECK', 'VOLUME_GROUP_TERMINATE_PRECHECK', 'VOLUME_GROUP_RESTORE_START_DRILL', 'AUTONOMOUS_DATABASE_CREATE_CLONE_PRECHECK', 'AUTONOMOUS_DATABASE_DELETE_CLONE_PRECHECK', 'LOAD_BALANCER_UPDATE_PRIMARY_BACKEND_SET_PRECHECK', 'LOAD_BALANCER_UPDATE_STANDBY_BACKEND_SET_PRECHECK', 'FILE_SYSTEM_SWITCHOVER_PRECHECK', 'FILE_SYSTEM_FAILOVER_PRECHECK', 'FILE_SYSTEM_START_DRILL_PRECHECK', 'FILE_SYSTEM_STOP_DRILL_PRECHECK', 'FILE_SYSTEM_REMOVE_PRECHECK', 'FILE_SYSTEM_TERMINATE_PRECHECK', 'FILE_SYSTEM_MOUNT_PRECHECK', 'FILE_SYSTEM_UNMOUNT_PRECHECK', 'COMPUTE_INSTANCE_START_PRECHECK', 'COMPUTE_INSTANCE_ATTACH_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_INSTANCE_DETACH_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_INSTANCE_MOUNT_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_INSTANCE_UNMOUNT_BLOCK_VOLUMES_PRECHECK', 'COMPUTE_CAPACITY_RESERVATION_START_DRILL_PRECHECK', 'COMPUTE_CAPACITY_AVAILABILITY_START_DRILL_PRECHECK', 'AUTONOMOUS_DATABASE_CREATE_CLONE', 'AUTONOMOUS_DATABASE_DELETE_CLONE', 'LOAD_BALANCER_UPDATE_PRIMARY_BACKEND_SET', 'LOAD_BALANCER_UPDATE_STANDBY_BACKEND_SET', 'FILE_SYSTEM_SWITCHOVER', 'FILE_SYSTEM_FAILOVER', 'FILE_SYSTEM_REMOVE', 'FILE_SYSTEM_REVERSE', 'FILE_SYSTEM_TERMINATE', 'FILE_SYSTEM_START_DRILL', 'FILE_SYSTEM_STOP_DRILL', 'COMPUTE_INSTANCE_START', 'COMPUTE_INSTANCE_ATTACH_BLOCK_VOLUMES', 'COMPUTE_INSTANCE_DETACH_BLOCK_VOLUMES', 'FILE_SYSTEM_MOUNT', 'FILE_SYSTEM_UNMOUNT', 'COMPUTE_CAPACITY_RESERVATION_SWITCHOVER_PRECHECK', 'COMPUTE_CAPACITY_RESERVATION_FAILOVER_PRECHECK', 'COMPUTE_CAPACITY_AVAILABILITY_SWITCHOVER_PRECHECK', 'COMPUTE_CAPACITY_AVAILABILITY_FAILOVER_PRECHECK'

group_id

(required) The unique id of the group to which this step belongs. Must not be modified by user. Example: `sgid1.group..uniqueID`

display_name

(required) The display name of the step execution. Example: `DATABASE_SWITCHOVER`

log_location

(required)

status

(required) The status of the step execution.

Allowed values are: 'QUEUED', 'DISABLED', 'IN_PROGRESS', 'SUCCEEDED', 'FAILED', 'FAILED_IGNORED', 'TIMED_OUT', 'TIMED_OUT_IGNORED', 'PAUSED', 'CANCELED'

status_details

(optional) Additional details on the step execution status. Example: `This step failed to complete due to a timeout`

time_started

(optional) The time when step execution began. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_ended

(optional) The time when execution ended. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

execution_duration_in_sec

(optional) The total duration in seconds taken to complete the step execution. Example: `35`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_STEP_EXECUTION_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_GROUP_EXECUTION_T Type

The details of a group execution in a DR plan execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_t FORCE AUTHID CURRENT_USER IS OBJECT (
  group_id varchar2(32767),
  l_type varchar2(32767),
  display_name varchar2(32767),
  status varchar2(32767),
  status_details varchar2(32767),
  time_started timestamp with time zone,
  time_ended timestamp with time zone,
  execution_duration_in_sec number,
  step_executions dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_t (
    group_id varchar2,
    l_type varchar2,
    display_name varchar2,
    status varchar2,
    status_details varchar2,
    time_started timestamp with time zone,
    time_ended timestamp with time zone,
    execution_duration_in_sec number,
    step_executions dbms_cloud_oci_disaster_recovery_dr_plan_step_execution_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

group_id

(required) The unique id of the group. Must not be modified by user. Example: `sgid1.group..uniqueID`

l_type

(required) The group type. Example: `BUILT_IN`

Allowed values are: 'USER_DEFINED', 'BUILT_IN', 'BUILT_IN_PRECHECK'

display_name

(required) The display name of the group execution. Example: `DATABASE_SWITCHOVER`

status

(required) The status of the group execution.

Allowed values are: 'QUEUED', 'DISABLED', 'IN_PROGRESS', 'SUCCEEDED', 'SUCCEEDED_WITH_WARNING', 'FAILED', 'FAILED_IGNORED', 'TIMED_OUT', 'TIMED_OUT_IGNORED', 'PAUSED', 'CANCELED'

status_details

(optional) Additional details on the group execution status. Example: `A total of [3] steps failed in the group`

time_started

(optional) The time when group execution began. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_ended

(optional) The time when group execution ended. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

execution_duration_in_sec

(optional) The total duration in seconds taken to complete group execution. Example: `120`

step_executions

(required) A list of step executions in the group.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_GROUP_EXECUTION_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_EXECUTION_T Type

The details of a DR plan execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_execution_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  plan_id varchar2(32767),
  plan_execution_type varchar2(32767),
  execution_options dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t,
  dr_protection_group_id varchar2(32767),
  peer_dr_protection_group_id varchar2(32767),
  peer_region varchar2(32767),
  log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_updated timestamp with time zone,
  time_ended timestamp with time zone,
  execution_duration_in_sec number,
  group_executions dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_tbl,
  lifecycle_state varchar2(32767),
  life_cycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_execution_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_execution_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    plan_id varchar2,
    plan_execution_type varchar2,
    execution_options dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t,
    dr_protection_group_id varchar2,
    peer_dr_protection_group_id varchar2,
    peer_region varchar2,
    log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_ended timestamp with time zone,
    execution_duration_in_sec number,
    group_executions dbms_cloud_oci_disaster_recovery_dr_plan_group_execution_tbl,
    lifecycle_state varchar2,
    life_cycle_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) The OCID of the DR plan execution. Example: `ocid1.drplanexecution.oc1..uniqueID`

compartment_id

(required) The OCID of the compartment containing this DR plan execution. Example: `ocid1.compartment.oc1..uniqueID`

display_name

(required) The display name of the DR plan execution. Example: `Execution - EBS Switchover PHX to IAD`

plan_id

(required) The OCID of the DR plan. Example: `ocid1.drplan.oc1..uniqueID`

plan_execution_type

(required) The type of the DR plan executed.

Allowed values are: 'SWITCHOVER', 'SWITCHOVER_PRECHECK', 'FAILOVER', 'FAILOVER_PRECHECK', 'START_DRILL', 'START_DRILL_PRECHECK', 'STOP_DRILL', 'STOP_DRILL_PRECHECK'

execution_options

(required)

dr_protection_group_id

(required) The OCID of the DR protection group to which this DR plan execution belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_dr_protection_group_id

(required) The OCID of peer DR protection group associated with this plan's DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_region

(required) The region of the peer DR protection group associated with this plan's DR protection group. Example: `us-ashburn-1`

log_location

(required)

time_created

(required) The date and time at which DR plan execution was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_started

(optional) The date and time at which DR plan execution began. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_updated

(required) The time when DR plan execution was last updated. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_ended

(optional) The date and time at which DR plan execution succeeded, failed, was paused, or was canceled. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

execution_duration_in_sec

(optional) The total duration in seconds taken to complete the DR plan execution. Example: `750`

group_executions

(required) A list of groups executed in this DR plan execution.

lifecycle_state

(required) The current state of the DR plan execution.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'FAILED', 'DELETING', 'DELETED', 'PAUSING', 'PAUSED', 'RESUMING'

life_cycle_details

(optional) A message describing the DR plan execution's 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: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

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

The summary of a DR plan execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_execution_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  plan_id varchar2(32767),
  plan_execution_type varchar2(32767),
  dr_protection_group_id varchar2(32767),
  peer_dr_protection_group_id varchar2(32767),
  peer_region varchar2(32767),
  log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
  time_created timestamp with time zone,
  time_started timestamp with time zone,
  time_updated timestamp with time zone,
  time_ended timestamp with time zone,
  execution_duration_in_sec number,
  lifecycle_state varchar2(32767),
  life_cycle_details varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_execution_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_plan_execution_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    plan_id varchar2,
    plan_execution_type varchar2,
    dr_protection_group_id varchar2,
    peer_dr_protection_group_id varchar2,
    peer_region varchar2,
    log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
    time_created timestamp with time zone,
    time_started timestamp with time zone,
    time_updated timestamp with time zone,
    time_ended timestamp with time zone,
    execution_duration_in_sec number,
    lifecycle_state varchar2,
    life_cycle_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) The OCID of the DR plan execution. Example: `ocid1.drplanexecution.oc1..uniqueID`

compartment_id

(required) The OCID of the compartment containing this plan execution. Example: `ocid1.compartment.oc1..uniqueID`

display_name

(required) The display name of the DR plan execution. Example: `Execution - EBS Switchover PHX to IAD`

plan_id

(required) The OCID of the DR plan for this DR plan execution. Example: `ocid1.drplan.oc1..uniqueID`

plan_execution_type

(required) The type of the DR plan execution.

Allowed values are: 'SWITCHOVER', 'SWITCHOVER_PRECHECK', 'FAILOVER', 'FAILOVER_PRECHECK', 'START_DRILL', 'START_DRILL_PRECHECK', 'STOP_DRILL', 'STOP_DRILL_PRECHECK'

dr_protection_group_id

(required) The OCID of the DR protection group to which this DR plan execution belongs. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_dr_protection_group_id

(required) The OCID of peer DR protection group associated with this DR plan execution's DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_region

(required) The region of the peer DR protection group associated with this DR plan execution's DR protection group. Example: `us-ashburn-1`

log_location

(required)

time_created

(required) The date and time at which DR plan execution was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_started

(optional) The date and time at which DR plan execution began. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_updated

(required) The time when this DR plan execution was last updated. Example: `2019-03-29T09:36:42Z`

time_ended

(optional) The date and time at which DR plan execution succeeded, failed, was paused, or canceled. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

execution_duration_in_sec

(optional) The total duration in seconds taken to complete the DR plan execution. Example: `750`

lifecycle_state

(required) The current state of the DR plan execution.

Allowed values are: 'ACCEPTED', 'IN_PROGRESS', 'WAITING', 'CANCELING', 'CANCELED', 'SUCCEEDED', 'FAILED', 'DELETING', 'DELETED', 'PAUSING', 'PAUSED', 'RESUMING'

life_cycle_details

(optional) A message describing the DR plan execution's 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: `{\"Department\": \"Finance\"}`

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

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

Nested table type of dbms_cloud_oci_disaster_recovery_dr_plan_execution_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_plan_execution_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_plan_execution_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PLAN_EXECUTION_COLLECTION_T Type

A list of DR plan execution summaries.

Syntax

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

Fields

Field Description

items

(required) A list of DR plan execution summaries.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_T Type

The properties of a member in a DR protection group.

Syntax

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

Fields

Field Description

member_id

(required) The OCID of the member. Example: `ocid1.instance.oc1..uniqueID`

member_type

(required) The type of the member.

Allowed values are: 'COMPUTE_INSTANCE', 'COMPUTE_INSTANCE_MOVABLE', 'COMPUTE_INSTANCE_NON_MOVABLE', 'VOLUME_GROUP', 'DATABASE', 'AUTONOMOUS_DATABASE', 'LOAD_BALANCER', 'NETWORK_LOAD_BALANCER', 'FILE_SYSTEM'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_T Type

The details of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  role varchar2(32767),
  peer_id varchar2(32767),
  peer_region varchar2(32767),
  log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
  members dbms_cloud_oci_disaster_recovery_dr_protection_group_member_tbl,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  life_cycle_details varchar2(32767),
  lifecycle_sub_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    role varchar2,
    peer_id varchar2,
    peer_region varchar2,
    log_location dbms_cloud_oci_disaster_recovery_object_storage_log_location_t,
    members dbms_cloud_oci_disaster_recovery_dr_protection_group_member_tbl,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    life_cycle_details varchar2,
    lifecycle_sub_state 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) The OCID of the DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

compartment_id

(required) The OCID of the compartment containing the DR protection group. Example: `ocid1.compartment.oc1..uniqueID`

display_name

(required) The display name of the DR protection group. Example: `EBS PHX Group`

role

(required) The role of the DR protection group.

Allowed values are: 'PRIMARY', 'STANDBY', 'UNCONFIGURED'

peer_id

(optional) The OCID of the peer DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_region

(optional) The region of the peer DR protection group. Example: `us-ashburn-1`

log_location

(optional)

members

(optional) A list of DR protection group members.

time_created

(required) The date and time the DR protection group was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_updated

(required) The date and time the DR protection group was updated. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

lifecycle_state

(required) The current state of the DR protection group.

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

life_cycle_details

(optional) A message describing the DR protection group's current state in more detail.

lifecycle_sub_state

(optional) The current sub-state of the DR protection group.

Allowed values are: 'DR_DRILL_IN_PROGRESS'

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

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

The summary of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  role varchar2(32767),
  peer_id varchar2(32767),
  peer_region varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  life_cycle_details varchar2(32767),
  lifecycle_sub_state varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    role varchar2,
    peer_id varchar2,
    peer_region varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    life_cycle_details varchar2,
    lifecycle_sub_state 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) The OCID of the DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

compartment_id

(required) The OCID of the compartment containing the DR protection group. Example: `ocid1.compartment.oc1..uniqueID`

display_name

(required) The display name of the DR protection group. Example: `EBS PHX Group`

role

(required) The role of the DR protection group.

Allowed values are: 'PRIMARY', 'STANDBY', 'UNCONFIGURED'

peer_id

(optional) The OCID of the peer DR protection group. Example: `ocid1.drprotectiongroup.oc1..uniqueID`

peer_region

(optional) The region of the peer DR protection group. Example: `us-ashburn-1`

time_created

(required) The date and time the DR protection group was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_updated

(required) The date and time the DR protection group was updated. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

lifecycle_state

(required) The current state of the DR protection group.

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

life_cycle_details

(optional) A message describing the DR protection group's current state in more detail.

lifecycle_sub_state

(optional) The current sub-state of the DR protection group.

Allowed values are: 'DR_DRILL_IN_PROGRESS'

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

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

Nested table type of dbms_cloud_oci_disaster_recovery_dr_protection_group_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_dr_protection_group_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_COLLECTION_T Type

A list of DR protection group summaries.

Syntax

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

Fields

Field Description

items

(required) A list of DR protection group summaries.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_AUTONOMOUS_DATABASE_T Type

The properties for an Autonomous Database Serverless member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_autonomous_database_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_autonomous_database_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_autonomous_database_t (
    member_id varchar2,
    member_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_autonomous_database_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_VNIC_MAPPING_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_T Type

Deprecated. Properties for a compute instance member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  is_movable number,
  vnic_mapping dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_tbl,
  destination_compartment_id varchar2(32767),
  destination_dedicated_vm_host_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_t (
    member_id varchar2,
    member_type varchar2,
    is_movable number,
    vnic_mapping dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_tbl,
    destination_compartment_id varchar2,
    destination_dedicated_vm_host_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

Fields

Field Description

is_movable

(optional) A flag indicating if the compute instance should be moved during DR operations. Example: `false`

vnic_mapping

(optional) A list of compute instance VNIC mappings.

destination_compartment_id

(optional) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`

destination_dedicated_vm_host_id

(optional) The OCID of a dedicated VM host in the destination region where the compute instance should be launched. Example: `ocid1.dedicatedvmhost.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_MOVABLE_VNIC_MAPPING_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_MOVABLE_FILE_SYSTEM_OPERATION_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_MOVABLE_T Type

Properties for a movable compute instance member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_movable_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  is_retain_fault_domain number,
  destination_capacity_reservation_id varchar2(32767),
  vnic_mappings dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_tbl,
  destination_compartment_id varchar2(32767),
  destination_dedicated_vm_host_id varchar2(32767),
  file_system_operations dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_movable_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_movable_t (
    member_id varchar2,
    member_type varchar2,
    is_retain_fault_domain number,
    destination_capacity_reservation_id varchar2,
    vnic_mappings dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_tbl,
    destination_compartment_id varchar2,
    destination_dedicated_vm_host_id varchar2,
    file_system_operations dbms_cloud_oci_disaster_recovery_compute_instance_movable_file_system_operation_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_movable_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

Fields

Field Description

is_retain_fault_domain

(optional) A flag indicating if the compute instance should be moved to the same fault domain in the destination region. The compute instance launch will fail if this flag is set to true and capacity is not available in the specified fault domain in the destination region. Example: `false`

destination_capacity_reservation_id

(optional) The OCID of a capacity reservation in the destination region which will be used to launch the compute instance. Example: `ocid1.capacityreservation.oc1..uniqueID`

vnic_mappings

(optional) A list of compute instance VNIC mappings.

destination_compartment_id

(optional) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`

destination_dedicated_vm_host_id

(optional) The OCID of a dedicated VM host in the destination region where the compute instance should be launched. Example: `ocid1.dedicatedvmhost.oc1..uniqueID`

file_system_operations

(optional) A list of details of operations performed on file systems.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_NON_MOVABLE_FILE_SYSTEM_OPERATION_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_file_system_operation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_file_system_operation_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_file_system_operation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_COMPUTE_INSTANCE_NON_MOVABLE_BLOCK_VOLUME_OPERATION_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_NON_MOVABLE_T Type

Properties for a non-movable compute instance member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_non_movable_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  is_start_stop_enabled number,
  file_system_operations dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_file_system_operation_tbl,
  block_volume_operations dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_non_movable_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_non_movable_t (
    member_id varchar2,
    member_type varchar2,
    is_start_stop_enabled number,
    file_system_operations dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_file_system_operation_tbl,
    block_volume_operations dbms_cloud_oci_disaster_recovery_compute_instance_non_movable_block_volume_operation_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_compute_instance_non_movable_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

Fields

Field Description

is_start_stop_enabled

(optional) A flag indicating whether the non-movable compute instance needs to be started and stopped during DR operations.

file_system_operations

(optional) Operations performed on a list of file systems used on the non-movable compute instance.

block_volume_operations

(optional) Operations performed on a list of block volumes used on the non-movable compute instance.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_DATABASE_T Type

The properties for a Base Database or Exadata Database member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_database_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  password_vault_secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_database_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_database_t (
    member_id varchar2,
    member_type varchar2,
    password_vault_secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_database_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

Fields

Field Description

password_vault_secret_id

(optional) The OCID of the vault secret where the database SYSDBA password is stored. This password is used for performing database DR operations. Example: `ocid1.vaultsecret.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FILE_SYSTEM_EXPORT_MAPPING_T Type

The mapping between a primary region file system export path and destination region mount target.

Syntax

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

Fields

Field Description

export_id

(required) The OCID of the export path. Example: `ocid1.export.oc1..uniqueID`

destination_mount_target_id

(required) The OCID of the destination mount target on which this file system export should be created. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FILE_SYSTEM_EXPORT_MAPPING_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_file_system_export_mapping_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_file_system_export_mapping_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_file_system_export_mapping_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_FILE_SYSTEM_T Type

The properties for a file system member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_file_system_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  destination_availability_domain varchar2(32767),
  export_mappings dbms_cloud_oci_disaster_recovery_file_system_export_mapping_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_file_system_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_file_system_t (
    member_id varchar2,
    member_type varchar2,
    destination_availability_domain varchar2,
    export_mappings dbms_cloud_oci_disaster_recovery_file_system_export_mapping_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_file_system_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

Fields

Field Description

destination_availability_domain

(optional) The availability domain of the destination mount target. Example: `BBTh:region-AD`

export_mappings

(optional) A list of mappings between the primary region file system export and destination region mount target.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_LOAD_BALANCER_BACKEND_SET_MAPPING_T Type

A backend set mapping between source and destination load balancer.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_backend_set_for_non_movable number,
  source_backend_set_name varchar2(32767),
  destination_backend_set_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_t (
    is_backend_set_for_non_movable number,
    source_backend_set_name varchar2,
    destination_backend_set_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_backend_set_for_non_movable

(required) This flag specifies if this backend set is used for traffic for non-movable compute instances. Backend sets that point to non-movable instances are only enabled or disabled during DR. For non-movable instances this flag should be set to 'true'. Backend sets that point to movable instances are emptied and their contents are transferred to the destination region load balancer. For movable instances this flag should be set to 'false'. Example: `true`

source_backend_set_name

(required) The name of the source backend set. Example: `My_Source_Backend_Set`

destination_backend_set_name

(required) The name of the destination backend set. Example: `My_Destination_Backend_Set`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_LOAD_BALANCER_BACKEND_SET_MAPPING_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_LOAD_BALANCER_T Type

The properties for a load balancer member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_load_balancer_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  destination_load_balancer_id varchar2(32767),
  backend_set_mappings dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_load_balancer_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_load_balancer_t (
    member_id varchar2,
    member_type varchar2,
    destination_load_balancer_id varchar2,
    backend_set_mappings dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_load_balancer_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

Fields

Field Description

destination_load_balancer_id

(optional) The OCID of the destination load balancer. The backend sets in this destination load balancer are updated during DR. Example: `ocid1.loadbalancer.oc1..uniqueID`

backend_set_mappings

(optional) A list of backend set mappings that are used to transfer or update backends during DR.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_NETWORK_LOAD_BALANCER_BACKEND_SET_MAPPING_T Type

A backend set mapping between source and destination network load balancer.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_backend_set_for_non_movable number,
  source_backend_set_name varchar2(32767),
  destination_backend_set_name varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_t (
    is_backend_set_for_non_movable number,
    source_backend_set_name varchar2,
    destination_backend_set_name varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_backend_set_for_non_movable

(required) This flag specifies if this backend set is used for traffic for non-movable compute instances. Backend sets that point to non-movable instances are only enabled or disabled during DR. For non-movable instances this flag should be set to 'true'. Backend sets that point to movable instances are emptied and their contents are transferred to the destination region network load balancer. For movable instances this flag should be set to 'false'. Example: `true`

source_backend_set_name

(required) The name of the source backend set. Example: `example_backend_set`

destination_backend_set_name

(required) The name of the destination backend set. Example: `example_backend_set`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_NETWORK_LOAD_BALANCER_BACKEND_SET_MAPPING_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_NETWORK_LOAD_BALANCER_T Type

The properties for a network load balancer member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_network_load_balancer_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  destination_network_load_balancer_id varchar2(32767),
  backend_set_mappings dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_network_load_balancer_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_network_load_balancer_t (
    member_id varchar2,
    member_type varchar2,
    destination_network_load_balancer_id varchar2,
    backend_set_mappings dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_network_load_balancer_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

Fields

Field Description

destination_network_load_balancer_id

(optional) The OCID of the destination network load balancer. The backend sets in this destination network load balancer are updated during DR. Example: `ocid1.networkloadbalancer.oc1..uniqueID`

backend_set_mappings

(optional) A list of backend set mappings that are used to transfer or update backends during DR.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_DR_PROTECTION_GROUP_MEMBER_VOLUME_GROUP_T Type

The properties for a volume group member of a DR protection group.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_dr_protection_group_member_volume_group_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_volume_group_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_dr_protection_group_member_volume_group_t (
    member_id varchar2,
    member_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_dr_protection_group_member_volume_group_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_protection_group_member_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_ERROR_T Type

Error information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_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. Example: `429`

message

(required) A human-readable error string. Example: `Too many requests`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FAILOVER_EXECUTION_OPTION_DETAILS_T Type

Options for failover execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_failover_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_execution_option_details_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_failover_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether prechecks should be executed before the plan execution. Example: `true`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the failover. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FAILOVER_EXECUTION_OPTIONS_T Type

Options for failover execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_failover_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_execution_options_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_failover_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether prechecks should be executed before the plan execution. Example: `true`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the plan execution. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FAILOVER_PRECHECK_EXECUTION_OPTION_DETAILS_T Type

Options for a failover precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_failover_precheck_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_precheck_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_precheck_execution_option_details_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_failover_precheck_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the failover precheck. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_FAILOVER_PRECHECK_EXECUTION_OPTIONS_T Type

Options for failover precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_failover_precheck_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_precheck_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_failover_precheck_execution_options_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_failover_precheck_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the precheck. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_IGNORE_DR_PLAN_EXECUTION_DETAILS_T Type

The details for ignoring a failed group or step.

Syntax

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

Fields

Field Description

group_id

(required) The unique id of the group to ignore as a whole, or the group containing the step to ignore. Example: `sgid1.group..uniqueID`

step_id

(optional) The unique id of the step to ignore (optional). Only needed when ignoring a step. Example: `sgid1.step..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_INVOKE_FUNCTION_PRECHECK_STEP_T Type

Invoke Oracle function precheck step details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_invoke_function_precheck_step_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_invoke_function_precheck_step_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_invoke_function_precheck_step_t (
    step_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_invoke_function_precheck_step_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_INVOKE_FUNCTION_STEP_T Type

Invoke Oracle function step details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_invoke_function_step_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t (
  function_id varchar2(32767),
  function_region varchar2(32767),
  request_body varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_invoke_function_step_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_invoke_function_step_t (
    step_type varchar2,
    function_id varchar2,
    function_region varchar2,
    request_body varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_invoke_function_step_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t type.

Fields

Field Description

function_id

(required) The OCID of function to be invoked. Example: `ocid1.fnfunc.oc1..uniqueID`

function_region

(required) The region in which the function is deployed. Example: `us-ashburn-1`

request_body

(optional) The request body for the function. Example: `{ \"FnParam1\", \"FnParam2\" }`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_LOCAL_SCRIPT_PRECHECK_STEP_T Type

Run local script precheck step details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_local_script_precheck_step_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_local_script_precheck_step_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_local_script_precheck_step_t (
    step_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_local_script_precheck_step_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_OBJECT_STORAGE_SCRIPT_LOCATION_T Type

The details of an object storage script location for a user-defined step in a DR plan.

Syntax

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

Fields

Field Description

namespace

(required) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`

bucket

(required) The bucket name inside the object storage namespace. Example: `custom_dr_scripts`

object

(required) The object name inside the object storage bucket. Example: `validate_app_start.sh`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_OBJECT_STORE_SCRIPT_PRECHECK_STEP_T Type

Run object store script precheck step details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_object_store_script_precheck_step_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_object_store_script_precheck_step_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_object_store_script_precheck_step_t (
    step_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_object_store_script_precheck_step_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_PAUSE_DR_PLAN_EXECUTION_DETAILS_T Type

The details for pausing a DR plan execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_pause_dr_plan_execution_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_control_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_pause_dr_plan_execution_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_pause_dr_plan_execution_details_t (
    action_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_pause_dr_plan_execution_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_control_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_RESUME_DR_PLAN_EXECUTION_DETAILS_T Type

The details for resuming a DR plan execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_resume_dr_plan_execution_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_control_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_resume_dr_plan_execution_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_resume_dr_plan_execution_details_t (
    action_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_resume_dr_plan_execution_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_control_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_RETRY_DR_PLAN_EXECUTION_DETAILS_T Type

The details for retrying a failed group or step.

Syntax

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

Fields

Field Description

group_id

(required) The unique id of the group to retry as a whole, or the group containing the step being retried. Example: `sgid1.group..uniqueID`

step_id

(optional) The unique id of the step to retry (optional). Only needed when retrying a step. Example: `sgid1.step..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_RUN_LOCAL_SCRIPT_USER_DEFINED_STEP_T Type

Run Local Script step details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_run_local_script_user_defined_step_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t (
  run_on_instance_id varchar2(32767),
  run_on_instance_region varchar2(32767),
  script_command varchar2(32767),
  run_as_user varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_run_local_script_user_defined_step_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_run_local_script_user_defined_step_t (
    step_type varchar2,
    run_on_instance_id varchar2,
    run_on_instance_region varchar2,
    script_command varchar2,
    run_as_user varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_run_local_script_user_defined_step_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t type.

Fields

Field Description

run_on_instance_id

(required) The OCID of the instance on which this script or command should be executed. **For moving instances:** *runOnInstanceId* must be the OCID of the instance in the region where the instance is currently present. **For non-moving instances:** *runOnInstanceId* must be the OCID of the non-moving instance. Example: `ocid1.instance.oc1..uniqueID`

run_on_instance_region

(required) The region in which the instance is present. Example: `us-ashburn-1`

script_command

(required) The script name and arguments. Example: `/usr/bin/python3 /home/opc/scripts/my_app_script.py arg1 arg2 arg3`

run_as_user

(optional) The userid on the instance to be used for executing the script or command. Example: `opc`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_RUN_OBJECT_STORE_SCRIPT_USER_DEFINED_STEP_T Type

Run Object Store Script step details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_run_object_store_script_user_defined_step_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t (
  run_on_instance_id varchar2(32767),
  run_on_instance_region varchar2(32767),
  object_storage_script_location dbms_cloud_oci_disaster_recovery_object_storage_script_location_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_run_object_store_script_user_defined_step_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_run_object_store_script_user_defined_step_t (
    step_type varchar2,
    run_on_instance_id varchar2,
    run_on_instance_region varchar2,
    object_storage_script_location dbms_cloud_oci_disaster_recovery_object_storage_script_location_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_run_object_store_script_user_defined_step_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_user_defined_step_t type.

Fields

Field Description

run_on_instance_id

(required) The OCID of the instance on which this script or command should be executed. **For moving instances:** *runOnInstanceId* must be the OCID of the instance in the region where the instance is currently present. **For non-moving instances:** *runOnInstanceId* must be the OCID of the non-moving instance. Example: `ocid1.instance.oc1..uniqueID`

run_on_instance_region

(required) The region of the instance where this script or command should be executed. Example: `us-ashburn-1`

object_storage_script_location

(required)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_START_DRILL_EXECUTION_OPTION_DETAILS_T Type

Options for start drill execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_start_drill_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_execution_option_details_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_start_drill_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether prechecks should be executed before the plan execution. Example: `false`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the plan execution. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_START_DRILL_EXECUTION_OPTIONS_T Type

Options for start drill execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_start_drill_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_execution_options_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_start_drill_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether prechecks should be executed before the plan execution. Example: `true`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the plan execution. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_START_DRILL_PRECHECK_EXECUTION_OPTION_DETAILS_T Type

Options for start drill precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_option_details_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the precheck. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_START_DRILL_PRECHECK_EXECUTION_OPTIONS_T Type

Options for start drill precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_options_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_start_drill_precheck_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the precheck. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_STOP_DRILL_EXECUTION_OPTION_DETAILS_T Type

Options for stop drill execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_stop_drill_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_execution_option_details_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_stop_drill_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether prechecks should be executed before the plan execution. Example: `false`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the plan execution. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_STOP_DRILL_EXECUTION_OPTIONS_T Type

Options for stop drill execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_stop_drill_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_execution_options_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_stop_drill_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether a precheck should be executed before the plan execution. Example: `true`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the plan execution. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_STOP_DRILL_PRECHECK_EXECUTION_OPTION_DETAILS_T Type

Options for stop drill precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_option_details_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the precheck. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_STOP_DRILL_PRECHECK_EXECUTION_OPTIONS_T Type

Options for stop drill precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_options_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_stop_drill_precheck_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the precheck. Example: `false`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_SWITCHOVER_EXECUTION_OPTION_DETAILS_T Type

Options for switchover execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_switchover_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_execution_option_details_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_switchover_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether prechecks should be executed before the plan execution. Example: `false`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the switchover. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_SWITCHOVER_EXECUTION_OPTIONS_T Type

Options for switchover execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_switchover_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_prechecks_enabled number,
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_execution_options_t (
    plan_execution_type varchar2,
    are_prechecks_enabled number,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_switchover_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_prechecks_enabled

(optional) A flag indicating whether prechecks should be executed before the plan execution. Example: `false`

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the plan execution. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_SWITCHOVER_PRECHECK_EXECUTION_OPTION_DETAILS_T Type

Options for switchover precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_option_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_option_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_option_details_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_option_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_option_details_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the switchover precheck. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_SWITCHOVER_PRECHECK_EXECUTION_OPTIONS_T Type

Options for switchover precheck execution.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_options_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t (
  are_warnings_ignored number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_options_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_options_t (
    plan_execution_type varchar2,
    are_warnings_ignored number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_switchover_precheck_execution_options_t is a subtype of the dbms_cloud_oci_disaster_recovery_dr_plan_execution_options_t type.

Fields

Field Description

are_warnings_ignored

(optional) A flag indicating whether warnings should be ignored during the precheck. Example: `true`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_BLOCK_VOLUME_ATTACHMENT_DETAILS_T Type

The details for attaching or detaching a block volume.

Syntax

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

Fields

Field Description

volume_attachment_reference_instance_id

(optional) The OCID of the reference compute instance from which to obtain the attachment details for the volume. This reference compute instance is from the peer DR protection group. Example: `ocid1.instance.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_BLOCK_VOLUME_MOUNT_DETAILS_T Type

The details for updating the file system mount on a block volume.

Syntax

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

Fields

Field Description

mount_point

(optional) The physical mount point used for mounting the file system on a block volume. Example: `/mnt/yourmountpoint`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_FILE_SYSTEM_MOUNT_DETAILS_T Type

The details for updating the mount properties of a file system.

Syntax

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

Fields

Field Description

mount_target_id

(optional) The OCID of the mount target for this file system. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_FILE_SYSTEM_UNMOUNT_DETAILS_T Type

The details for updating the unmount properties of a file system.

Syntax

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

Fields

Field Description

mount_target_id

(optional) The OCID of the mount target for this file system. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_COMPUTE_INSTANCE_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_T Type

The details for updating the operations performed on a file systems for movable compute instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  export_path varchar2(32767),
  mount_point varchar2(32767),
  mount_details dbms_cloud_oci_disaster_recovery_update_file_system_mount_details_t,
  unmount_details dbms_cloud_oci_disaster_recovery_update_file_system_unmount_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_t (
    export_path varchar2,
    mount_point varchar2,
    mount_details dbms_cloud_oci_disaster_recovery_update_file_system_mount_details_t,
    unmount_details dbms_cloud_oci_disaster_recovery_update_file_system_unmount_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

export_path

(required) The export path of the file system. Example: `/fs-export-path`

mount_point

(required) The physical mount point of the file system on a host. Example: `/mnt/yourmountpoint`

mount_details

(required)

unmount_details

(required)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_COMPUTE_INSTANCE_NON_MOVABLE_BLOCK_VOLUME_OPERATION_DETAILS_T Type

The details for updating the operations performed on a block volume.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  block_volume_id varchar2(32767),
  attachment_details dbms_cloud_oci_disaster_recovery_update_block_volume_attachment_details_t,
  mount_details dbms_cloud_oci_disaster_recovery_update_block_volume_mount_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_t (
    block_volume_id varchar2,
    attachment_details dbms_cloud_oci_disaster_recovery_update_block_volume_attachment_details_t,
    mount_details dbms_cloud_oci_disaster_recovery_update_block_volume_mount_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

block_volume_id

(required) The OCID of the block volume. Example: `ocid1.volume.oc1..uniqueID`

attachment_details

(optional)

mount_details

(optional)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_COMPUTE_INSTANCE_NON_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_T Type

The details for updating the operations performed on a file systems for non-movable compute instance.

Syntax

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

Fields

Field Description

export_path

(required) The export path of the file system. Example: `/fs-export-path`

mount_point

(required) The physical mount point of the file system on a host. Example: `/mnt/yourmountpoint`

mount_target_id

(required) The OCID of mount target. Example: `ocid1.mounttarget.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PLAN_USER_DEFINED_STEP_DETAILS_T Type

The details for updating a user-defined step in a DR plan.

Syntax

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

Fields

Field Description

step_type

(required) The type of the user-defined step. **RUN_OBJECTSTORE_SCRIPT_PRECHECK** - A step which performs a precheck on a script stored in OCI object storage. **RUN_LOCAL_SCRIPT_PRECHECK** - A step which performs a precheck on a script which resides locally on a compute instance. **INVOKE_FUNCTION_PRECHECK** - A step which performs a precheck on an OCI function. See https://docs.oracle.com/en-us/iaas/Content/Functions/home.htm. **RUN_OBJECTSTORE_SCRIPT** - A step which runs a script stored in OCI object storage. **RUN_LOCAL_SCRIPT** - A step which runs a script that resides locally on a compute instance. **INVOKE_FUNCTION** - A step which invokes an OCI function. See https://docs.oracle.com/en-us/iaas/Content/Functions/home.htm.

Allowed values are: 'RUN_OBJECTSTORE_SCRIPT_PRECHECK', 'RUN_LOCAL_SCRIPT_PRECHECK', 'INVOKE_FUNCTION_PRECHECK', 'RUN_OBJECTSTORE_SCRIPT', 'RUN_LOCAL_SCRIPT', 'INVOKE_FUNCTION'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PLAN_STEP_DETAILS_T Type

The details for updating a DR plan step.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_plan_step_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  error_mode varchar2(32767),
  timeout number,
  is_enabled number,
  user_defined_step dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_plan_step_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_plan_step_details_t (
    id varchar2,
    display_name varchar2,
    error_mode varchar2,
    timeout number,
    is_enabled number,
    user_defined_step dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(optional) The unique id of the step. Example: `sgid1.step..uniqueID`

display_name

(optional) The display name of the step in a group. Example: `My_STEP_3A - EBS Start - STAGE A`

error_mode

(optional) The error mode for this step.

Allowed values are: 'STOP_ON_ERROR', 'CONTINUE_ON_ERROR'

timeout

(optional) The timeout in seconds for executing this step. Example: `600`

is_enabled

(optional) A flag indicating whether this step should be enabled for execution. Example: `true`

user_defined_step

(optional)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PLAN_STEP_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_update_dr_plan_step_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_plan_step_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_update_dr_plan_step_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PLAN_GROUP_DETAILS_T Type

The details for updating a group in a DR plan.

Syntax

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

Fields

Field Description

id

(optional) The unique id of the group. Must not be modified by user. Example: `sgid1.group..uniqueID`

display_name

(optional) The display name of the group. Example: `My_GROUP_3 - EBS Start`

l_type

(optional) The group type. Example: `BUILT_IN`

Allowed values are: 'USER_DEFINED', 'BUILT_IN', 'BUILT_IN_PRECHECK'

steps

(optional) The list of steps in this group.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PLAN_GROUP_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_update_dr_plan_group_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_plan_group_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_update_dr_plan_group_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PLAN_DETAILS_T Type

The details for updating a DR plan.

Syntax

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

Fields

Field Description

display_name

(optional) The display name of the DR plan being updated. Example: `EBS Switchover PHX to IAD`

plan_groups

(optional) An ordered list of groups in a DR plan.

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PLAN_EXECUTION_DETAILS_T Type

The details for updating a DR plan exection.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_plan_execution_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_disaster_recovery_update_dr_plan_execution_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_plan_execution_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) The display name of the DR protection group to update. Example: `EBS IAD Group`

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_OBJECT_STORAGE_LOG_LOCATION_DETAILS_T Type

The details for updating an object storage log location for a DR protection group.

Syntax

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

Fields

Field Description

namespace

(required) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`

bucket

(required) The bucket name inside the object storage namespace. Example: `operation_logs`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_DETAILS_T Type

Update properties for a member in a DR protection group.

Syntax

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

Fields

Field Description

member_id

(required) The OCID of the member. Example: `ocid1.database.oc1..uniqueID`

member_type

(required) The type of the member.

Allowed values are: 'COMPUTE_INSTANCE', 'COMPUTE_INSTANCE_MOVABLE', 'COMPUTE_INSTANCE_NON_MOVABLE', 'VOLUME_GROUP', 'DATABASE', 'AUTONOMOUS_DATABASE', 'LOAD_BALANCER', 'NETWORK_LOAD_BALANCER', 'FILE_SYSTEM'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_DETAILS_T Type

The details for updating a DR protection group.

Syntax

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

Fields

Field Description

display_name

(optional) The display name of the DR protection group. Example: `EBS PHX Group`

log_location

(optional)

members

(optional) A list of DR protection group members. When updating members, this list must contain all members being retained, including added and updated members. The list must not contain deleted members.

freeform_tags

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

defined_tags

(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_AUTONOMOUS_DATABASE_DETAILS_T Type

Update properties for an Autonomous Database Serverless member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_autonomous_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_autonomous_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_autonomous_database_details_t (
    member_id varchar2,
    member_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_autonomous_database_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_DETAILS_T Type

Deprecated. Update properties for a compute instance member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  is_movable number,
  vnic_mapping dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_tbl,
  destination_compartment_id varchar2(32767),
  destination_dedicated_vm_host_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_details_t (
    member_id varchar2,
    member_type varchar2,
    is_movable number,
    vnic_mapping dbms_cloud_oci_disaster_recovery_compute_instance_vnic_mapping_details_tbl,
    destination_compartment_id varchar2,
    destination_dedicated_vm_host_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

Fields

Field Description

is_movable

(optional) A flag indicating if the compute instance should be moved during DR operations. Example: `false`

vnic_mapping

(optional) A list of compute instance VNIC mappings.

destination_compartment_id

(optional) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`

destination_dedicated_vm_host_id

(optional) The OCID of a dedicated VM host in the destination region on which the compute instance should be launched. Example: `ocid1.dedicatedvmhost.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_COMPUTE_INSTANCE_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_MOVABLE_DETAILS_T Type

Update properties for a movable compute instance member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_movable_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  is_retain_fault_domain number,
  destination_capacity_reservation_id varchar2(32767),
  vnic_mappings dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_tbl,
  destination_compartment_id varchar2(32767),
  destination_dedicated_vm_host_id varchar2(32767),
  file_system_operations dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_movable_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_movable_details_t (
    member_id varchar2,
    member_type varchar2,
    is_retain_fault_domain number,
    destination_capacity_reservation_id varchar2,
    vnic_mappings dbms_cloud_oci_disaster_recovery_compute_instance_movable_vnic_mapping_details_tbl,
    destination_compartment_id varchar2,
    destination_dedicated_vm_host_id varchar2,
    file_system_operations dbms_cloud_oci_disaster_recovery_update_compute_instance_movable_file_system_operation_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_movable_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

Fields

Field Description

is_retain_fault_domain

(optional) A flag indicating if the compute instance should be moved to the same fault domain in the destination region. The compute instance launch will fail if this flag is set to true and capacity is not available in the specified fault domain in the destination region. Example: `false`

destination_capacity_reservation_id

(optional) The OCID of a capacity reservation in the destination region which will be used to launch the compute instance. Example: `ocid1.capacityreservation.oc1..uniqueID`

vnic_mappings

(optional) A list of compute instance VNIC mappings.

destination_compartment_id

(optional) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`

destination_dedicated_vm_host_id

(optional) The OCID of a dedicated VM host in the destination region where the compute instance should be launched. Example: `ocid1.dedicatedvmhost.oc1..uniqueID`

file_system_operations

(optional) A list of operations performed on file systems used by the compute instance.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_COMPUTE_INSTANCE_NON_MOVABLE_FILE_SYSTEM_OPERATION_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_file_system_operation_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_file_system_operation_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_file_system_operation_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_COMPUTE_INSTANCE_NON_MOVABLE_BLOCK_VOLUME_OPERATION_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_COMPUTE_INSTANCE_NON_MOVABLE_DETAILS_T Type

Update properties for a non-movable compute instance member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_non_movable_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  is_start_stop_enabled number,
  file_system_operations dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_file_system_operation_details_tbl,
  block_volume_operations dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_non_movable_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_non_movable_details_t (
    member_id varchar2,
    member_type varchar2,
    is_start_stop_enabled number,
    file_system_operations dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_file_system_operation_details_tbl,
    block_volume_operations dbms_cloud_oci_disaster_recovery_update_compute_instance_non_movable_block_volume_operation_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_compute_instance_non_movable_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

Fields

Field Description

is_start_stop_enabled

(optional) A flag indicating whether the non-movable compute instance should be started and stopped during DR operations. *Prechecks cannot be executed on stopped instances that are configured to be started.*

file_system_operations

(optional) A list of operations performed on file systems used by the compute instance.

block_volume_operations

(optional) A list of operations performed on block volumes used by the compute instance.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_DATABASE_DETAILS_T Type

Update properties for a Database (DBCS) member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_database_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  password_vault_secret_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_database_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_database_details_t (
    member_id varchar2,
    member_type varchar2,
    password_vault_secret_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_database_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

Fields

Field Description

password_vault_secret_id

(optional) The OCID of the vault secret where the database SYSDBA password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_FILE_SYSTEM_DETAILS_T Type

Update properties for a file system member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_file_system_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  destination_availability_domain varchar2(32767),
  export_mappings dbms_cloud_oci_disaster_recovery_file_system_export_mapping_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_file_system_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_file_system_details_t (
    member_id varchar2,
    member_type varchar2,
    destination_availability_domain varchar2,
    export_mappings dbms_cloud_oci_disaster_recovery_file_system_export_mapping_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_file_system_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

Fields

Field Description

destination_availability_domain

(optional) The availability domain of the destination mount target. Example: `BBTh:region-AD`

export_mappings

(optional) A list of mappings between file system exports in the primary region and mount targets in the standby region.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_LOAD_BALANCER_DETAILS_T Type

Update properties for a load balancer member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_load_balancer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  destination_load_balancer_id varchar2(32767),
  backend_set_mappings dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_load_balancer_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_load_balancer_details_t (
    member_id varchar2,
    member_type varchar2,
    destination_load_balancer_id varchar2,
    backend_set_mappings dbms_cloud_oci_disaster_recovery_load_balancer_backend_set_mapping_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_load_balancer_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

Fields

Field Description

destination_load_balancer_id

(optional) The OCID of the destination load balancer. Example: `ocid1.loadbalancer.oc1..uniqueID`

backend_set_mappings

(optional) A list of backend set mappings that are used to transfer or update backends during DR.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_NETWORK_LOAD_BALANCER_DETAILS_T Type

Update properties for a network load balancer member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_network_load_balancer_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  destination_network_load_balancer_id varchar2(32767),
  backend_set_mappings dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_network_load_balancer_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_network_load_balancer_details_t (
    member_id varchar2,
    member_type varchar2,
    destination_network_load_balancer_id varchar2,
    backend_set_mappings dbms_cloud_oci_disaster_recovery_network_load_balancer_backend_set_mapping_details_tbl
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_network_load_balancer_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

Fields

Field Description

destination_network_load_balancer_id

(optional) The OCID of the destination network load balancer. Example: `ocid1.networkloadbalancer.oc1..uniqueID`

backend_set_mappings

(optional) A list of backend set mappings that are used to transfer or update backends during DR.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_MEMBER_VOLUME_GROUP_DETAILS_T Type

Update properties for a volume group member.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_volume_group_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_volume_group_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_volume_group_details_t (
    member_id varchar2,
    member_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_volume_group_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_protection_group_member_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_DR_PROTECTION_GROUP_ROLE_DETAILS_T Type

The details for updating the role of a DR protection group.

Syntax

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

Fields

Field Description

role

(required) The new role of the DR protection group.

Allowed values are: 'PRIMARY', 'STANDBY', 'UNCONFIGURED'

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_INVOKE_FUNCTION_PRECHECK_STEP_DETAILS_T Type

The details for updating Invoke Oracle function precheck step.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_invoke_function_precheck_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_invoke_function_precheck_step_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_invoke_function_precheck_step_details_t (
    step_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_invoke_function_precheck_step_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_INVOKE_FUNCTION_USER_DEFINED_STEP_DETAILS_T Type

The details for updating an Invoke Oracle Function step.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_invoke_function_user_defined_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t (
  function_id varchar2(32767),
  request_body varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_invoke_function_user_defined_step_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_invoke_function_user_defined_step_details_t (
    step_type varchar2,
    function_id varchar2,
    request_body varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_invoke_function_user_defined_step_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t type.

Fields

Field Description

function_id

(required) The OCID of function to be invoked. Example: `ocid1.fnfunc.oc1..uniqueID`

request_body

(optional) The request body for the function. Example: `{ \"FnParam1\", \"FnParam2\" }`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_LOCAL_SCRIPT_PRECHECK_STEP_DETAILS_T Type

The details for updating Run local script precheck step.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_local_script_precheck_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_local_script_precheck_step_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_local_script_precheck_step_details_t (
    step_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_local_script_precheck_step_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_OBJECT_STORAGE_SCRIPT_LOCATION_DETAILS_T Type

The details for updating an object storage script location for a user-defined step in a DR plan.

Syntax

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

Fields

Field Description

namespace

(required) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`

bucket

(required) The bucket name inside the object storage namespace. Example: `custom_dr_scripts`

object

(required) The object name inside the object storage bucket. Example: `validate_app_start.sh`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_OBJECT_STORE_SCRIPT_PRECHECK_STEP_DETAILS_T Type

The details for updating Run object store script precheck step.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_object_store_script_precheck_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t (
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_object_store_script_precheck_step_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_object_store_script_precheck_step_details_t (
    step_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_object_store_script_precheck_step_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t type.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_RUN_LOCAL_SCRIPT_USER_DEFINED_STEP_DETAILS_T Type

The details for updating a Run Local Script step.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_run_local_script_user_defined_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t (
  run_on_instance_id varchar2(32767),
  script_command varchar2(32767),
  run_as_user varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_run_local_script_user_defined_step_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_run_local_script_user_defined_step_details_t (
    step_type varchar2,
    run_on_instance_id varchar2,
    script_command varchar2,
    run_as_user varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_run_local_script_user_defined_step_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t type.

Fields

Field Description

run_on_instance_id

(required) The OCID of the instance on which this script or command should be executed. **For moving instances:** *runOnInstanceId* must be the OCID of the instance in the region where the instance is currently present. **For non-moving instances:** *runOnInstanceId* must be the OCID of the non-moving instance. Example: `ocid1.instance.oc1..uniqueID`

script_command

(required) The script name and arguments. Example: `/usr/bin/python3 /home/opc/scripts/my_app_script.py arg1 arg2 arg3`

run_as_user

(optional) The userid on the instance to be used for executing the script or command. Example: `opc`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_UPDATE_RUN_OBJECT_STORE_SCRIPT_USER_DEFINED_STEP_DETAILS_T Type

The details for updating a Run Object Store Script step.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_update_run_object_store_script_user_defined_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t (
  run_on_instance_id varchar2(32767),
  object_storage_script_location dbms_cloud_oci_disaster_recovery_update_object_storage_script_location_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_run_object_store_script_user_defined_step_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_update_run_object_store_script_user_defined_step_details_t (
    step_type varchar2,
    run_on_instance_id varchar2,
    object_storage_script_location dbms_cloud_oci_disaster_recovery_update_object_storage_script_location_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_disaster_recovery_update_run_object_store_script_user_defined_step_details_t is a subtype of the dbms_cloud_oci_disaster_recovery_update_dr_plan_user_defined_step_details_t type.

Fields

Field Description

run_on_instance_id

(required) The OCID of the instance on which this script or command should be executed. **For moving instances:** *runOnInstanceId* must be the OCID of the instance in the region where the instance is currently present. **For non-moving instances:** *runOnInstanceId* must be the OCID of the non-moving instance. Example: `ocid1.instance.oc1..uniqueID`

object_storage_script_location

(required)

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_RESOURCE_T Type

A resource created or operated on by a work request.

Syntax

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

Fields

Field Description

entity_type

(required) The resource type the work request affects. Example: `DrPlanExecution`

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 (OCID) of the resource the work request affects. Example: `ocid1.drplanexecution.oc1..uniqueID`

entity_uri

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

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_T Type

Information on a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_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_disaster_recovery_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_disaster_recovery_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_disaster_recovery_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) The type of the work request.

Allowed values are: 'CREATE_DR_PROTECTION_GROUP', 'UPDATE_DR_PROTECTION_GROUP', 'DELETE_DR_PROTECTION_GROUP', 'MOVE_DR_PROTECTION_GROUP', 'ASSOCIATE_DR_PROTECTION_GROUP', 'DISASSOCIATE_DR_PROTECTION_GROUP', 'UPDATE_ROLE_DR_PROTECTION_GROUP', 'CREATE_DR_PLAN', 'UPDATE_DR_PLAN', 'DELETE_DR_PLAN', 'CREATE_DR_PLAN_EXECUTION', 'UPDATE_DR_PLAN_EXECUTION', 'DELETE_DR_PLAN_EXECUTION', 'RETRY_DR_PLAN_EXECUTION', 'IGNORE_DR_PLAN_EXECUTION', 'CANCEL_DR_PLAN_EXECUTION', 'PAUSE_DR_PLAN_EXECUTION', 'RESUME_DR_PLAN_EXECUTION'

status

(required) The status of work request.

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

id

(required) The OCID of the work request. Example: `ocid1.drworkrequest.oc1..uniqueID`

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 Example: `ocid1.compartment.oc1..uniqueID`

resources

(required) The resources affected by this work request.

percent_complete

(required) The percentage of the request completed. Example: `75`

time_accepted

(required) The date and time the request was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_started

(optional) The date and time the request was started. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_finished

(optional) The date and time the request was finished. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_ERROR_T Type

An error associcated with a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_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_disaster_recovery_work_request_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_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 here -- (https://docs.cloud.oracle.com/Content/API/References/apierrors.htm). Example: `429`

message

(required) A human-readable description of the issue encountered. Example: `TooManyRequests`

l_timestamp

(required) The time the error occured. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_ERROR_COLLECTION_T Type

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

Syntax

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

Fields

Field Description

items

(required) A list of work request errors.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_LOG_ENTRY_T Type

A log message related to the execution of a work request.

Syntax

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

Fields

Field Description

message

(required) A human-readable log message. Example: `DR plan execution is in progress`

l_timestamp

(required) The time the log message was written. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

The results of a workRequestLog search. Contains both WorkRequestLog items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) A list of workRequestLogEntries.

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_SUMMARY_T Type

The summary of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_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_disaster_recovery_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_disaster_recovery_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_disaster_recovery_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_disaster_recovery_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) The type of the work request.

Allowed values are: 'CREATE_DR_PROTECTION_GROUP', 'UPDATE_DR_PROTECTION_GROUP', 'DELETE_DR_PROTECTION_GROUP', 'MOVE_DR_PROTECTION_GROUP', 'ASSOCIATE_DR_PROTECTION_GROUP', 'DISASSOCIATE_DR_PROTECTION_GROUP', 'UPDATE_ROLE_DR_PROTECTION_GROUP', 'CREATE_DR_PLAN', 'UPDATE_DR_PLAN', 'DELETE_DR_PLAN', 'CREATE_DR_PLAN_EXECUTION', 'UPDATE_DR_PLAN_EXECUTION', 'DELETE_DR_PLAN_EXECUTION', 'RETRY_DR_PLAN_EXECUTION', 'IGNORE_DR_PLAN_EXECUTION', 'CANCEL_DR_PLAN_EXECUTION', 'PAUSE_DR_PLAN_EXECUTION', 'RESUME_DR_PLAN_EXECUTION'

status

(required) The status of current work request.

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

id

(required) The OCID of the work request. Example: `ocid1.workrequest.oc1..uniqueID`

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. Example: `ocid1.compartment.oc1..uniqueID`

resources

(required) The resources affected by this work request.

percent_complete

(required) The percentage of the request completed. Example: `75`

time_accepted

(required) The date and time the request was created. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_started

(optional) The date and time the request was started. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

time_finished

(optional) The date and time the request was finished. An RFC3339 formatted datetime string. Example: `2019-03-29T09:36:42Z`

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_disaster_recovery_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_disaster_recovery_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_disaster_recovery_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_DISASTER_RECOVERY_WORK_REQUEST_SUMMARY_COLLECTION_T Type

The results of a workRequestSummary search. Contains both WorkRequestSummary items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) A list of work request summaries.

Was this article helpful?