Cloud Migrations Common Types

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VARCHAR2_TBL Type

Nested table type of varchar2(32767).

Syntax

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_RESOURCE_ASSESSMENT_STRATEGY_T Type

Migration strategy for the resource to be migrated.

Syntax

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

Fields

Field Description

resource_type

(required) The type of resource.

Allowed values are: 'CPU', 'MEMORY', 'ALL'

strategy_type

(required) The type of strategy used for migration.

Allowed values are: 'AS_IS', 'AVERAGE', 'PEAK', 'PERCENTILE'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_AS_IS_RESOURCE_ASSESSMENT_STRATEGY_T Type

The 'As-Is' based strategy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_as_is_resource_assessment_strategy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t (
  adjustment_multiplier number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_as_is_resource_assessment_strategy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_as_is_resource_assessment_strategy_t (
    resource_type varchar2,
    strategy_type varchar2,
    adjustment_multiplier number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_as_is_resource_assessment_strategy_t is a subtype of the dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t type.

Fields

Field Description

adjustment_multiplier

(optional) The real resource usage is multiplied to this number before making any recommendation.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_T Type

Asset source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_asset_source_t FORCE AUTHID CURRENT_USER IS OBJECT (
  l_type varchar2(32767),
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  environment_id varchar2(32767),
  inventory_id varchar2(32767),
  assets_compartment_id varchar2(32767),
  discovery_schedule_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_asset_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_asset_source_t (
    l_type varchar2,
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    environment_id varchar2,
    inventory_id varchar2,
    assets_compartment_id varchar2,
    discovery_schedule_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

l_type

(required) The type of asset source. Indicates external origin of the assets that are read by assigning this asset source.

Allowed values are: 'VMWARE'

id

(required) The OCID of the resource.

compartment_id

(required) The OCID of the compartment for the resource.

display_name

(required) A user-friendly name for the asset source. Does not have to be unique, and it's mutable. Avoid entering confidential information.

environment_id

(required) The OCID of the environment.

inventory_id

(required) The OCID of the inventory that will contain created assets.

assets_compartment_id

(required) The OCID of the compartment that is going to be used to create assets.

discovery_schedule_id

(optional) The OCID of an attached discovery schedule.

lifecycle_state

(required) The current state of the asset source.

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

lifecycle_details

(required) The detailed state of the asset source.

time_created

(required) The time when the asset source was created in the RFC3339 format.

time_updated

(required) The point in time that the asset source was last updated in the RFC3339 format.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_SUMMARY_T Type

Summary of an asset source provided in the list.

Syntax

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

Fields

Field Description

l_type

(required) The type of asset source. Indicates external origin of the assets that are read by assigning this asset source.

Allowed values are: 'VMWARE'

id

(required) The OCID of the resourse.

compartment_id

(required) The OCID of the compartment for the resource.

environment_id

(required) The OCID of the environment.

display_name

(required) A user-friendly name for the asset source. Does not have to be unique, and it's mutable. Avoid entering confidential information.

lifecycle_state

(required) The current state of the asset source.

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

lifecycle_details

(required) The detailed state of the asset source.

inventory_id

(required) The OCID of the inventory that will contain created assets.

assets_compartment_id

(required) The OCID of the compartment that is going to be used to create assets.

time_created

(optional) The time when the asset source was created in RFC3339 format.

time_updated

(optional) The point in time that the asset source was last updated in RFC3339 format.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_asset_source_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_asset_source_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_asset_source_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_COLLECTION_T Type

Results of an asset source search. Contains asset source items.

Syntax

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

Fields

Field Description

items

(required) List of asset sources.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_CONNECTION_T Type

Descriptor of a connection to an asset source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_asset_source_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
  connection_type varchar2(32767),
  connector_id varchar2(32767),
  asset_source_key varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_asset_source_connection_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_asset_source_connection_t (
    connection_type varchar2,
    connector_id varchar2,
    asset_source_key varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

connection_type

(required) The type of connection for an asset source.

Allowed values are: 'DISCOVERY', 'REPLICATION'

connector_id

(required) The OCID of the cloud bridge connector used for migration operations.

asset_source_key

(required) Type-specific identifier for an asset source.

lifecycle_state

(required) The current state of the connection.

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

lifecycle_details

(required) The detailed sub-state of the connection.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_CONNECTION_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_asset_source_connection_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_asset_source_connection_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_asset_source_connection_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_CONNECTION_COLLECTION_T Type

List of connections for an asset source.

Syntax

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

Fields

Field Description

items

(required) List of connections.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ASSET_SOURCE_CREDENTIALS_T Type

Credentials for an asset source.

Syntax

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

Fields

Field Description

l_type

(required) Authentication type

Allowed values are: 'BASIC'

secret_id

(required) The OCID of the secret in a vault. If the the type of the credentials is BASIC`, the secret must contain the username and password in JSON format, which is in the form of `{ \"username\": \"<VMwareUser>\", \"password\": \"<VMwarePassword>\" }`.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_AVAILABLE_SHAPE_SUMMARY_T Type

Sumarized information about a shape.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_available_shape_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  availability_domain varchar2(32767),
  pagination_token varchar2(32767),
  min_total_baseline_ocpus_required number,
  shape varchar2(32767),
  processor_description varchar2(32767),
  ocpus number,
  memory_in_g_bs number,
  networking_bandwidth_in_gbps number,
  max_vnic_attachments number,
  gpus number,
  gpu_description varchar2(32767),
  local_disks number,
  local_disks_total_size_in_g_bs number,
  local_disk_description varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_available_shape_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_available_shape_summary_t (
    availability_domain varchar2,
    pagination_token varchar2,
    min_total_baseline_ocpus_required number,
    shape varchar2,
    processor_description varchar2,
    ocpus number,
    memory_in_g_bs number,
    networking_bandwidth_in_gbps number,
    max_vnic_attachments number,
    gpus number,
    gpu_description varchar2,
    local_disks number,
    local_disks_total_size_in_g_bs number,
    local_disk_description 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

availability_domain

(required) Availability domain of the shape.

pagination_token

(required) Shape name and availability domain. Used for pagination.

min_total_baseline_ocpus_required

(optional) Minimum CPUs required.

shape

(required) Name of the shape.

processor_description

(required) Description of the processor.

ocpus

(required) Number of CPUs.

memory_in_g_bs

(required) Amount of memory for the shape.

networking_bandwidth_in_gbps

(optional) Shape bandwidth.

max_vnic_attachments

(optional) Maximum number of virtual network interfaces that can be attached.

gpus

(optional) Number of GPUs.

gpu_description

(optional) Description of the GPUs.

local_disks

(optional) Number of local disks.

local_disks_total_size_in_g_bs

(optional) Total size of local disks for shape.

local_disk_description

(optional) Description of local disks.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_AVAILABLE_SHAPE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_available_shape_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_available_shape_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_available_shape_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_AVAILABLE_SHAPES_COLLECTION_T Type

Results of an available shapes search. Contains list of shapes.

Syntax

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

Fields

Field Description

items

(required) Available shapes list.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_AVERAGE_RESOURCE_ASSESSMENT_STRATEGY_T Type

The strategy based on average usage.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_average_resource_assessment_strategy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t (
  adjustment_multiplier number,
  metric_type varchar2(32767),
  metric_time_window varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_average_resource_assessment_strategy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_average_resource_assessment_strategy_t (
    resource_type varchar2,
    strategy_type varchar2,
    adjustment_multiplier number,
    metric_type varchar2,
    metric_time_window varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_average_resource_assessment_strategy_t is a subtype of the dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t type.

Fields

Field Description

adjustment_multiplier

(optional) The real resource usage is multiplied to this number before making any recommendation.

metric_type

(optional) The current state of the migration plan.

Allowed values are: 'AUTO', 'HISTORICAL', 'RUNTIME'

metric_time_window

(optional) The current state of the migration plan.

Allowed values are: '1d', '7d', '30d'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CHANGE_ASSET_SOURCE_COMPARTMENT_DETAILS_T Type

Details for which compartment to move the resource to.

Syntax

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

Fields

Field Description

compartment_id

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CHANGE_DISCOVERY_SCHEDULE_COMPARTMENT_DETAILS_T Type

Information about the compartment into which the discovery schedule should be moved.

Syntax

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

Fields

Field Description

compartment_id

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CHANGE_MIGRATION_COMPARTMENT_DETAILS_T Type

The information to be updated.

Syntax

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

Fields

Field Description

compartment_id

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CHANGE_MIGRATION_PLAN_COMPARTMENT_DETAILS_T Type

Details about the compartment into which the resource can be moved.

Syntax

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

Fields

Field Description

compartment_id

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CHANGE_REPLICATION_SCHEDULE_COMPARTMENT_DETAILS_T Type

Information about compartment into which the replication schedule should be moved.

Syntax

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

Fields

Field Description

compartment_id

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_COMPATIBILITY_MESSAGE_T Type

Information about shape compatibility with the client's current resource configuration.

Syntax

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

Fields

Field Description

severity

(optional) Severity level of the compatibility issue.

Allowed values are: 'ERROR', 'WARNING', 'INFO'

name

(optional) Name of the compatibility issue.

Allowed values are: 'NOT_ENOUGH_DATA', 'INVALID_DATA', 'CPU_COMPATIBILITY_WARNING', 'CPU_METRIC_INFO', 'MEMORY_COMPATIBILITY_WARNING', 'MEMORY_METRIC_INFO', 'VNICS_COMPATIBILITY_WARNING', 'BANDWIDTH_COMPATIBILITY_WARNING', 'GPU_COMPATIBILITY_WARNING', 'OS_WARNING'

message

(optional) Detailed description of the compatibility issue.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_COMPUTE_COST_ESTIMATION_T Type

Cost estimation for compute

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_compute_cost_estimation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ocpu_per_hour number,
  ocpu_per_hour_by_subscription number,
  memory_gb_per_hour number,
  memory_gb_per_hour_by_subscription number,
  gpu_per_hour number,
  gpu_per_hour_by_subscription number,
  total_per_hour number,
  total_per_hour_by_subscription number,
  ocpu_count number,
  memory_amount_gb number,
  gpu_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_compute_cost_estimation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_compute_cost_estimation_t (
    ocpu_per_hour number,
    ocpu_per_hour_by_subscription number,
    memory_gb_per_hour number,
    memory_gb_per_hour_by_subscription number,
    gpu_per_hour number,
    gpu_per_hour_by_subscription number,
    total_per_hour number,
    total_per_hour_by_subscription number,
    ocpu_count number,
    memory_amount_gb number,
    gpu_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

ocpu_per_hour

(required) OCPU per hour

ocpu_per_hour_by_subscription

(optional) OCPU per hour by subscription

memory_gb_per_hour

(required) Gigabyte per hour

memory_gb_per_hour_by_subscription

(optional) Gigabyte per hour by subscription

gpu_per_hour

(required) GPU per hour

gpu_per_hour_by_subscription

(optional) GPU per hour by subscription

total_per_hour

(required) Total per hour

total_per_hour_by_subscription

(optional) Total usage per hour by subscription

ocpu_count

(optional) Total number of OCPUs

memory_amount_gb

(optional) Total usage of memory

gpu_count

(optional) Total number of GPU

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VOLUME_COST_ESTIMATION_T Type

Cost estimation for volume

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_volume_cost_estimation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  capacity_gb number,
  description varchar2(32767),
  total_gb_per_month number,
  total_gb_per_month_by_subscription number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_volume_cost_estimation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_volume_cost_estimation_t (
    capacity_gb number,
    description varchar2,
    total_gb_per_month number,
    total_gb_per_month_by_subscription number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

capacity_gb

(required) Gigabyte storage capacity

description

(optional) Volume description

total_gb_per_month

(required) Gigabyte storage capacity per month.

total_gb_per_month_by_subscription

(optional) Gigabyte storage capacity per month by subscription

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VOLUME_COST_ESTIMATION_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_volume_cost_estimation_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_volume_cost_estimation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_volume_cost_estimation_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_STORAGE_COST_ESTIMATION_T Type

Cost estimation for storage

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_storage_cost_estimation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  volumes dbms_cloud_oci_cloud_migrations_volume_cost_estimation_tbl,
  total_gb_per_month number,
  total_gb_per_month_by_subscription number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_storage_cost_estimation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_storage_cost_estimation_t (
    volumes dbms_cloud_oci_cloud_migrations_volume_cost_estimation_tbl,
    total_gb_per_month number,
    total_gb_per_month_by_subscription number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

volumes

(required) Volume estimation

total_gb_per_month

(required) Gigabyte storage capacity per month.

total_gb_per_month_by_subscription

(optional) Gigabyte storage capacity per month by subscription.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_OS_IMAGE_ESTIMATION_T Type

Cost estimation for the OS image.

Syntax

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

Fields

Field Description

total_per_hour

(required) Total price per hour

total_per_hour_by_subscription

(optional) Total price per hour by subscription

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_COST_ESTIMATION_T Type

Cost estimation description

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_cost_estimation_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compute dbms_cloud_oci_cloud_migrations_compute_cost_estimation_t,
  storage dbms_cloud_oci_cloud_migrations_storage_cost_estimation_t,
  os_image dbms_cloud_oci_cloud_migrations_os_image_estimation_t,
  currency_code varchar2(32767),
  total_estimation_per_month number,
  total_estimation_per_month_by_subscription number,
  subscription_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_cost_estimation_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_cost_estimation_t (
    compute dbms_cloud_oci_cloud_migrations_compute_cost_estimation_t,
    storage dbms_cloud_oci_cloud_migrations_storage_cost_estimation_t,
    os_image dbms_cloud_oci_cloud_migrations_os_image_estimation_t,
    currency_code varchar2,
    total_estimation_per_month number,
    total_estimation_per_month_by_subscription number,
    subscription_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

compute

(required)

storage

(required)

os_image

(required)

currency_code

(optional) Currency code in the ISO format.

total_estimation_per_month

(required) Total estimation per month

total_estimation_per_month_by_subscription

(optional) Total estimation per month by subscription.

subscription_id

(optional) Subscription ID

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_ASSET_SOURCE_DETAILS_T Type

Asset source creation request.

Syntax

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

Fields

Field Description

l_type

(required) Asset source type.

Allowed values are: 'VMWARE'

display_name

(optional) A user-friendly name for the asset source. Does not have to be unique, and it's mutable. Avoid entering confidential information. The name is generated by the service if it is not explicitly provided.

compartment_id

(required) The OCID of the compartment for the resource.

environment_id

(required) The OCID of the environment.

inventory_id

(required) The OCID of the inventory that will contain created assets.

assets_compartment_id

(required) The OCID of the compartment that is going to be used to create assets.

discovery_schedule_id

(optional) The OCID of the discovery schedule that is going to be attached to the created asset.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_DISCOVERY_SCHEDULE_DETAILS_T Type

Information about discovery schedule to be created.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_create_discovery_schedule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  execution_recurrences varchar2(32767),
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_discovery_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_discovery_schedule_details_t (
    compartment_id varchar2,
    execution_recurrences varchar2,
    display_name varchar2,
    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 the discovery schedule is created.

execution_recurrences

(required) Recurrence specification for the discovery schedule execution.

display_name

(optional) A user-friendly name for the discovery schedule. Does not have to be unique, and it's mutable. Avoid entering confidential information. The name is generated by the service if it is not explicitly provided.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_MIGRATION_ASSET_DETAILS_T Type

Details of the new migration asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_create_migration_asset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  inventory_asset_id varchar2(32767),
  migration_id varchar2(32767),
  replication_schedule_id varchar2(32767),
  availability_domain varchar2(32767),
  replication_compartment_id varchar2(32767),
  snap_shot_bucket_name varchar2(32767),
  depends_on dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_migration_asset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_migration_asset_details_t (
    display_name varchar2,
    inventory_asset_id varchar2,
    migration_id varchar2,
    replication_schedule_id varchar2,
    availability_domain varchar2,
    replication_compartment_id varchar2,
    snap_shot_bucket_name varchar2,
    depends_on dbms_cloud_oci_cloud_migrations_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(optional) A user-friendly name. If empty, then source asset name will be used. Does not have to be unique, and it's changeable. Avoid entering confidential information.

inventory_asset_id

(required) OCID of an asset for an inventory.

migration_id

(required) OCID of the associated migration.

replication_schedule_id

(optional) Replication schedule identifier

availability_domain

(required) Availability domain

replication_compartment_id

(required) Replication compartment identifier

snap_shot_bucket_name

(required) Name of snapshot bucket

depends_on

(optional) List of migration assets that depends on this asset.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_MIGRATION_DETAILS_T Type

The information about new migration.

Syntax

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

Fields

Field Description

display_name

(required) Migration identifier

compartment_id

(required) Compartment identifier

replication_schedule_id

(optional) Replication schedule identifier

is_completed

(optional) Indicates whether migration is marked as complete.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_TARGET_ENVIRONMENT_T Type

Description of the target environment.

Syntax

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

Fields

Field Description

target_compartment_id

(optional) Target compartment identifier

target_environment_type

(required) The type of target environment.

Allowed values are: 'VM_TARGET_ENV'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_RESOURCE_ASSESSMENT_STRATEGY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_TARGET_ENVIRONMENT_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_target_environment_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_target_environment_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_target_environment_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_MIGRATION_PLAN_DETAILS_T Type

The information about the new migration plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_create_migration_plan_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  migration_id varchar2(32767),
  source_migration_plan_id varchar2(32767),
  strategies dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_tbl,
  target_environments dbms_cloud_oci_cloud_migrations_target_environment_tbl,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_migration_plan_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_migration_plan_details_t (
    display_name varchar2,
    compartment_id varchar2,
    migration_id varchar2,
    source_migration_plan_id varchar2,
    strategies dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_tbl,
    target_environments dbms_cloud_oci_cloud_migrations_target_environment_tbl,
    freeform_tags json_element_t,
    defined_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

display_name

(required) Migration plan identifier

compartment_id

(required) Compartment identifier

migration_id

(required) The OCID of the associated migration.

source_migration_plan_id

(optional) Source migraiton plan ID to be cloned.

strategies

(optional) List of strategies for the resources to be migrated.

target_environments

(optional) List of target environments.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_REPLICATION_SCHEDULE_DETAILS_T Type

Information about replication schedule to be created.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_create_replication_schedule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  compartment_id varchar2(32767),
  execution_recurrences varchar2(32767),
  display_name varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_replication_schedule_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_replication_schedule_details_t (
    compartment_id varchar2,
    execution_recurrences varchar2,
    display_name varchar2,
    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 the replication schedule should be created.

execution_recurrences

(required) Recurrence specification for replication schedule execution.

display_name

(required) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_TARGET_ASSET_DETAILS_T Type

Details of the new target asset.

Syntax

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

Fields

Field Description

migration_plan_id

(required) OCID of the associated migration plan.

l_type

(required) The type of target asset.

Allowed values are: 'INSTANCE'

is_excluded_from_execution

(required) A boolean indicating whether the asset should be migrated.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_VNIC_DETAILS_T Type

Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_create_vnic_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  assign_public_ip number,
  assign_private_dns_record number,
  defined_tags json_element_t,
  display_name varchar2(32767),
  freeform_tags json_element_t,
  hostname_label varchar2(32767),
  nsg_ids dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  private_ip varchar2(32767),
  skip_source_dest_check number,
  subnet_id varchar2(32767),
  vlan_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_vnic_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_vnic_details_t (
    assign_public_ip number,
    assign_private_dns_record number,
    defined_tags json_element_t,
    display_name varchar2,
    freeform_tags json_element_t,
    hostname_label varchar2,
    nsg_ids dbms_cloud_oci_cloud_migrations_varchar2_tbl,
    private_ip varchar2,
    skip_source_dest_check number,
    subnet_id varchar2,
    vlan_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

assign_public_ip

(optional) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where `prohibitPublicIpOnVnic` = true in the SUBNET Type), then no public IP address is assigned. If not set and the subnet is public (`prohibitPublicIpOnVnic` = false), then a public IP address is assigned. If set to true and `prohibitPublicIpOnVnic` = true, an error is returned. **Note:** This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses. **Note:** There's a limit to the number of PUBLIC_IP Type a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses. Example: `false` If you specify a `vlanId`, then `assignPublicIp` must be set to false. See VLAN Type.

assign_private_dns_record

(optional) Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. By default, the value is true. If you specify a `hostnameLabel`, then `assignPrivateDnsRecord` must be set to true.

defined_tags

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

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

freeform_tags

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

hostname_label

(optional) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance-1` in FQDN `bminstance-1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. The value appears in the VNIC Type object and also the PRIVATE_IP Type object returned by LIST_PRIVATE_IPS Function and GET_PRIVATE_IP Function. For more information, see DNS in Your Virtual Cloud Network. When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in LAUNCH_INSTANCE_DETAILS Function. If you provide both, the values must match. Example: `bminstance-1` If you specify a `vlanId`, the `hostnameLabel` cannot be specified. VNICs on a VLAN can not be assigned a hostname. See VLAN Type.

nsg_ids

(optional) List of OCIDs of the network security groups (NSGs) that are added to the VNIC. For more information about NSGs, see NETWORK_SECURITY_GROUP Type. If a `vlanId` is specified, the `nsgIds` cannot be specified. The `vlanId` indicates that the VNIC will belong to a VLAN instead of a subnet. With VLANs, all VNICs in the VLAN belong to the NSGs that are associated with the VLAN. See VLAN Type.

private_ip

(optional) A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the VNIC Type object and also the PRIVATE_IP Type object returned by LIST_PRIVATE_IPS Function and GET_PRIVATE_IP Function. If you specify a `vlanId`, the `privateIp` cannot be specified. See VLAN Type. Example: `10.0.3.3`

skip_source_dest_check

(optional) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you should skip the source/destination check, see Using a Private IP as a Route Target. If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See VLAN Type. Example: `true`

subnet_id

(optional) The OCID of the subnet to create the VNIC. When launching an instance, use this `subnetId` instead of the deprecated `subnetId` in LAUNCH_INSTANCE_DETAILS Function. At least one of them is required; if you provide both, the values must match. If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a `vlanId` instead of a `subnetId`. If you provide both `vlanId` and `subnetId`, the request fails.

vlan_id

(optional) Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See VLAN Type. Provide a `vlanId` instead of a `subnetId`. If you provide both `vlanId` and `subnetId`, the request fails.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_INSTANCE_OPTIONS_T Type

Optional mutable instance options

Syntax

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

Fields

Field Description

are_legacy_imds_endpoints_disabled

(optional) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_PREEMPTION_ACTION_T Type

The action to run when the preemptible instance is interrupted for eviction.

Syntax

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

Fields

Field Description

l_type

(required) The type of action to run when the instance is interrupted for eviction.

Allowed values are: 'TERMINATE'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_PREEMPTIBLE_INSTANCE_CONFIG_DETAILS_T Type

Configuration options for preemptible instances.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_preemptible_instance_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  preemption_action dbms_cloud_oci_cloud_migrations_preemption_action_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_preemptible_instance_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_preemptible_instance_config_details_t (
    preemption_action dbms_cloud_oci_cloud_migrations_preemption_action_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

preemption_action

(required)

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_INSTANCE_AGENT_PLUGIN_CONFIG_DETAILS_T Type

The configuration of plugins associated with this instance.

Syntax

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

Fields

Field Description

name

(required) The plugin name. To get a list of available plugins, use the LIST_INSTANCEAGENT_AVAILABLE_PLUGINS Function operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.

desired_state

(required) Whether the plugin should be enabled or disabled. To enable the monitoring and management plugins, the `isMonitoringDisabled` and `isManagementDisabled` attributes must also be set to false.

Allowed values are: 'ENABLED', 'DISABLED'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_INSTANCE_AGENT_PLUGIN_CONFIG_DETAILS_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_instance_agent_plugin_config_details_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_instance_agent_plugin_config_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_instance_agent_plugin_config_details_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_LAUNCH_INSTANCE_AGENT_CONFIG_DETAILS_T Type

Configuration options for the Oracle Cloud Agent software running on the instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_launch_instance_agent_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  is_monitoring_disabled number,
  is_management_disabled number,
  are_all_plugins_disabled number,
  plugins_config dbms_cloud_oci_cloud_migrations_instance_agent_plugin_config_details_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_launch_instance_agent_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_launch_instance_agent_config_details_t (
    is_monitoring_disabled number,
    is_management_disabled number,
    are_all_plugins_disabled number,
    plugins_config dbms_cloud_oci_cloud_migrations_instance_agent_plugin_config_details_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

is_monitoring_disabled

(optional) Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. By default, the value is false (monitoring plugins are enabled). These are the monitoring plugins: Compute instance monitoring and Custom logs monitoring. The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the `pluginsConfig` object. - If `isMonitoringDisabled` is true, all the monitoring plugins are disabled, regardless of the per-plugin configuration. - If `isMonitoringDisabled` is false, all the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in the `pluginsConfig` object.

is_management_disabled

(optional) Whether Oracle Cloud Agent can run all the available management plugins. By default, the value is false (management plugins are enabled). These are the management plugins: OS Management Service Agent and Compute instance run command. The management plugins are controlled by this parameter and the per-plugin configuration in the `pluginsConfig` object. - If `isManagementDisabled` is true, all the management plugins are disabled, regardless of the per-plugin configuration. - If `isManagementDisabled` is false, all the management plugins are enabled. You can optionally disable individual management plugins by providing a value in the `pluginsConfig` object.

are_all_plugins_disabled

(optional) Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins. To get a list of available plugins, use the LIST_INSTANCEAGENT_AVAILABLE_PLUGINS Function operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.

plugins_config

(optional) The configuration of plugins associated with this instance.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_LAUNCH_INSTANCE_SHAPE_CONFIG_DETAILS_T Type

The shape configuration requested for the instance. If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the `shape` that you specify. Each shape only supports certain configurable values. If the values that you provide are not valid for the specified `shape`, an error is returned.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_launch_instance_shape_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  ocpus number,
  memory_in_g_bs number,
  baseline_ocpu_utilization varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_launch_instance_shape_config_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_launch_instance_shape_config_details_t (
    ocpus number,
    memory_in_g_bs number,
    baseline_ocpu_utilization varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

ocpus

(optional) The total number of OCPUs available to the instance.

memory_in_g_bs

(optional) The total amount of memory in gigabytes that is available to the instance.

baseline_ocpu_utilization

(optional) The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with `BASELINE_1_1`. The following values are supported: - `BASELINE_1_8` - baseline usage is 1/8 of an OCPU. - `BASELINE_1_2` - baseline usage is 1/2 of an OCPU. - `BASELINE_1_1` - baseline usage is an entire OCPU. This represents a non-burstable instance.

Allowed values are: 'BASELINE_1_8', 'BASELINE_1_2', 'BASELINE_1_1'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_INSTANCE_SOURCE_DETAILS_T Type

Syntax

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

Fields

Field Description

source_type

(required) The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_LAUNCH_INSTANCE_DETAILS_T Type

Instance launch details. Use the `sourceDetails` parameter to specify whether a boot volume or an image should be used to launch a new instance.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_launch_instance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
  availability_domain varchar2(32767),
  capacity_reservation_id varchar2(32767),
  compartment_id varchar2(32767),
  create_vnic_details dbms_cloud_oci_cloud_migrations_create_vnic_details_t,
  dedicated_vm_host_id varchar2(32767),
  defined_tags json_element_t,
  display_name varchar2(32767),
  fault_domain varchar2(32767),
  freeform_tags json_element_t,
  hostname_label varchar2(32767),
  ipxe_script varchar2(32767),
  instance_options dbms_cloud_oci_cloud_migrations_instance_options_t,
  preemptible_instance_config dbms_cloud_oci_cloud_migrations_preemptible_instance_config_details_t,
  agent_config dbms_cloud_oci_cloud_migrations_launch_instance_agent_config_details_t,
  shape varchar2(32767),
  shape_config dbms_cloud_oci_cloud_migrations_launch_instance_shape_config_details_t,
  source_details dbms_cloud_oci_cloud_migrations_instance_source_details_t,
  is_pv_encryption_in_transit_enabled number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_launch_instance_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_launch_instance_details_t (
    availability_domain varchar2,
    capacity_reservation_id varchar2,
    compartment_id varchar2,
    create_vnic_details dbms_cloud_oci_cloud_migrations_create_vnic_details_t,
    dedicated_vm_host_id varchar2,
    defined_tags json_element_t,
    display_name varchar2,
    fault_domain varchar2,
    freeform_tags json_element_t,
    hostname_label varchar2,
    ipxe_script varchar2,
    instance_options dbms_cloud_oci_cloud_migrations_instance_options_t,
    preemptible_instance_config dbms_cloud_oci_cloud_migrations_preemptible_instance_config_details_t,
    agent_config dbms_cloud_oci_cloud_migrations_launch_instance_agent_config_details_t,
    shape varchar2,
    shape_config dbms_cloud_oci_cloud_migrations_launch_instance_shape_config_details_t,
    source_details dbms_cloud_oci_cloud_migrations_instance_source_details_t,
    is_pv_encryption_in_transit_enabled number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

availability_domain

(optional) The availability domain of the instance. Example: `Uocm:PHX-AD-1`

capacity_reservation_id

(optional) The OCID of the compute capacity reservation under which this instance is launched. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.

compartment_id

(optional) The OCID of the compartment.

create_vnic_details

(optional)

dedicated_vm_host_id

(optional) The OCID of the dedicated VM host.

defined_tags

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

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

fault_domain

(optional) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains lets you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains. If you do not specify the fault domain, the system selects one for you. To get a list of fault domains, use the LIST_FAULT_DOMAINS Function operation in the Identity and Access Management Service API. Example: `FAULT-DOMAIN-1`

freeform_tags

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

hostname_label

(optional) Deprecated. Instead use `hostnameLabel` in CREATE_VNIC_DETAILS Type. If you provide both, the values must match.

ipxe_script

(optional) This is an advanced option. When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process. If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call. By default, the iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI in the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot. If your instance boot volume type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume type is paravirtualized and you use custom iPXE to perform network-boot into your instance, the primary boot volume is attached as a data volume through the virtio-scsi drive. For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image. For more information about iPXE, see http://ipxe.org.

instance_options

(optional)

preemptible_instance_config

(optional)

agent_config

(optional)

shape

(optional) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance. You can enumerate all available shapes by calling LIST_SHAPES Function.

shape_config

(optional)

source_details

(optional)

is_pv_encryption_in_transit_enabled

(optional) Whether to enable in-transit encryption for the data volume's paravirtualized attachment. This field applies to both block volumes and boot volumes. By default, the value is false.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_VM_TARGET_ASSET_DETAILS_T Type

Description of the VM target asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_create_vm_target_asset_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_create_target_asset_details_t (
  preferred_shape_type varchar2(32767),
  block_volumes_performance number,
  ms_license varchar2(32767),
  user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_vm_target_asset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_vm_target_asset_details_t (
    migration_plan_id varchar2,
    l_type varchar2,
    is_excluded_from_execution number,
    preferred_shape_type varchar2,
    block_volumes_performance number,
    ms_license varchar2,
    user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_create_vm_target_asset_details_t is a subtype of the dbms_cloud_oci_cloud_migrations_create_target_asset_details_t type.

Fields

Field Description

preferred_shape_type

(required) Preferred VM shape type that you provide.

block_volumes_performance

(optional) Performance of the block volumes.

ms_license

(optional) Microsoft license for the VM configuration.

user_spec

(required)

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_CREATE_VM_WARE_ASSET_SOURCE_DETAILS_T Type

Description of an asset source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_create_vm_ware_asset_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_create_asset_source_details_t (
  vcenter_endpoint varchar2(32767),
  discovery_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
  replication_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
  are_historical_metrics_collected number,
  are_realtime_metrics_collected number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_vm_ware_asset_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_create_vm_ware_asset_source_details_t (
    l_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    environment_id varchar2,
    inventory_id varchar2,
    assets_compartment_id varchar2,
    discovery_schedule_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcenter_endpoint varchar2,
    discovery_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
    replication_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
    are_historical_metrics_collected number,
    are_realtime_metrics_collected number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_create_vm_ware_asset_source_details_t is a subtype of the dbms_cloud_oci_cloud_migrations_create_asset_source_details_t type.

Fields

Field Description

vcenter_endpoint

(required) Endpoint for VMware asset discovery and replication in the form of ```https://<host>:<port>/sdk```

discovery_credentials

(required)

replication_credentials

(optional)

are_historical_metrics_collected

(optional) Flag indicating whether historical metrics are collected for assets, originating from this asset source.

are_realtime_metrics_collected

(optional) Flag indicating whether real-time metrics are collected for assets, originating from this asset source.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_DISCOVERY_SCHEDULE_T Type

Discovery schedule.

Syntax

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

Fields

Field Description

id

(required) The OCID of the discovery schedule.

display_name

(required) A user-friendly name for the discovery schedule. Does not have to be unique, and it's mutable. Avoid entering confidential information.

execution_recurrences

(required) Recurrence specification for the discovery schedule execution.

compartment_id

(required) The OCID of the compartment in which the discovery schedule exists.

lifecycle_state

(required) Current state of the discovery schedule.

Allowed values are: 'ACTIVE', 'DELETED'

lifecycle_details

(required) The detailed state of the discovery schedule.

time_created

(required) The time when the discovery schedule was created in RFC3339 format.

time_updated

(required) The time when the discovery schedule was last updated in RFC3339 format.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_DISCOVERY_SCHEDULE_SUMMARY_T Type

Sumarized information about a discovery schedule.

Syntax

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

Fields

Field Description

id

(required) The OCID of the discovery schedule.

display_name

(required) A user-friendly name for the discovery schedule. Does not have to be unique, and it's mutable. Avoid entering confidential information.

compartment_id

(required) The OCID of the compartment in which the discovery schedule exists.

lifecycle_state

(required) Current state of the discovery schedule.

Allowed values are: 'ACTIVE', 'DELETED'

lifecycle_details

(required) The detailed state of the discovery schedule.

time_created

(required) The time when the discovery schedule was created in RFC3339 format.

time_updated

(required) The time when the discovery schedule was last updated in RFC3339 format.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_DISCOVERY_SCHEDULE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_discovery_schedule_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_discovery_schedule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_discovery_schedule_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_DISCOVERY_SCHEDULE_COLLECTION_T Type

Results of a discovery schedule search. Contains discovery schedule summaries.

Syntax

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

Fields

Field Description

items

(required) Discovery schedule summaries.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_ERROR_T Type

Error information.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
  code varchar2(32767),
  message varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_error_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_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 that is meant for programmatic parsing.

message

(required) A human-readable error string.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_HYDRATED_VOLUME_T Type

Description of the hydration server volume.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_hydrated_volume_t FORCE AUTHID CURRENT_USER IS OBJECT (
  uuid varchar2(32767),
  volume_id varchar2(32767),
  volume_type varchar2(32767),
  unmodified_volume_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_hydrated_volume_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_hydrated_volume_t (
    uuid varchar2,
    volume_id varchar2,
    volume_type varchar2,
    unmodified_volume_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

uuid

(required) ID of the vCenter disk obtained from Inventory.

volume_id

(required) ID of the hydration server volume

volume_type

(required) The hydration server volume type

Allowed values are: 'BOOT', 'BLOCK'

unmodified_volume_id

(required) ID of the unmodified volume

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_INSTANCE_SOURCE_VIA_BOOT_VOLUME_DETAILS_T Type

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_instance_source_via_boot_volume_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_instance_source_details_t (
  boot_volume_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_instance_source_via_boot_volume_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_instance_source_via_boot_volume_details_t (
    source_type varchar2,
    boot_volume_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_instance_source_via_boot_volume_details_t is a subtype of the dbms_cloud_oci_cloud_migrations_instance_source_details_t type.

Fields

Field Description

boot_volume_id

(required) The OCID of the boot volume used to boot the instance.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_INSTANCE_SOURCE_VIA_IMAGE_DETAILS_T Type

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_instance_source_via_image_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_instance_source_details_t (
  boot_volume_size_in_g_bs number,
  image_id varchar2(32767),
  kms_key_id varchar2(32767),
  boot_volume_vpus_per_gb number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_instance_source_via_image_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_instance_source_via_image_details_t (
    source_type varchar2,
    boot_volume_size_in_g_bs number,
    image_id varchar2,
    kms_key_id varchar2,
    boot_volume_vpus_per_gb number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_instance_source_via_image_details_t is a subtype of the dbms_cloud_oci_cloud_migrations_instance_source_details_t type.

Fields

Field Description

boot_volume_size_in_g_bs

(optional) The size of the boot volume in GBs. The minimum value is 50 GB and the maximum value is 32,768 GB (32 TB).

image_id

(required) The OCID of the image used to boot the instance.

kms_key_id

(optional) The OCID of the key management key to assign as the master encryption key for the boot volume.

boot_volume_vpus_per_gb

(optional) The number of volume performance units (VPUs) that will be applied to this volume per GB that represents the Block Volume service's elastic performance options. See Block Volume Performance Levels for more information. Allowed values: * `10`: Represents Balanced option. * `20`: Represents Higher Performance option. * `30`-`120`: Represents the Ultra High Performance option. For volumes with the auto-tuned performance feature enabled, this is set to the default (minimum) VPUs/GB.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_T Type

A top-level container to track all aspects of a long-running migration workflow to OCI.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  replication_schedule_id varchar2(32767),
  is_completed number,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    replication_schedule_id varchar2,
    is_completed number,
    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) Unique identifier that is immutable on creation

display_name

(optional) Migration Identifier that can be renamed

compartment_id

(required) Compartment Identifier

lifecycle_state

(required) The current state of migration.

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

lifecycle_details

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

time_created

(required) The time when the migration project was created. An RFC3339 formatted datetime string

time_updated

(optional) The time when the migration project was updated. An RFC3339 formatted datetime string

replication_schedule_id

(optional) Replication schedule identifier

is_completed

(optional) Indicates whether migration is marked as completed.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_ASSET_T Type

Description of the migration asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_asset_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  l_type varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  migration_id varchar2(32767),
  snapshots json_element_t,
  parent_snapshot varchar2(32767),
  source_asset_data json_element_t,
  notifications dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  source_asset_id varchar2(32767),
  replication_schedule_id varchar2(32767),
  availability_domain varchar2(32767),
  replication_compartment_id varchar2(32767),
  tenancy_id varchar2(32767),
  snap_shot_bucket_name varchar2(32767),
  depended_on_by dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  depends_on dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_asset_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_asset_t (
    id varchar2,
    l_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    migration_id varchar2,
    snapshots json_element_t,
    parent_snapshot varchar2,
    source_asset_data json_element_t,
    notifications dbms_cloud_oci_cloud_migrations_varchar2_tbl,
    source_asset_id varchar2,
    replication_schedule_id varchar2,
    availability_domain varchar2,
    replication_compartment_id varchar2,
    tenancy_id varchar2,
    snap_shot_bucket_name varchar2,
    depended_on_by dbms_cloud_oci_cloud_migrations_varchar2_tbl,
    depends_on dbms_cloud_oci_cloud_migrations_varchar2_tbl
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) Asset ID generated by mirgration service. It is used in the mirgration service pipeline.

l_type

(required) The type of asset referenced for inventory.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(optional) Compartment Identifier

lifecycle_state

(required) The current state of the migration asset.

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

lifecycle_details

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

time_created

(required) The time when the migration asset was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the migration asset was updated. An RFC3339 formatted datetime string.

migration_id

(required) OCID of the associated migration.

snapshots

(optional) Key-value pair representing disks ID mapped to the OCIDs of replicated or hydration server volume snapshots. Example: `{\"bar-key\": \"value\"}`

parent_snapshot

(optional) The parent snapshot of the migration asset to be used by the replication task.

source_asset_data

(optional) Key-value pair representing asset metadata keys and values scoped to a namespace. Example: `{\"bar-key\": \"value\"}`

notifications

(optional) List of notifications

Allowed values are: 'OUT_OF_DATE', 'SOURCE_REMOVED'

source_asset_id

(optional) OCID that is referenced to an asset for an inventory.

replication_schedule_id

(optional) Replication schedule identifier

availability_domain

(required) Availability domain

replication_compartment_id

(required) Replication compartment identifier

tenancy_id

(optional) Tenancy identifier

snap_shot_bucket_name

(required) Name of snapshot bucket

depended_on_by

(optional) List of migration assets that depend on the asset.

depends_on

(optional) List of migration assets that depends on the asset.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_ASSET_SUMMARY_T Type

Summary of the migration asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_asset_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  l_type varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  migration_id varchar2(32767),
  snapshots json_element_t,
  parent_snapshot varchar2(32767),
  snapshot_info varchar2(32767),
  source_asset_data json_element_t,
  notifications dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  source_asset_id varchar2(32767),
  depended_on_by dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  depends_on dbms_cloud_oci_cloud_migrations_varchar2_tbl,
  replication_schedule_id varchar2(32767),
  tenancy_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_asset_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_asset_summary_t (
    id varchar2,
    l_type varchar2,
    display_name varchar2,
    compartment_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    migration_id varchar2,
    snapshots json_element_t,
    parent_snapshot varchar2,
    snapshot_info varchar2,
    source_asset_data json_element_t,
    notifications dbms_cloud_oci_cloud_migrations_varchar2_tbl,
    source_asset_id varchar2,
    depended_on_by dbms_cloud_oci_cloud_migrations_varchar2_tbl,
    depends_on dbms_cloud_oci_cloud_migrations_varchar2_tbl,
    replication_schedule_id varchar2,
    tenancy_id varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

id

(required) The asset ID generated by the mirgration service. It is used in the migration service pipeline.

l_type

(required) The type of asset referenced for an inventory.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

compartment_id

(optional) Compartment identifier

lifecycle_state

(required) The current state of the migration asset.

lifecycle_details

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

time_created

(required) The time when the migration asset was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the migration asset was updated. An RFC3339 formatted datetime string.

migration_id

(required) OCID of the associated migration.

snapshots

(optional) Key-value pair representing disk's ID that is mapped to the OCIDs of replicated/hydration server volume snapshots. Example: `{\"bar-key\": \"value\"}`

parent_snapshot

(optional) The parent snapshot of the mgration asset to be used by the replication task.

snapshot_info

(optional) The snapshot information.

source_asset_data

(optional) Key-value pair representing asset metadata keys and values scoped to a namespace. Example: `{\"bar-key\": \"value\"}`

notifications

(optional) List of notifications.

Allowed values are: 'OUT_OF_DATE', 'SOURCE_REMOVED'

source_asset_id

(optional) OCID that is referenced to an asset, for an inventory.

depended_on_by

(optional) List of migration assets that depend on this asset.

depends_on

(optional) List of migration assets that depend on this asset.

replication_schedule_id

(optional) Replication schedule identifier

tenancy_id

(optional) Tenancy Identifier

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_ASSET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_migration_asset_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_asset_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_migration_asset_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_ASSET_COLLECTION_T Type

Results of a migration asset search. It contains an array of migration assets.

Syntax

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

Fields

Field Description

items

(required) List of migration asset summaries.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_SUMMARY_T Type

Summary of the migration project.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  compartment_id varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  is_completed number,
  replication_schedule_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_summary_t (
    id varchar2,
    display_name varchar2,
    compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    is_completed number,
    replication_schedule_id 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) Unique identifier that is immutable on creation.

display_name

(optional) Migration identifier that can be renamed

compartment_id

(required) Compartment identifier

time_created

(required) The time when the migration project was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the migration project was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of migration.

lifecycle_details

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

is_completed

(optional) Indicates whether migration is marked as complete.

replication_schedule_id

(optional) Replication schedule identifier

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_migration_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_migration_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_COLLECTION_T Type

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

Syntax

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

Fields

Field Description

items

(required) List of migrations.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_PLAN_STATS_T Type

Status of the migration plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_plan_stats_t FORCE AUTHID CURRENT_USER IS OBJECT (
  total_estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
  time_updated timestamp with time zone,
  vm_count number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_plan_stats_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_plan_stats_t (
    total_estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
    time_updated timestamp with time zone,
    vm_count number
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

total_estimated_cost

(optional)

time_updated

(optional) The time when the migration plan was calculated. An RFC3339 formatted datetime string.

vm_count

(optional) The total count of VMs in migration

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_PLAN_T Type

Description of the migration plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_plan_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  migration_id varchar2(32767),
  strategies dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_tbl,
  migration_plan_stats dbms_cloud_oci_cloud_migrations_migration_plan_stats_t,
  calculated_limits json_element_t,
  target_environments dbms_cloud_oci_cloud_migrations_target_environment_tbl,
  reference_to_rms_stack varchar2(32767),
  source_migration_plan_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_plan_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_plan_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    migration_id varchar2,
    strategies dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_tbl,
    migration_plan_stats dbms_cloud_oci_cloud_migrations_migration_plan_stats_t,
    calculated_limits json_element_t,
    target_environments dbms_cloud_oci_cloud_migrations_target_environment_tbl,
    reference_to_rms_stack varchar2,
    source_migration_plan_id 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 unique Oracle ID (OCID) that is immutable on creation.

compartment_id

(required) The OCID of the compartment containing the migration plan.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

time_created

(required) The time when the migration plan was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the migration plan was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the migration plan.

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

lifecycle_details

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

migration_id

(required) The OCID of the associated migration.

strategies

(required) List of strategies for the resources to be migrated.

migration_plan_stats

(optional)

calculated_limits

(required) Limits of the resources that are needed for migration. Example: {\"BlockVolume\": 2, \"VCN\": 1}

target_environments

(required) List of target environments.

reference_to_rms_stack

(optional) OCID of the referenced ORM job.

source_migration_plan_id

(optional) Source migraiton plan ID to be cloned.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_PLAN_SUMMARY_T Type

Summary of the migration plan.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_plan_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  compartment_id varchar2(32767),
  display_name varchar2(32767),
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  migration_id varchar2(32767),
  strategies dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_tbl,
  migration_plan_stats dbms_cloud_oci_cloud_migrations_migration_plan_stats_t,
  calculated_limits json_element_t,
  target_environments dbms_cloud_oci_cloud_migrations_target_environment_tbl,
  reference_to_rms_stack varchar2(32767),
  source_migration_plan_id varchar2(32767),
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_plan_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_migration_plan_summary_t (
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    migration_id varchar2,
    strategies dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_tbl,
    migration_plan_stats dbms_cloud_oci_cloud_migrations_migration_plan_stats_t,
    calculated_limits json_element_t,
    target_environments dbms_cloud_oci_cloud_migrations_target_environment_tbl,
    reference_to_rms_stack varchar2,
    source_migration_plan_id 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 unique Oracle ID (OCID) that is immutable on creation.

compartment_id

(required) The OCID of the compartment containing the migration plan.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

time_created

(required) The time when the migration plan was created. An RFC3339 formatted datetime string.

time_updated

(optional) The time when the migration plan was updated. An RFC3339 formatted datetime string.

lifecycle_state

(required) The current state of the migration plan.

lifecycle_details

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

migration_id

(required) The OCID of the associated migration.

strategies

(required) List of strategies for the resources to be migrated.

migration_plan_stats

(optional)

calculated_limits

(required) Limits of the resources that are needed for migration. Example: {\"BlockVolume\": 2, \"VCN\": 1}

target_environments

(required) List of target environments.

reference_to_rms_stack

(optional) OCID of the referenced ORM job.

source_migration_plan_id

(optional) Source migraiton plan ID to be cloned.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_PLAN_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_migration_plan_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_migration_plan_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_migration_plan_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_MIGRATION_PLAN_COLLECTION_T Type

Results of a migration plan search. Contains both migration plan summary items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of migration plan summaries.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_PEAK_RESOURCE_ASSESSMENT_STRATEGY_T Type

Peak usage based strategy.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_peak_resource_assessment_strategy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t (
  adjustment_multiplier number,
  metric_type varchar2(32767),
  metric_time_window varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_peak_resource_assessment_strategy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_peak_resource_assessment_strategy_t (
    resource_type varchar2,
    strategy_type varchar2,
    adjustment_multiplier number,
    metric_type varchar2,
    metric_time_window varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_peak_resource_assessment_strategy_t is a subtype of the dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t type.

Fields

Field Description

adjustment_multiplier

(optional) The real resource usage is multiplied to this number before making any recommendation.

metric_type

(optional) The current state of the migration plan.

Allowed values are: 'AUTO', 'HISTORICAL', 'RUNTIME'

metric_time_window

(optional) The current state of the migration plan.

Allowed values are: '1d', '7d', '30d'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_PERCENTILE_RESOURCE_ASSESSMENT_STRATEGY_T Type

The strategy based on percentile usage.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_percentile_resource_assessment_strategy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t (
  percentile varchar2(32767),
  adjustment_multiplier number,
  metric_time_window varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_percentile_resource_assessment_strategy_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_percentile_resource_assessment_strategy_t (
    resource_type varchar2,
    strategy_type varchar2,
    percentile varchar2,
    adjustment_multiplier number,
    metric_time_window varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_percentile_resource_assessment_strategy_t is a subtype of the dbms_cloud_oci_cloud_migrations_resource_assessment_strategy_t type.

Fields

Field Description

percentile

(required) Percentile value

Allowed values are: 'P50', 'P90', 'P95', 'P99'

adjustment_multiplier

(optional) The real resource usage is multiplied to this number before making any recommendation.

metric_time_window

(optional) The current state of the migration plan.

Allowed values are: '1d', '7d', '30d'

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_REPLICATION_PROGRESS_T Type

Progress of a migration asset's replication process.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_replication_progress_t FORCE AUTHID CURRENT_USER IS OBJECT (
  percentage number,
  status varchar2(32767),
  time_started timestamp with time zone,
  time_oflast_replication_start timestamp with time zone,
  time_of_last_replication_end timestamp with time zone,
  time_of_last_replication_success timestamp with time zone,
  last_replication_status varchar2(32767),
  last_replication_error varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_replication_progress_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_replication_progress_t (
    percentage number,
    status varchar2,
    time_started timestamp with time zone,
    time_oflast_replication_start timestamp with time zone,
    time_of_last_replication_end timestamp with time zone,
    time_of_last_replication_success timestamp with time zone,
    last_replication_status varchar2,
    last_replication_error varchar2
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

percentage

(required) Percentage of the current replication progress from 0 to 100.

status

(optional) Status of the current replication progress. It can be None or InProgress.

Allowed values are: 'NONE', 'IN_PROGRESS'

time_started

(optional) Start time of the current replication process

time_oflast_replication_start

(optional) Start time of the last replication process. It can be Completed or Failed.

time_of_last_replication_end

(optional) End time of the last replication process. It can be Completed or Failed.

time_of_last_replication_success

(optional) End time of the last successful replication process, which has been completed.

last_replication_status

(optional) Status of the last replication task. It can be Completed or Failed.

Allowed values are: 'NONE', 'COMPLETED', 'FAILED'

last_replication_error

(optional) Error message if the last finished replication failed.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_REPLICATION_SCHEDULE_T Type

Replication schedule.

Syntax

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

Fields

Field Description

id

(required) The OCID of the replication schedule.

display_name

(required) A name of the replication schedule.

execution_recurrences

(required) Recurrence specification for the replication schedule execution.

compartment_id

(required) The OCID of the compartment in which the replication schedule exists.

lifecycle_state

(required) Current state of the replication schedule.

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

lifecycle_details

(required) The detailed state of the replication schedule.

time_created

(required) The time when the replication schedule was created in RFC3339 format.

time_updated

(required) The time when the replication schedule was last updated in RFC3339 format.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_REPLICATION_SCHEDULE_SUMMARY_T Type

Sumarized information about a replication schedule.

Syntax

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

Fields

Field Description

id

(required) The OCID of the replication schedule.

display_name

(required) A name of the replication schedule.

compartment_id

(required) The OCID of the compartment in which the replication schedule exists.

execution_recurrences

(required) Recurrence specification for replication schedule execution.

lifecycle_state

(required) Current state of the replication schedule.

lifecycle_details

(required) The detailed state of the replication schedule.

time_created

(required) The time when the replication schedule was created in RFC3339 format.

time_updated

(required) The time when the replication schedule was last updated in RFC3339 format.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_REPLICATION_SCHEDULE_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_replication_schedule_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_replication_schedule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_replication_schedule_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_REPLICATION_SCHEDULE_COLLECTION_T Type

Results of a replication schedule search. Contains replication schedule summaries.

Syntax

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

Fields

Field Description

items

(required) Replication schedule summaries.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_COMPATIBILITY_MESSAGE_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_compatibility_message_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_compatibility_message_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_compatibility_message_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_TARGET_ASSET_T Type

Description of the target asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_target_asset_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  lifecycle_state varchar2(32767),
  lifecycle_details varchar2(32767),
  migration_plan_id varchar2(32767),
  compartment_id varchar2(32767),
  created_resource_id varchar2(32767),
  l_type varchar2(32767),
  is_excluded_from_execution number,
  compatibility_messages dbms_cloud_oci_cloud_migrations_compatibility_message_tbl,
  estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
  time_created timestamp with time zone,
  time_updated timestamp with time zone,
  time_assessed timestamp with time zone,
  migration_asset dbms_cloud_oci_cloud_migrations_migration_asset_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_target_asset_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_target_asset_t (
    id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    migration_plan_id varchar2,
    compartment_id varchar2,
    created_resource_id varchar2,
    l_type varchar2,
    is_excluded_from_execution number,
    compatibility_messages dbms_cloud_oci_cloud_migrations_compatibility_message_tbl,
    estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_assessed timestamp with time zone,
    migration_asset dbms_cloud_oci_cloud_migrations_migration_asset_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

lifecycle_state

(required) The current state of the target asset.

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

lifecycle_details

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

migration_plan_id

(required) OCID of the associated migration plan.

compartment_id

(optional) Compartment identifier

created_resource_id

(optional) Created resource identifier

l_type

(required) The type of target asset.

Allowed values are: 'INSTANCE'

is_excluded_from_execution

(required) A boolean indicating whether the asset should be migrated.

compatibility_messages

(optional) Messages about the compatibility issues.

estimated_cost

(required)

time_created

(required) The time when the target asset was created. An RFC3339 formatted datetime string.

time_updated

(required) The time when the target asset was updated. An RFC3339 formatted datetime string.

time_assessed

(required) The time when the assessment was done. An RFC3339 formatted datetime string.

migration_asset

(optional)

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_TARGET_ASSET_SUMMARY_T Type

Summary of the target asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_target_asset_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
  id varchar2(32767),
  display_name varchar2(32767),
  lifecycle_state varchar2(32767),
  migration_plan_id varchar2(32767),
  compartment_id varchar2(32767),
  created_resource_id varchar2(32767),
  l_type varchar2(32767),
  is_excluded_from_execution number,
  compatibility_messages dbms_cloud_oci_cloud_migrations_compatibility_message_tbl,
  estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
  time_created timestamp with time zone,
  lifecycle_details varchar2(32767),
  time_updated timestamp with time zone,
  time_assessed timestamp with time zone,
  migration_asset dbms_cloud_oci_cloud_migrations_migration_asset_summary_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_target_asset_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_target_asset_summary_t (
    id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    migration_plan_id varchar2,
    compartment_id varchar2,
    created_resource_id varchar2,
    l_type varchar2,
    is_excluded_from_execution number,
    compatibility_messages dbms_cloud_oci_cloud_migrations_compatibility_message_tbl,
    estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
    time_created timestamp with time zone,
    lifecycle_details varchar2,
    time_updated timestamp with time zone,
    time_assessed timestamp with time zone,
    migration_asset dbms_cloud_oci_cloud_migrations_migration_asset_summary_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;

Fields

Field Description

id

(required) Unique identifier that is immutable on creation.

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

lifecycle_state

(required) The current state of the target asset.

migration_plan_id

(required) OCID of the associated migration plan.

compartment_id

(optional) Compartment identifier

created_resource_id

(optional) Created resource identifier

l_type

(required) The type of target asset.

Allowed values are: 'INSTANCE'

is_excluded_from_execution

(required) A boolean indicating whether the asset should be migrated.

compatibility_messages

(optional) Messages about compatibility issues.

estimated_cost

(required)

time_created

(required) The time when the target asset was created. An RFC3339 formatted datetime string.

lifecycle_details

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

time_updated

(required) The time when the target asset was updated. An RFC3339 formatted datetime string.

time_assessed

(required) The time when the assessment was done. An RFC3339 formatted datetime string.

migration_asset

(optional)

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_TARGET_ASSET_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_target_asset_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_target_asset_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_target_asset_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_TARGET_ASSET_COLLECTION_T Type

Results of a target asset search.

Syntax

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

Fields

Field Description

items

(required) List of target asset summaries.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_TERMINATE_PREEMPTION_ACTION_T Type

Terminates the preemptible instance when it is interrupted for eviction.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_terminate_preemption_action_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_preemption_action_t (
  preserve_boot_volume number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_terminate_preemption_action_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_terminate_preemption_action_t (
    l_type varchar2,
    preserve_boot_volume number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_terminate_preemption_action_t is a subtype of the dbms_cloud_oci_cloud_migrations_preemption_action_t type.

Fields

Field Description

preserve_boot_volume

(optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. By default, it is false if not specified.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_ASSET_SOURCE_DETAILS_T Type

The information about the new asset source.

Syntax

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

Fields

Field Description

l_type

(required) Source type.

Allowed values are: 'VMWARE'

display_name

(optional) A user-friendly name for the asset source. Does not have to be unique, and it's mutable. Avoid entering confidential information.

assets_compartment_id

(optional) The OCID of the compartment that is going to be used to create assets.

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_DISCOVERY_SCHEDULE_DETAILS_T Type

Information about discovery schedule to be updated.

Syntax

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

Fields

Field Description

display_name

(optional) A user-friendly name for the discovery schedule. Does not have to be unique, and it's mutable. Avoid entering confidential information.

execution_recurrences

(optional) Recurrence specification for the discovery schedule execution.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_MIGRATION_ASSET_DETAILS_T Type

Details of the updated migration asset.

Syntax

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

Fields

Field Description

display_name

(optional) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.

replication_schedule_id

(optional) Replication schedule identifier

depends_on

(optional) List of migration assets that depends on this asset.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_MIGRATION_DETAILS_T Type

The information to be updated.

Syntax

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

Fields

Field Description

display_name

(optional) Migration identifier

replication_schedule_id

(optional) Replication schedule identifier

is_completed

(optional) Indicates whether migration is marked as complete.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_MIGRATION_PLAN_DETAILS_T Type

The information to be updated.

Syntax

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

Fields

Field Description

display_name

(optional) Migration plan identifier

strategies

(optional) List of strategies for the resources to be migrated.

target_environments

(optional) List of target environments.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_REPLICATION_SCHEDULE_DETAILS_T Type

Information about replication schedule to be updated.

Syntax

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

Fields

Field Description

display_name

(optional) A user-friendly name for a replication schedule. Does not have to be unique, and is mutable. Avoid entering confidential information.

execution_recurrences

(optional) Recurrence specification for replication schedule execution.

freeform_tags

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

defined_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_TARGET_ASSET_DETAILS_T Type

Details of the updated target asset.

Syntax

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

Fields

Field Description

l_type

(required) The type of target asset.

Allowed values are: 'INSTANCE'

is_excluded_from_execution

(optional) A boolean indicating whether the asset should be migrated.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_VM_TARGET_ASSET_DETAILS_T Type

Description of the VM target asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_update_vm_target_asset_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_update_target_asset_details_t (
  preferred_shape_type varchar2(32767),
  block_volumes_performance number,
  ms_license varchar2(32767),
  user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_update_vm_target_asset_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_update_vm_target_asset_details_t (
    l_type varchar2,
    is_excluded_from_execution number,
    preferred_shape_type varchar2,
    block_volumes_performance number,
    ms_license varchar2,
    user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_update_vm_target_asset_details_t is a subtype of the dbms_cloud_oci_cloud_migrations_update_target_asset_details_t type.

Fields

Field Description

preferred_shape_type

(optional) Preferred VM shape type that you provided.

block_volumes_performance

(optional) Performance of the block volumes.

ms_license

(optional) Microsoft license for VM configuration.

user_spec

(optional)

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_UPDATE_VM_WARE_ASSET_SOURCE_DETAILS_T Type

Asset source update details.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_update_vm_ware_asset_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_update_asset_source_details_t (
  vcenter_endpoint varchar2(32767),
  discovery_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
  replication_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
  are_historical_metrics_collected number,
  are_realtime_metrics_collected number,
  discovery_schedule_id varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_update_vm_ware_asset_source_details_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_update_vm_ware_asset_source_details_t (
    l_type varchar2,
    display_name varchar2,
    assets_compartment_id varchar2,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcenter_endpoint varchar2,
    discovery_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
    replication_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
    are_historical_metrics_collected number,
    are_realtime_metrics_collected number,
    discovery_schedule_id varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_update_vm_ware_asset_source_details_t is a subtype of the dbms_cloud_oci_cloud_migrations_update_asset_source_details_t type.

Fields

Field Description

vcenter_endpoint

(optional) Endpoint for VMware asset discovery and replication in the form of ```https://<host>:<port>/sdk```

discovery_credentials

(optional)

replication_credentials

(optional)

are_historical_metrics_collected

(optional) Flag indicating whether historical metrics are collected for assets, originating from this asset source.

are_realtime_metrics_collected

(optional) Flag indicating whether real-time metrics are collected for assets, originating from this asset source.

discovery_schedule_id

(optional) The OCID of the discovery schedule that is going to be assigned to an asset source.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VM_TARGET_ASSET_T Type

Description of the VM target asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_vm_target_asset_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_target_asset_t (
  preferred_shape_type varchar2(32767),
  test_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
  block_volumes_performance number,
  ms_license varchar2(32767),
  user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
  recommended_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_target_asset_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_target_asset_t (
    id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    migration_plan_id varchar2,
    compartment_id varchar2,
    created_resource_id varchar2,
    l_type varchar2,
    is_excluded_from_execution number,
    compatibility_messages dbms_cloud_oci_cloud_migrations_compatibility_message_tbl,
    estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    time_assessed timestamp with time zone,
    migration_asset dbms_cloud_oci_cloud_migrations_migration_asset_t,
    preferred_shape_type varchar2,
    test_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
    block_volumes_performance number,
    ms_license varchar2,
    user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
    recommended_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_vm_target_asset_t is a subtype of the dbms_cloud_oci_cloud_migrations_target_asset_t type.

Fields

Field Description

preferred_shape_type

(required) Preferred VM shape type that you provide.

Allowed values are: 'VM', 'VM_INTEL', 'VM_INTEL_Standard', 'VM_INTEL_DensIO', 'VM_INTEL_GPU', 'VM_INTEL_Optimized', 'VM_AMD', 'VM_AMD_Standard'

test_spec

(optional)

block_volumes_performance

(optional) Performance of the block volumes.

ms_license

(optional) Microsoft license for VM configuration.

user_spec

(optional)

recommended_spec

(optional)

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VM_TARGET_ASSET_SUMMARY_T Type

Summary of the VM target asset.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_vm_target_asset_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_target_asset_summary_t (
  preferred_shape_type varchar2(32767),
  block_volumes_performance number,
  ms_license varchar2(32767),
  user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
  recommended_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_target_asset_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_target_asset_summary_t (
    id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    migration_plan_id varchar2,
    compartment_id varchar2,
    created_resource_id varchar2,
    l_type varchar2,
    is_excluded_from_execution number,
    compatibility_messages dbms_cloud_oci_cloud_migrations_compatibility_message_tbl,
    estimated_cost dbms_cloud_oci_cloud_migrations_cost_estimation_t,
    time_created timestamp with time zone,
    lifecycle_details varchar2,
    time_updated timestamp with time zone,
    time_assessed timestamp with time zone,
    migration_asset dbms_cloud_oci_cloud_migrations_migration_asset_summary_t,
    preferred_shape_type varchar2,
    block_volumes_performance number,
    ms_license varchar2,
    user_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t,
    recommended_spec dbms_cloud_oci_cloud_migrations_launch_instance_details_t
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_vm_target_asset_summary_t is a subtype of the dbms_cloud_oci_cloud_migrations_target_asset_summary_t type.

Fields

Field Description

preferred_shape_type

(required) The preferred VM shape type that you provide.

block_volumes_performance

(optional) Performance of the block volumes.

ms_license

(optional) Microsoft license for VM configuration.

user_spec

(required)

recommended_spec

(required)

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VM_TARGET_ENVIRONMENT_T Type

Description of the VM target environment.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_vm_target_environment_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_target_environment_t (
  availability_domain varchar2(32767),
  fault_domain varchar2(32767),
  vcn varchar2(32767),
  subnet varchar2(32767),
  dedicated_vm_host varchar2(32767),
  ms_license varchar2(32767),
  preferred_shape_type varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_target_environment_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_target_environment_t (
    target_compartment_id varchar2,
    target_environment_type varchar2,
    availability_domain varchar2,
    fault_domain varchar2,
    vcn varchar2,
    subnet varchar2,
    dedicated_vm_host varchar2,
    ms_license varchar2,
    preferred_shape_type varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_vm_target_environment_t is a subtype of the dbms_cloud_oci_cloud_migrations_target_environment_t type.

Fields

Field Description

availability_domain

(optional) Availability Domain of the VM configuration.

fault_domain

(optional) Fault domain of the VM configuration.

vcn

(required) OCID of the VM configuration VCN.

subnet

(required) OCID of the VM configuration subnet.

dedicated_vm_host

(optional) OCID of the dedicated VM configuration host.

ms_license

(optional) Microsoft license for the VM configuration.

preferred_shape_type

(optional) Preferred VM shape type provided by the customer.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VM_WARE_ASSET_SOURCE_T Type

Description of an asset source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_asset_source_t (
  vcenter_endpoint varchar2(32767),
  discovery_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
  replication_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
  are_historical_metrics_collected number,
  are_realtime_metrics_collected number,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_t (
    l_type varchar2,
    id varchar2,
    compartment_id varchar2,
    display_name varchar2,
    environment_id varchar2,
    inventory_id varchar2,
    assets_compartment_id varchar2,
    discovery_schedule_id varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcenter_endpoint varchar2,
    discovery_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
    replication_credentials dbms_cloud_oci_cloud_migrations_asset_source_credentials_t,
    are_historical_metrics_collected number,
    are_realtime_metrics_collected number
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_t is a subtype of the dbms_cloud_oci_cloud_migrations_asset_source_t type.

Fields

Field Description

vcenter_endpoint

(required) Endpoint for VMware asset discovery and replication in the form of ```https://<host>:<port>/sdk```

discovery_credentials

(required)

replication_credentials

(optional)

are_historical_metrics_collected

(optional) Flag indicating whether historical metrics are collected for assets, originating from this asset source.

are_realtime_metrics_collected

(optional) Flag indicating whether real-time metrics are collected for assets, originating from this asset source.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_VM_WARE_ASSET_SOURCE_SUMMARY_T Type

Description of an asset source.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_migrations_asset_source_summary_t (
  vcenter_endpoint varchar2(32767),
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_summary_t (
    l_type varchar2,
    id varchar2,
    compartment_id varchar2,
    environment_id varchar2,
    display_name varchar2,
    lifecycle_state varchar2,
    lifecycle_details varchar2,
    inventory_id varchar2,
    assets_compartment_id varchar2,
    time_created timestamp with time zone,
    time_updated timestamp with time zone,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t,
    vcenter_endpoint varchar2
  ) RETURN SELF AS RESULT
);

dbms_cloud_oci_cloud_migrations_vm_ware_asset_source_summary_t is a subtype of the dbms_cloud_oci_cloud_migrations_asset_source_summary_t type.

Fields

Field Description

vcenter_endpoint

(required) Endpoint for VMware asset discovery and replication in the form of ```https://<host>:<port>/sdk```

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_RESOURCE_T Type

A resource that is created and operated by a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_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_cloud_migrations_work_request_resource_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_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 that is affected by the work request.

action_type

(required) The way in which this resource is affected by the work is 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 this point, it transitions to CREATED, UPDATED, or DELETED, respectively.

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

identifier

(required) The identifier of the resource that is affected by the work request.

entity_uri

(optional) The URI path where you can do a GET operation to access the resource metadata.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_RESOURCE_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_work_request_resource_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_work_request_resource_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_T Type

A description of a work request status.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_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_cloud_migrations_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_cloud_migrations_work_request_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_work_request_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_cloud_migrations_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_MIGRATION', 'UPDATE_MIGRATION', 'REFRESH_MIGRATION', 'DELETE_MIGRATION', 'MOVE_MIGRATION', 'START_ASSET_REPLICATION', 'START_MIGRATION_REPLICATION', 'CREATE_REPLICATION_SCHEDULE', 'UPDATE_REPLICATION_SCHEDULE', 'DELETE_REPLICATION_SCHEDULE', 'MOVE_REPLICATION_SCHEDULE', 'CREATE_MIGRATION_PLAN', 'UPDATE_MIGRATION_PLAN', 'DELETE_MIGRATION_PLAN', 'MOVE_MIGRATION_PLAN', 'REFRESH_MIGRATION_PLAN', 'EXECUTE_MIGRATION_PLAN', 'REFRESH_MIGRATION_ASSET', 'CREATE_MIGRATION_ASSET', 'DELETE_MIGRATION_ASSET', 'CREATE_TARGET_ASSET', 'UPDATE_TARGET_ASSET', 'DELETE_TARGET_ASSET'

status

(required) Status of current work request.

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

id

(required) The ID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource that is affected by the work request. If the work request affects multiple resources, and these resources are not in the same compartment, the service team can choose the primary resource of the compartment to be used.

resources

(required) The resources affected by this work request.

percent_complete

(required) The percentage of request completed.

time_accepted

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

time_started

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

time_finished

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_ERROR_T Type

An error encountered while executing a work request.

Syntax

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

Fields

Field Description

code

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

message

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

l_timestamp

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_ERROR_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_work_request_error_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_work_request_error_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_ERROR_COLLECTION_T Type

Results of the work request error search. Contains both work request error items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of work request error objects.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_LOG_ENTRY_T Type

A log message from the execution of a work request.

Syntax

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

Fields

Field Description

message

(required) Human-readable log message.

l_timestamp

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_LOG_ENTRY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_work_request_log_entry_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_work_request_log_entry_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type

Results of the work request log search. Contains both work request log items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of work request log entries.

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_SUMMARY_T Type

A summary of the status of a work request.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_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_cloud_migrations_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,
  freeform_tags json_element_t,
  defined_tags json_element_t,
  system_tags json_element_t,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_work_request_summary_t
    RETURN SELF AS RESULT,
  CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_migrations_work_request_summary_t (
    operation_type varchar2,
    status varchar2,
    id varchar2,
    compartment_id varchar2,
    resources dbms_cloud_oci_cloud_migrations_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,
    freeform_tags json_element_t,
    defined_tags json_element_t,
    system_tags json_element_t
  ) RETURN SELF AS RESULT
) NOT PERSISTABLE;

Fields

Field Description

operation_type

(required) The type of work request.

Allowed values are: 'CREATE_MIGRATION', 'UPDATE_MIGRATION', 'REFRESH_MIGRATION', 'DELETE_MIGRATION', 'MOVE_MIGRATION', 'START_ASSET_REPLICATION', 'START_MIGRATION_REPLICATION', 'CREATE_REPLICATION_SCHEDULE', 'UPDATE_REPLICATION_SCHEDULE', 'DELETE_REPLICATION_SCHEDULE', 'MOVE_REPLICATION_SCHEDULE', 'CREATE_MIGRATION_PLAN', 'UPDATE_MIGRATION_PLAN', 'DELETE_MIGRATION_PLAN', 'MOVE_MIGRATION_PLAN', 'REFRESH_MIGRATION_PLAN', 'EXECUTE_MIGRATION_PLAN', 'REFRESH_MIGRATION_ASSET', 'CREATE_MIGRATION_ASSET', 'DELETE_MIGRATION_ASSET', 'CREATE_TARGET_ASSET', 'UPDATE_TARGET_ASSET', 'DELETE_TARGET_ASSET'

status

(required) Status of the current work request.

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

id

(required) The ID of the work request.

compartment_id

(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource that is affected by the work request. If the work request affects multiple resources, and these resources are not in the same compartment, the service team can choose the primary resource of the compartment to be used.

resources

(required) The resources affected by this work request.

percent_complete

(required) The percentage of request completed.

time_accepted

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

time_started

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

time_finished

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

freeform_tags

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

defined_tags

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

system_tags

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

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_SUMMARY_TBL Type

Nested table type of dbms_cloud_oci_cloud_migrations_work_request_summary_t.

Syntax

CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_migrations_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_migrations_work_request_summary_t) NOT PERSISTABLE;

DBMS_CLOUD_OCI_CLOUD_MIGRATIONS_WORK_REQUEST_SUMMARY_COLLECTION_T Type

Results of the work request search. Contains both work request items and other information, such as metadata.

Syntax

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

Fields

Field Description

items

(required) List of work request summary objects.

Was this article helpful?