CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ADD_AGENT_DEPENDENCY_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_add_agent_dependency_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
agent_dependency_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_add_agent_dependency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_add_agent_dependency_details_t (
agent_dependency_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
agent_dependency_id
(required) The OCID of the agentDependency, which is added to the source environment.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_PLUGIN_SUMMARY_T Type 🔗
Summary of the plugin in an Agent.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_plugin_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
agent_id varchar2(32767),
plugin_version varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_plugin_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_plugin_summary_t (
name varchar2,
agent_id varchar2,
plugin_version varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Plugin identifier, which can be renamed.
agent_id
(required) Agent identifier.
plugin_version
(required) Plugin version.
time_created
(required) The time when the plugin was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time when the plugin was updated. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the plugin.
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.
freeform_tags
(required) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(required) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_PLUGIN_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_plugin_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_plugin_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_plugin_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_T Type 🔗
Description of Agent.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
agent_type varchar2(32767),
agent_version varchar2(32767),
os_version varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_sync_received timestamp with time zone,
heart_beat_status varchar2(32767),
environment_id varchar2(32767),
agent_pub_key varchar2(32767),
time_expire_agent_key_in_ms timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
plugin_list dbms_cloud_oci_cloud_bridge_plugin_summary_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
agent_type varchar2,
agent_version varchar2,
os_version varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_sync_received timestamp with time zone,
heart_beat_status varchar2,
environment_id varchar2,
agent_pub_key varchar2,
time_expire_agent_key_in_ms timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
plugin_list dbms_cloud_oci_cloud_bridge_plugin_summary_tbl,
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
(required) Agent identifier, can be renamed.
compartment_id
(required) Compartment identifier.
agent_type
(required) Type of the Agent.
Allowed values are: 'APPLIANCE'
agent_version
(required) Agent identifier.
os_version
(required) OS version.
time_created
(required) The time when the Agent was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time when the Agent was updated. An RFC3339 formatted datetime string.
time_last_sync_received
(optional) The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
heart_beat_status
(optional) The current heartbeat status of the Agent based on its timeLastSyncReceived value.
(optional) A message describing the current state of the Agent in more detail. For example, it can be used to provide actionable information for a resource in Failed state.
plugin_list
(optional) List of plugins associated with the agent.
freeform_tags
(required) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(required) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_SUMMARY_T Type 🔗
Summary of the Agent.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
agent_type varchar2(32767),
agent_version varchar2(32767),
os_version varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_sync_received timestamp with time zone,
heart_beat_status varchar2(32767),
environment_id varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
agent_type varchar2,
agent_version varchar2,
os_version varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
time_last_sync_received timestamp with time zone,
heart_beat_status varchar2,
environment_id varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation.
display_name
(required) Agent identifier, which can be renamed.
compartment_id
(required) Compartment identifier.
agent_type
(required) Type of Agent.
agent_version
(required) Agent identifier.
os_version
(required) OS version.
time_created
(required) The time when the Agent was created. An RFC3339 formatted datetime string.
time_updated
(required) The time when the Agent was updated. An RFC3339 formatted datetime string.
time_last_sync_received
(optional) The time when the last heartbeat of the Agent was noted. An RFC3339 formatted datetime string.
heart_beat_status
(optional) Current heartbeat status of the Agent based on its timeLastSyncReceived value.
environment_id
(required) Environment identifier.
lifecycle_state
(required) The current state of the Agent.
lifecycle_details
(required) 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.
freeform_tags
(required) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(required) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_agent_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_agent_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_COLLECTION_T Type 🔗
Displays results of an Agent search. Contains both AgentSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_agent_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_collection_t (
items dbms_cloud_oci_cloud_bridge_agent_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of Agents.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_DEPENDENCY_T Type 🔗
Description of the AgentDependency, which is a sub-resource of the external environment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_dependency_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
dependency_name varchar2(32767),
dependency_version varchar2(32767),
description varchar2(32767),
namespace varchar2(32767),
bucket varchar2(32767),
object_name varchar2(32767),
time_created timestamp with time zone,
e_tag varchar2(32767),
checksum varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_dependency_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_dependency_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
dependency_name varchar2,
dependency_version varchar2,
description varchar2,
namespace varchar2,
bucket varchar2,
object_name varchar2,
time_created timestamp with time zone,
e_tag varchar2,
checksum varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation.
display_name
(required) Display name of the Agent dependency.
compartment_id
(required) Compartment identifier
dependency_name
(required) Name of the dependency type. This should match the whitelisted enum of dependency names.
dependency_version
(optional) Version of the Agent dependency.
description
(optional) Description about the Agent dependency.
namespace
(required) Object storage namespace associated with the customer's tenancy.
bucket
(required) Object storage bucket where the Agent dependency is uploaded.
object_name
(required) Name of the dependency object uploaded by the customer.
time_created
(optional) The time when the AgentDependency was created. An RFC3339 formatted datetime string.
e_tag
(optional) The eTag associated with the dependency object returned by Object Storage.
checksum
(optional) The checksum associated with the dependency object returned by Object Storage.
(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.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_DEPENDENCY_SUMMARY_T Type 🔗
Description of the AgentDependency, which is a sub-resource of the external environment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_dependency_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
dependency_name varchar2(32767),
dependency_version varchar2(32767),
description varchar2(32767),
namespace varchar2(32767),
bucket varchar2(32767),
object_name varchar2(32767),
time_created timestamp with time zone,
e_tag varchar2(32767),
checksum varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_dependency_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_dependency_summary_t (
id varchar2,
display_name varchar2,
compartment_id varchar2,
dependency_name varchar2,
dependency_version varchar2,
description varchar2,
namespace varchar2,
bucket varchar2,
object_name varchar2,
time_created timestamp with time zone,
e_tag varchar2,
checksum varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation.
display_name
(required) Display name of the Agent dependency.
compartment_id
(required) Compartment identifier.
dependency_name
(required) Name of the dependency type. This should match the whitelisted enum of dependency names.
dependency_version
(optional) Version of the Agent dependency.
description
(optional) Description about the Agent dependency.
namespace
(required) Object storage namespace associated with the customer's tenancy.
bucket
(required) Object storage bucket where the Agent dependency is uploaded.
object_name
(required) Name of the dependency object uploaded by the customer.
time_created
(optional) The time when the AgentDependency was created. An RFC3339 formatted datetime string.
e_tag
(optional) The eTag associated with the dependency object returned by Object Storage.
checksum
(optional) The checksum associated with the dependency object returned by Object Storage.
lifecycle_state
(optional) The current state of the external environment.
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.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_DEPENDENCY_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_agent_dependency_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_dependency_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_agent_dependency_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_AGENT_DEPENDENCY_COLLECTION_T Type 🔗
Results of an AgentDependency list. Contains both AgentDependency items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_agent_dependency_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_agent_dependency_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_dependency_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_agent_dependency_collection_t (
items dbms_cloud_oci_cloud_bridge_agent_dependency_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of EnvironmentDependencies.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_APPLIANCE_IMAGE_SUMMARY_T Type 🔗
Description of the ApplianceImage.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_appliance_image_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
file_name varchar2(32767),
display_name varchar2(32767),
version varchar2(32767),
size_in_m_bs varchar2(32767),
checksum varchar2(32767),
platform varchar2(32767),
format varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
download_url varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_appliance_image_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_appliance_image_summary_t (
id varchar2,
file_name varchar2,
display_name varchar2,
version varchar2,
size_in_m_bs varchar2,
checksum varchar2,
platform varchar2,
format varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
download_url varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(required) Unique identifier that is immutable on creation.
file_name
(required) The name of the appliance Image file.
display_name
(required) The name of the image to be displayed.
version
(required) The version of the image file.
size_in_m_bs
(required) The size of the image file in megabytes.
checksum
(required) The checksum of the image file.
platform
(required) The virtualization platform that the image file supports.
format
(required) The file format of the image file.
time_created
(required) The time when the appliance image was created.An RFC3339 formatted datetime string.
time_updated
(required) The time when the appliance image was last updated. An RFC3339 formatted datetime string.
lifecycle_state
(optional) The current state of the appliance image.
(required) The URL from which the appliance image can be downloaded.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_APPLIANCE_IMAGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_appliance_image_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_appliance_image_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_appliance_image_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_APPLIANCE_IMAGE_COLLECTION_T Type 🔗
Results of an ApplianceImage search.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_appliance_image_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_appliance_image_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_appliance_image_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_appliance_image_collection_t (
items dbms_cloud_oci_cloud_bridge_appliance_image_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of appliance images.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_T Type 🔗
Description of an asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
inventory_id varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
source_key varchar2(32767),
external_asset_key varchar2(32767),
asset_type varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_t (
display_name varchar2,
inventory_id varchar2,
id varchar2,
compartment_id varchar2,
source_key varchar2,
external_asset_key varchar2,
asset_type varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
lifecycle_state 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
display_name
(optional) Asset display name.
inventory_id
(required) Inventory ID to which an asset belongs to.
id
(required) Asset OCID that is immutable on creation.
compartment_id
(required) The OCID of the compartment to which an asset belongs to.
source_key
(required) The source key that the asset belongs to.
external_asset_key
(required) The key of the asset from the external environment.
asset_type
(required) The type of asset.
Allowed values are: 'VMWARE_VM', 'VM'
time_created
(required) The time when the asset was created. An RFC3339 formatted datetime string.
time_updated
(required) The time when the asset was updated. An RFC3339 formatted datetime string.
asset_source_ids
(optional) List of asset source OCID.
lifecycle_state
(required) The current state of the asset.
Allowed values are: 'ACTIVE', 'DELETED'
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_AGGREGATION_T Type 🔗
The result of an analytics aggregation on a set of assets.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_aggregation_t FORCE AUTHID CURRENT_USER IS OBJECT (
dimensions json_element_t,
l_count number,
l_max number,
mean number,
l_min number,
l_sum number,
aggregated_property varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_aggregation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_aggregation_t (
dimensions json_element_t,
l_count number,
l_max number,
mean number,
l_min number,
l_sum number,
aggregated_property varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
dimensions
(optional) The dimensions along which assets can be aggregated for analytics.
l_count
(optional) Returns the total number of observations from the group of assets.
l_max
(optional) Returns the highest value from all the assets.
mean
(optional) Returns the value of sum divided by count from the group of assets.
l_min
(optional) Returns the lowest value from the group of assets.
l_sum
(optional) Returns all values added together from the group of assets.
aggregated_property
(required) Aggregated property.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_AGGREGATION_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_asset_aggregation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_aggregation_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_asset_aggregation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_AGGREGATION_COLLECTION_T Type 🔗
The result of an analytics aggregation on a set of assets.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_aggregation_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_asset_aggregation_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_aggregation_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_aggregation_collection_t (
items dbms_cloud_oci_cloud_bridge_asset_aggregation_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of asset aggregations.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SUMMARY_T Type 🔗
Summary of the asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
inventory_id varchar2(32767),
id varchar2(32767),
compartment_id varchar2(32767),
source_key varchar2(32767),
external_asset_key varchar2(32767),
asset_type varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_summary_t (
display_name varchar2,
inventory_id varchar2,
id varchar2,
compartment_id varchar2,
source_key varchar2,
external_asset_key varchar2,
asset_type varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Asset display name.
inventory_id
(required) Inventory ID that the asset belongs to.
id
(required) Asset OCID that is immutable on creation.
compartment_id
(required) The OCID of the compartment that the asset belongs to.
source_key
(required) The source key to which the asset belongs.
external_asset_key
(required) The key of the asset from the external environment.
asset_type
(required) The type of asset.
Allowed values are: 'VMWARE_VM', 'VM'
time_created
(required) The time when the asset was created. An RFC3339 formatted datetime string.
time_updated
(required) The time when the asset was updated. An RFC3339 formatted datetime string.
asset_source_ids
(optional) List of asset source OCID.
lifecycle_state
(required) The current state of the asset.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_asset_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_asset_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_COLLECTION_T Type 🔗
Results of a set of asset summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_asset_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_collection_t (
items dbms_cloud_oci_cloud_bridge_asset_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of assets.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SOURCE_T Type 🔗
Asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_asset_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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.
(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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SOURCE_SUMMARY_T Type 🔗
Summary of an asset source provided in the list.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_asset_source_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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.
(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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SOURCE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_asset_source_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_source_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_asset_source_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_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_bridge_asset_source_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_asset_source_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_source_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_source_collection_t (
items dbms_cloud_oci_cloud_bridge_asset_source_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of asset sources.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SOURCE_CONNECTION_T Type 🔗
Descriptor of a connection to an asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_asset_source_connection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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.
(required) The detailed sub-state of the connection.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SOURCE_CONNECTION_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_asset_source_connection_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_source_connection_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_asset_source_connection_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SOURCE_CONNECTION_COLLECTION_T Type 🔗
List of connections for an asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_source_connection_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_asset_source_connection_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_source_connection_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_source_connection_collection_t (
items dbms_cloud_oci_cloud_bridge_asset_source_connection_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of connections.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ASSET_SOURCE_CREDENTIALS_T Type 🔗
Credentials for an asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_asset_source_credentials_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
secret_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_asset_source_credentials_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_BRIDGE_CHANGE_AGENT_COMPARTMENT_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_change_agent_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_agent_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_agent_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_BRIDGE_CHANGE_AGENT_DEPENDENCY_COMPARTMENT_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_change_agent_dependency_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_agent_dependency_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_agent_dependency_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_BRIDGE_CHANGE_ASSET_COMPARTMENT_DETAILS_T Type 🔗
The information to be updated for changing asset compartment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_change_asset_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_asset_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_asset_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_BRIDGE_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_bridge_change_asset_source_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_asset_source_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_BRIDGE_CHANGE_ASSET_TAGS_DETAILS_T Type 🔗
The information about tags to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_change_asset_tags_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_asset_tags_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_asset_tags_details_t (
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_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_bridge_change_discovery_schedule_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_discovery_schedule_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_BRIDGE_CHANGE_ENVIRONMENT_COMPARTMENT_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_change_environment_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_environment_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_change_environment_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_GPU_DEVICE_T Type 🔗
GPU device details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_gpu_device_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
description varchar2(32767),
cores_count number,
memory_in_m_bs number,
manufacturer varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_gpu_device_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_gpu_device_t (
name varchar2,
description varchar2,
cores_count number,
memory_in_m_bs number,
manufacturer varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) GPU device name.
description
(optional) GPU device description.
cores_count
(optional) Number of GPU cores.
memory_in_m_bs
(optional) GPU memory size in MBs.
manufacturer
(optional) The manufacturer of GPU.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_NIC_T Type 🔗
The VNIC configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_nic_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
switch_name varchar2(32767),
mac_address varchar2(32767),
mac_address_type varchar2(32767),
network_name varchar2(32767),
ip_addresses dbms_cloud_oci_cloud_bridge_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_nic_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_nic_t (
label varchar2,
switch_name varchar2,
mac_address varchar2,
mac_address_type varchar2,
network_name varchar2,
ip_addresses dbms_cloud_oci_cloud_bridge_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(optional) Provides a label and summary information for the device.
switch_name
(optional) Switch name.
mac_address
(optional) Mac address of the VM.
mac_address_type
(optional) Mac address type.
network_name
(optional) Network name.
ip_addresses
(optional) List of IP addresses.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_DISK_T Type 🔗
The assets disk.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_disk_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
boot_order number,
uuid varchar2(32767),
uuid_lun varchar2(32767),
size_in_m_bs number,
location varchar2(32767),
persistent_mode varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_disk_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_disk_t (
name varchar2,
boot_order number,
uuid varchar2,
uuid_lun varchar2,
size_in_m_bs number,
location varchar2,
persistent_mode varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Disk name.
boot_order
(optional) Order of boot volumes.
uuid
(optional) Disk UUID for the virtual disk, if available.
uuid_lun
(optional) Disk UUID LUN for the virtual disk, if available.
size_in_m_bs
(optional) The size of the volume in MBs.
location
(optional) Location of the boot/data volume.
persistent_mode
(optional) The disk persistent mode.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_NVDIMM_T Type 🔗
The asset's NVDIMM configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_nvdimm_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
unit_number number,
controller_key number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_nvdimm_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_nvdimm_t (
label varchar2,
unit_number number,
controller_key number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(optional) Provides a label and summary information for the device.
unit_number
(optional) The unit number of NVDIMM.
controller_key
(optional) Controller key.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_NVDIMM_CONTROLLER_T Type 🔗
The asset's NVDIMM configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_nvdimm_controller_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
bus_number number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_nvdimm_controller_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_nvdimm_controller_t (
label varchar2,
bus_number number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(optional) Provides a label and summary information for the device.
bus_number
(optional) Bus number.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_SCSI_CONTROLLER_T Type 🔗
The assets SCSI controller.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_scsi_controller_t FORCE AUTHID CURRENT_USER IS OBJECT (
label varchar2(32767),
unit_number number,
shared_bus varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_scsi_controller_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_scsi_controller_t (
label varchar2,
unit_number number,
shared_bus varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
label
(optional) Provides a label and summary information for the device.
unit_number
(optional) The unit number of the SCSI controller.
shared_bus
(optional) Shared bus.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_GPU_DEVICE_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_gpu_device_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_gpu_device_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_gpu_device_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_NIC_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_nic_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_nic_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_nic_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_DISK_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_disk_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_disk_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_disk_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_NVDIMM_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_nvdimm_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_nvdimm_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_nvdimm_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_COMPUTE_PROPERTIES_T Type 🔗
(optional) Primary IP address of the compute instance.
dns_name
(optional) Fully Qualified DNS Name.
description
(optional) Information about the asset.
cores_count
(optional) Number of CPUs.
cpu_model
(optional) CPU model name.
gpu_devices_count
(optional) Number of GPU devices.
gpu_devices
(optional) List of GPU devices attached to a virtual machine.
threads_per_core_count
(optional) Number of threads per core.
memory_in_m_bs
(optional) Memory size in MBs.
is_pmem_enabled
(optional) Whether Pmem is enabled. Decides if NVDIMMs are used as a permanent memory.
pmem_in_m_bs
(optional) Pmem size in MBs.
operating_system
(optional) Operating system.
operating_system_version
(optional) Operating system version.
host_name
(optional) Host name of the VM.
power_state
(optional) The current power state of the virtual machine.
guest_state
(optional) Guest state.
is_tpm_enabled
(optional) Whether Trusted Platform Module (TPM) is enabled.
connected_networks
(optional) Number of connected networks.
nics_count
(optional) Number of network ethernet cards.
nics
(optional) List of network ethernet cards attached to a virtual machine.
storage_provisioned_in_m_bs
(optional) Provision storage size in MBs.
disks_count
(optional) Number of disks.
disks
(optional) Lists the set of disks belonging to the virtual machine. This list is unordered.
firmware
(optional) Information about firmware type for this virtual machine.
latency_sensitivity
(optional) Latency sensitivity.
nvdimms
(optional) The properties of the NVDIMMs attached to a virtual machine.
nvdimm_controller
(optional)
scsi_controller
(optional)
hardware_version
(optional) Hardware version.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_AGENT_DEPENDENCY_DETAILS_T Type 🔗
The information about new AgentDependency.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_create_agent_dependency_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
dependency_name varchar2(32767),
compartment_id varchar2(32767),
dependency_version varchar2(32767),
description varchar2(32767),
namespace varchar2(32767),
bucket varchar2(32767),
object_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_agent_dependency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_agent_dependency_details_t (
display_name varchar2,
dependency_name varchar2,
compartment_id varchar2,
dependency_version varchar2,
description varchar2,
namespace varchar2,
bucket varchar2,
object_name 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
display_name
(required) Display name of the Agent dependency.
dependency_name
(required) Name of the dependency type. This should match the whitelisted enum of dependency names.
compartment_id
(required) Compartment identifier.
dependency_version
(optional) Version of the Agent dependency.
description
(optional) Description about the Agent dependency.
namespace
(required) Object storage namespace associated with the customer's tenancy.
bucket
(required) Object storage bucket where the dependency is uploaded.
object_name
(required) Name of the dependency object uploaded by the customer.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_AGENT_DETAILS_T Type 🔗
Information about the new Agent.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_create_agent_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
agent_type varchar2(32767),
agent_version varchar2(32767),
compartment_id varchar2(32767),
environment_id varchar2(32767),
os_version varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_agent_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_agent_details_t (
display_name varchar2,
agent_type varchar2,
agent_version varchar2,
compartment_id varchar2,
environment_id varchar2,
os_version varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) Agent identifier.
agent_type
(required) Agent identifier.
agent_version
(required) Agent identifier.
compartment_id
(required) Compartment identifier.
environment_id
(required) Environment identifier.
os_version
(required) OS version.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_ASSET_DETAILS_T Type 🔗
The information about the new asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_create_asset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
inventory_id varchar2(32767),
compartment_id varchar2(32767),
source_key varchar2(32767),
external_asset_key varchar2(32767),
asset_type varchar2(32767),
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_asset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_asset_details_t (
display_name varchar2,
inventory_id varchar2,
compartment_id varchar2,
source_key varchar2,
external_asset_key varchar2,
asset_type varchar2,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
display_name
(optional) Asset display name.
inventory_id
(required) Inventory ID to which an asset belongs.
compartment_id
(required) The OCID of the compartment that the asset belongs to.
source_key
(required) The source key to which the asset belongs.
external_asset_key
(required) The key of the asset from the external environment.
asset_type
(required) The type of asset.
Allowed values are: 'VMWARE_VM', 'VM'
asset_source_ids
(optional) List of asset source OCID.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_ASSET_SOURCE_DETAILS_T Type 🔗
Asset source creation request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_create_asset_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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.
(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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_DISCOVERY_SCHEDULE_DETAILS_T Type 🔗
Information about discovery schedule to be created.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_create_discovery_schedule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_ENVIRONMENT_DETAILS_T Type 🔗
The information about the new source environment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_create_environment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_environment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_environment_details_t (
display_name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Environment identifier.
compartment_id
(required) Compartment identifier.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_INVENTORY_DETAILS_T Type 🔗
Description for creating inventory details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_create_inventory_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_inventory_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_inventory_details_t (
display_name varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(required) Inventory displayName.
compartment_id
(required) The OCID of the tenantId.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_VM_WARE_ASSET_SOURCE_DETAILS_T Type 🔗
Description of an asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_create_vm_ware_asset_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_create_asset_source_details_t (
vcenter_endpoint varchar2(32767),
discovery_credentials dbms_cloud_oci_cloud_bridge_asset_source_credentials_t,
replication_credentials dbms_cloud_oci_cloud_bridge_asset_source_credentials_t,
are_historical_metrics_collected number,
are_realtime_metrics_collected number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_vm_ware_asset_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_bridge_asset_source_credentials_t,
replication_credentials dbms_cloud_oci_cloud_bridge_asset_source_credentials_t,
are_historical_metrics_collected number,
are_realtime_metrics_collected number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_create_vm_ware_asset_source_details_t is a subtype of the dbms_cloud_oci_cloud_bridge_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_BRIDGE_VM_PROPERTIES_T Type 🔗
Virtual machine related properties.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_vm_properties_t FORCE AUTHID CURRENT_USER IS OBJECT (
hypervisor_vendor varchar2(32767),
hypervisor_version varchar2(32767),
hypervisor_host varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vm_properties_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vm_properties_t (
hypervisor_vendor varchar2,
hypervisor_version varchar2,
hypervisor_host varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
hypervisor_vendor
(optional) Hypervisor vendor.
hypervisor_version
(optional) Hypervisor version.
hypervisor_host
(optional) Host name/IP address of VM on which the host is running.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CUSTOMER_TAG_T Type 🔗
The customer defined tags.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_customer_tag_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_customer_tag_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_customer_tag_t (
name varchar2,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) The tag name.
description
(optional) The tag description.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CUSTOMER_TAG_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_customer_tag_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_customer_tag_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_customer_tag_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_VMWARE_VM_PROPERTIES_T Type 🔗
VMware virtual machine related properties.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_cluster varchar2(32767),
customer_fields dbms_cloud_oci_cloud_bridge_varchar2_tbl,
customer_tags dbms_cloud_oci_cloud_bridge_customer_tag_tbl,
instance_uuid varchar2(32767),
path varchar2(32767),
vmware_tools_status varchar2(32767),
is_disks_uuid_enabled number,
is_disks_cbt_enabled number,
fault_tolerance_state varchar2(32767),
fault_tolerance_bandwidth number,
fault_tolerance_secondary_latency number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t (
l_cluster varchar2,
customer_fields dbms_cloud_oci_cloud_bridge_varchar2_tbl,
customer_tags dbms_cloud_oci_cloud_bridge_customer_tag_tbl,
instance_uuid varchar2,
path varchar2,
vmware_tools_status varchar2,
is_disks_uuid_enabled number,
is_disks_cbt_enabled number,
fault_tolerance_state varchar2,
fault_tolerance_bandwidth number,
fault_tolerance_secondary_latency number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_cluster
(optional) Cluster name.
customer_fields
(optional) Customer fields.
customer_tags
(optional) Customer defined tags.
instance_uuid
(optional) vCenter-specific identifier of the virtual machine.
path
(optional) Path directory of the asset.
vmware_tools_status
(optional) VMware tools status.
is_disks_uuid_enabled
(optional) Whether changed block tracking for this VM's disk is active.
is_disks_cbt_enabled
(optional) Indicates that change tracking is supported for virtual disks of this virtual machine. However, even if change tracking is supported, it might not be available for all disks of the virtual machine.
fault_tolerance_state
(optional) Fault tolerance state.
fault_tolerance_bandwidth
(optional) Fault tolerance bandwidth.
fault_tolerance_secondary_latency
(optional) Fault tolerance to secondary latency.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_VMWARE_V_CENTER_PROPERTIES_T Type 🔗
VMware vCenter related properties.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t FORCE AUTHID CURRENT_USER IS OBJECT (
vcenter_key varchar2(32767),
vcenter_version varchar2(32767),
data_center varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t (
vcenter_key varchar2,
vcenter_version varchar2,
data_center varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vcenter_key
(optional) vCenter unique key.
vcenter_version
(optional) Dot-separated version string.
data_center
(optional) Data center name.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_CREATE_VMWARE_VM_ASSET_DETAILS_T Type 🔗
Create VMware VM type of asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_create_vmware_vm_asset_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_create_asset_details_t (
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t,
vmware_vm dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t,
vmware_v_center dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_vmware_vm_asset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_create_vmware_vm_asset_details_t (
display_name varchar2,
inventory_id varchar2,
compartment_id varchar2,
source_key varchar2,
external_asset_key varchar2,
asset_type varchar2,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t,
vmware_vm dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t,
vmware_v_center dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_create_vmware_vm_asset_details_t is a subtype of the dbms_cloud_oci_cloud_bridge_create_asset_details_t type.
Fields
Field
Description
compute
(optional)
vm
(optional)
vmware_vm
(optional)
vmware_v_center
(optional)
DBMS_CLOUD_OCI_CLOUD_BRIDGE_DISCOVERY_SCHEDULE_T Type 🔗
Discovery schedule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_discovery_schedule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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;
(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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_DISCOVERY_SCHEDULE_SUMMARY_T Type 🔗
Summarized information about a discovery schedule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_discovery_schedule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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;
(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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_DISCOVERY_SCHEDULE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_discovery_schedule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_discovery_schedule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_discovery_schedule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_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_bridge_discovery_schedule_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_discovery_schedule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_discovery_schedule_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_discovery_schedule_collection_t (
items dbms_cloud_oci_cloud_bridge_discovery_schedule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) Discovery schedule summaries.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ENVIRONMENT_T Type 🔗
Description of the source environment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_environment_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),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_environment_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_environment_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,
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
(required) Environment identifier, which can be renamed.
compartment_id
(required) Compartment identifier.
time_created
(required) The time when the source environment was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time when the source environment was updated. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the source environment.
(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.
freeform_tags
(required) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(required) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ENVIRONMENT_SUMMARY_T Type 🔗
Summary of a source environment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_environment_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),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_environment_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_environment_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,
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
(required) Environment identifier, which can be renamed.
compartment_id
(required) Compartment identifier.
time_created
(required) The time when the source environment was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time when the source environment was updated. An RFC3339 formatted datetime string.
lifecycle_state
(required) The current state of the source environment.
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.
freeform_tags
(required) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(required) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ENVIRONMENT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_environment_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_environment_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_environment_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ENVIRONMENT_COLLECTION_T Type 🔗
Results of an environment search. Contains both EnvironmentSummary items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_environment_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_environment_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_environment_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_environment_collection_t (
items dbms_cloud_oci_cloud_bridge_environment_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of all source environments.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_ERROR_T Type 🔗
Error Information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, meant for programmatic parsing.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_HISTORICAL_METRIC_T Type 🔗
Metric details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_historical_metric_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
aggregation varchar2(32767),
value number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_historical_metric_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_historical_metric_t (
name varchar2,
aggregation varchar2,
value number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Metric name.
aggregation
(required) Aggregation time interval.
value
(required) Aggregation value.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_HISTORICAL_METRIC_SUMMARY_T Type 🔗
Metric details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_historical_metric_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
aggregation varchar2(32767),
value number,
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_historical_metric_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_historical_metric_summary_t (
name varchar2,
aggregation varchar2,
value number,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Metric name.
aggregation
(required) Aggregation time interval.
value
(required) Aggregation value.
time_created
(optional) The time the HistoricalMetric was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time the HistoricalMetric was updated. An RFC3339 formatted datetime string.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_HISTORICAL_METRIC_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_historical_metric_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_historical_metric_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_historical_metric_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_HISTORICAL_METRIC_COLLECTION_T Type 🔗
List of historical metric.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_historical_metric_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_historical_metric_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_historical_metric_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_historical_metric_collection_t (
items dbms_cloud_oci_cloud_bridge_historical_metric_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of asset historical metrics.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_IMPORT_INVENTORY_DETAILS_T Type 🔗
Details for importing assets from a file.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_import_inventory_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
resource_type varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_import_inventory_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_import_inventory_details_t (
compartment_id varchar2,
resource_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
compartment_id
(required) The OCID of the compartmentId that resources import.
resource_type
(optional) Import inventory resource type.
Allowed values are: 'ASSET'
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_IMPORT_INVENTORY_VIA_ASSETS_DETAILS_T Type 🔗
Details for importing assets from a file.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_import_inventory_via_assets_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_import_inventory_details_t (
data clob,
asset_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_import_inventory_via_assets_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_import_inventory_via_assets_details_t (
compartment_id varchar2,
resource_type varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
data clob,
asset_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_import_inventory_via_assets_details_t is a subtype of the dbms_cloud_oci_cloud_bridge_import_inventory_details_t type.
Fields
Field
Description
data
(optional) The file body to be sent in the request.
asset_type
(optional) The type of asset.
Allowed values are: 'VMWARE_VM', 'VM'
DBMS_CLOUD_OCI_CLOUD_BRIDGE_INVENTORY_T Type 🔗
Description of inventory.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_inventory_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
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_bridge_inventory_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_inventory_t (
id varchar2,
display_name varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
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;
(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.
compartment_id
(required) The OCID of the tenantId.
time_created
(required) The time when the inventory was created. An RFC3339 formatted datetime string.
time_updated
(required) The time when the inventory was updated. An RFC3339 formatted datetime string.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_INVENTORY_SUMMARY_T Type 🔗
Description of inventory.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_inventory_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
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_bridge_inventory_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_inventory_summary_t (
id varchar2,
display_name varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
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;
Fields
Field
Description
id
(required) Inventory OCID.
display_name
(optional) Inventory display name.
lifecycle_state
(required) The current state of the inventory.
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.
compartment_id
(optional) The OCID of the tenantId.
time_created
(optional) The time when the inventory was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time when the inventory was updated. An RFC3339 formatted datetime string.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_INVENTORY_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_inventory_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_inventory_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_inventory_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_INVENTORY_COLLECTION_T Type 🔗
Result of inventory summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_inventory_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_inventory_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_inventory_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_inventory_collection_t (
items dbms_cloud_oci_cloud_bridge_inventory_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of inventories.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_PLUGIN_T Type 🔗
Description of plugin
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_plugin_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
agent_id varchar2(32767),
plugin_version varchar2(32767),
desired_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_plugin_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_plugin_t (
name varchar2,
agent_id varchar2,
plugin_version varchar2,
desired_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) Plugin identifier, which can be renamed.
agent_id
(required) Agent identifier.
plugin_version
(required) Plugin version.
desired_state
(optional) State to which the customer wants the plugin to move to.
Allowed values are: 'ENABLED', 'DISABLED'
time_created
(required) The time when the Agent was created. An RFC3339 formatted datetime string.
time_updated
(optional) The time when the Agent was updated. An RFC3339 formatted datetime string.
(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.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_REMOVE_AGENT_DEPENDENCY_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_remove_agent_dependency_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
agent_dependency_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_remove_agent_dependency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_remove_agent_dependency_details_t (
agent_dependency_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
agent_dependency_id
(required) The OCID of the agentDependency that should be removed from the source environment.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_HISTORICAL_METRIC_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_historical_metric_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_historical_metric_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_historical_metric_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_SUBMIT_HISTORICAL_METRICS_DETAILS_T Type 🔗
Post historical metric details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_submit_historical_metrics_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
historical_metrics dbms_cloud_oci_cloud_bridge_historical_metric_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_submit_historical_metrics_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_submit_historical_metrics_details_t (
historical_metrics dbms_cloud_oci_cloud_bridge_historical_metric_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
historical_metrics
(required) List of asset historical metrics.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_AGENT_DEPENDENCY_DETAILS_T Type 🔗
The information about new AgentDependency.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_agent_dependency_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
dependency_name varchar2(32767),
dependency_version varchar2(32767),
description varchar2(32767),
namespace varchar2(32767),
bucket varchar2(32767),
object_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_agent_dependency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_agent_dependency_details_t (
display_name varchar2,
dependency_name varchar2,
dependency_version varchar2,
description varchar2,
namespace varchar2,
bucket varchar2,
object_name 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
display_name
(optional) Display name of the Agent dependency.
dependency_name
(optional) Name of the dependency type. This should match the whitelisted enum of dependency names.
dependency_version
(optional) Version of the Agent dependency.
description
(optional) Description about the Agent dependency.
namespace
(optional) Object storage namespace associated with the customer's tenancy.
bucket
(optional) Object storage bucket where the dependency is uploaded.
object_name
(optional) Name of the dependency object uploaded by the customer.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_AGENT_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_agent_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_agent_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_agent_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Agent identifier.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_ASSET_DETAILS_T Type 🔗
The information of asset to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_asset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
asset_type varchar2(32767),
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_asset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_asset_details_t (
display_name varchar2,
asset_type varchar2,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
display_name
(optional) Asset display name.
asset_type
(required) Asset type
Allowed values are: 'VMWARE_VM', 'VM'
asset_source_ids
(optional) List of asset source OCID.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_ASSET_SOURCE_DETAILS_T Type 🔗
The information about the new asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_update_asset_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
system_tags
(optional) The system tags associated with this resource, if any. The system tags are set by Oracle cloud infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{orcl-cloud: {free-tier-retain: true}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_DISCOVERY_SCHEDULE_DETAILS_T Type 🔗
Information about discovery schedule to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_update_discovery_schedule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_ENVIRONMENT_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_environment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_environment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_environment_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Environment identifier.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_INVENTORY_DETAILS_T Type 🔗
Description for updating inventory details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_inventory_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_inventory_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_inventory_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Inventory displayName.
freeform_tags
(optional) The freeform tags associated with this resource, if any. Each tag is a simple key-value pair with no predefined name, type, or namespace/scope. For more information, see Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) The defined tags associated with this resource, if any. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_PLUGIN_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_plugin_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
desired_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_plugin_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_plugin_details_t (
desired_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
desired_state
(optional) State to which the customer wants the plugin to move to.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_VM_ASSET_DETAILS_T Type 🔗
The information of VM asset to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_vm_asset_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_update_asset_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_vm_asset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_vm_asset_details_t (
display_name varchar2,
asset_type varchar2,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_update_vm_asset_details_t is a subtype of the dbms_cloud_oci_cloud_bridge_update_asset_details_t type.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_UPDATE_VM_WARE_ASSET_SOURCE_DETAILS_T Type 🔗
Asset source update details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_vm_ware_asset_source_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_update_asset_source_details_t (
vcenter_endpoint varchar2(32767),
discovery_credentials dbms_cloud_oci_cloud_bridge_asset_source_credentials_t,
replication_credentials dbms_cloud_oci_cloud_bridge_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_bridge_update_vm_ware_asset_source_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_bridge_asset_source_credentials_t,
replication_credentials dbms_cloud_oci_cloud_bridge_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_bridge_update_vm_ware_asset_source_details_t is a subtype of the dbms_cloud_oci_cloud_bridge_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_BRIDGE_UPDATE_VMWARE_VM_ASSET_DETAILS_T Type 🔗
The information of VMware VM asset to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_update_vmware_vm_asset_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_update_asset_details_t (
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t,
vmware_vm dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t,
vmware_v_center dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_vmware_vm_asset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_update_vmware_vm_asset_details_t (
display_name varchar2,
asset_type varchar2,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t,
vmware_vm dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t,
vmware_v_center dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_update_vmware_vm_asset_details_t is a subtype of the dbms_cloud_oci_cloud_bridge_update_asset_details_t type.
Fields
Field
Description
compute
(optional)
vm
(optional)
vmware_vm
(optional)
vmware_v_center
(optional)
DBMS_CLOUD_OCI_CLOUD_BRIDGE_VM_ASSET_T Type 🔗
VM type of asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_vm_asset_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_asset_t (
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vm_asset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vm_asset_t (
display_name varchar2,
inventory_id varchar2,
id varchar2,
compartment_id varchar2,
source_key varchar2,
external_asset_key varchar2,
asset_type varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_vm_asset_t is a subtype of the dbms_cloud_oci_cloud_bridge_asset_t type.
Fields
Field
Description
compute
(optional)
vm
(optional)
DBMS_CLOUD_OCI_CLOUD_BRIDGE_VM_WARE_ASSET_SOURCE_T Type 🔗
Description of an asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_vm_ware_asset_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_asset_source_t (
vcenter_endpoint varchar2(32767),
discovery_credentials dbms_cloud_oci_cloud_bridge_asset_source_credentials_t,
replication_credentials dbms_cloud_oci_cloud_bridge_asset_source_credentials_t,
are_historical_metrics_collected number,
are_realtime_metrics_collected number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vm_ware_asset_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_bridge_asset_source_credentials_t,
replication_credentials dbms_cloud_oci_cloud_bridge_asset_source_credentials_t,
are_historical_metrics_collected number,
are_realtime_metrics_collected number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_vm_ware_asset_source_t is a subtype of the dbms_cloud_oci_cloud_bridge_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_BRIDGE_VM_WARE_ASSET_SOURCE_SUMMARY_T Type 🔗
Description of an asset source.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_vm_ware_asset_source_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_asset_source_summary_t (
vcenter_endpoint varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vm_ware_asset_source_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_bridge_vm_ware_asset_source_summary_t is a subtype of the dbms_cloud_oci_cloud_bridge_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_BRIDGE_VMWARE_VM_ASSET_T Type 🔗
VMware VM type of asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_vmware_vm_asset_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_cloud_bridge_asset_t (
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t,
vmware_vm dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t,
vmware_v_center dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vmware_vm_asset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_vmware_vm_asset_t (
display_name varchar2,
inventory_id varchar2,
id varchar2,
compartment_id varchar2,
source_key varchar2,
external_asset_key varchar2,
asset_type varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
asset_source_ids dbms_cloud_oci_cloud_bridge_varchar2_tbl,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
compute dbms_cloud_oci_cloud_bridge_compute_properties_t,
vm dbms_cloud_oci_cloud_bridge_vm_properties_t,
vmware_vm dbms_cloud_oci_cloud_bridge_vmware_vm_properties_t,
vmware_v_center dbms_cloud_oci_cloud_bridge_vmware_v_center_properties_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_cloud_bridge_vmware_vm_asset_t is a subtype of the dbms_cloud_oci_cloud_bridge_asset_t type.
Fields
Field
Description
compute
(optional)
vm
(optional)
vmware_vm
(optional)
vmware_v_center
(optional)
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_RESOURCE_T Type 🔗
A resource that a work request creates and operates on.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
metadata json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2,
metadata json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entity_type
(required) The resource type that the work request affects.
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 that point, the resource will transition to CREATED, UPDATED, or DELETED, respectively.
(required) The identifier of the resource that the work request affects.
entity_uri
(optional) The URI path where you can perform a GET operation to access the resource metadata.
metadata
(optional) Additional information that helps to explain the resource.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_T Type 🔗
A description of work request status.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_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_bridge_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_cloud_bridge_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;
(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource that the work request affects. If the work request affects multiple resources, and these resources are not in the same compartment, the service team can choose the primary resource whose compartment should be used.
resources
(required) The resources affected by this work request.
percent_complete
(required) 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_BRIDGE_WORK_REQUEST_ERROR_T Type 🔗
An error encountered while executing a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A machine-usable code for the error that occurred. Error codes are listed at, 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 occurred. An RFC3339 formatted datetime string.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_ERROR_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_work_request_error_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_error_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_work_request_error_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_ERROR_COLLECTION_T Type 🔗
Results of a workRequestError search. Contains both WorkRequestError items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_error_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_work_request_error_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_error_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_error_collection_t (
items dbms_cloud_oci_cloud_bridge_work_request_error_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestError objects.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_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_bridge_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_bridge_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_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_BRIDGE_WORK_REQUEST_LOG_ENTRY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_work_request_log_entry_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_log_entry_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_work_request_log_entry_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_LOG_ENTRY_COLLECTION_T Type 🔗
Results of a workRequestLog search. Contains both workRequestLog items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_log_entry_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_work_request_log_entry_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_log_entry_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_log_entry_collection_t (
items dbms_cloud_oci_cloud_bridge_work_request_log_entry_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) List of workRequestLogEntries.
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_SUMMARY_T Type 🔗
A summary of the status of a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_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_bridge_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_bridge_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_cloud_bridge_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;
(required) The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request affects multiple resources, and these resources are not in the same compartment, the service team can choose the primary resource whose compartment should be used.
resources
(required) The resources affected by this work request.
percent_complete
(required) Percentage of the request completed.
time_accepted
(required) The date and time 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_BRIDGE_WORK_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_cloud_bridge_work_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_cloud_bridge_work_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_CLOUD_BRIDGE_WORK_REQUEST_SUMMARY_COLLECTION_T Type 🔗
Results of a workRequest search. Contains both WorkRequest items and other information, such as metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_cloud_bridge_work_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_cloud_bridge_work_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_cloud_bridge_work_request_summary_collection_t (
items dbms_cloud_oci_cloud_bridge_work_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;