DBMS_CLOUD_OCI_DATAINTEGRATION_VARCHAR2_TBL Type 🔗
Nested table type of varchar2(32767).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_CALL_ATTRIBUTE_T Type 🔗
The abstract write attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_call_attribute_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
fetch_size number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_call_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_call_attribute_t (
model_type varchar2,
fetch_size number
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The type of the abstract call attribute.
DBMS_CLOUD_OCI_DATAINTEGRATION_PARENT_REFERENCE_T Type 🔗
A reference to the object's parent.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_parent_reference_t FORCE AUTHID CURRENT_USER IS OBJECT (
parent varchar2(32767),
root_doc_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parent_reference_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parent_reference_t (
parent varchar2,
root_doc_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
parent
(optional) Key of the parent object.
root_doc_id
(optional) Key of the root document object.
DBMS_CLOUD_OCI_DATAINTEGRATION_BASE_TYPE_T Type 🔗
Base type for the type system.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_base_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
object_status number,
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_base_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_base_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The property which disciminates the subtypes.
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
description
(optional) A user defined description for the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONFIG_PARAMETER_DEFINITION_T Type 🔗
The configurable properties of an object type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_config_parameter_definition_t FORCE AUTHID CURRENT_USER IS OBJECT (
parameter_type dbms_cloud_oci_dataintegration_base_type_t,
parameter_name varchar2(32767),
description varchar2(32767),
default_value json_element_t,
class_field_name varchar2(32767),
is_static number,
is_class_field_value number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_parameter_definition_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_parameter_definition_t (
parameter_type dbms_cloud_oci_dataintegration_base_type_t,
parameter_name varchar2,
description varchar2,
default_value json_element_t,
class_field_name varchar2,
is_static number,
is_class_field_value number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
parameter_type
(optional)
parameter_name
(optional) This object represents the configurable properties for an object type.
description
(optional) A user defined description for the object.
default_value
(optional) The default value for the parameter.
class_field_name
(optional) The parameter class field name.
is_static
(optional) Specifies whether the parameter is static or not.
is_class_field_value
(optional) Specifies whether the parameter is a class field or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONFIG_DEFINITION_T Type 🔗
The configuration details of a configurable object. This contains one or more config param definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_config_definition_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
is_contained number,
object_status number,
config_parameter_definitions json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_definition_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_definition_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
is_contained number,
object_status number,
config_parameter_definitions json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
is_contained
(optional) Specifies whether the configuration is contained or not.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
config_parameter_definitions
(optional) The parameter configuration details.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_TYPE_T Type 🔗
A `DataType` object is a simple primitive type that describes the type of a single atomic unit of data. For example, `INT`, `VARCHAR`, `NUMBER`, and so on.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
dt_type varchar2(32767),
type_system_name varchar2(32767),
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
dt_type varchar2,
type_system_name varchar2,
config_definition dbms_cloud_oci_dataintegration_config_definition_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
dt_type
(optional) The data type.
Allowed values are: 'PRIMITIVE', 'STRUCTURED'
type_system_name
(optional) The data type system name.
config_definition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_TYPE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_data_type_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_type_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_data_type_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPE_SYSTEM_T Type 🔗
The type system maps from and to a type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_type_system_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
type_mapping_to json_element_t,
type_mapping_from json_element_t,
object_status number,
identifier varchar2(32767),
types dbms_cloud_oci_dataintegration_data_type_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_type_system_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_type_system_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
type_mapping_to json_element_t,
type_mapping_from json_element_t,
object_status number,
identifier varchar2,
types dbms_cloud_oci_dataintegration_data_type_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
type_mapping_to
(optional) The type system to map to.
type_mapping_from
(optional) The type system to map from.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
types
(optional) An array of types.
DBMS_CLOUD_OCI_DATAINTEGRATION_AGGREGATOR_SUMMARY_T Type 🔗
A summary type containing information about the object's aggregator including its type, key, name and description.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_aggregator_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
key varchar2(32767),
name varchar2(32767),
identifier varchar2(32767),
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_aggregator_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_aggregator_summary_t (
l_type varchar2,
key varchar2,
name varchar2,
identifier varchar2,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_type
(optional) The type of the aggregator.
key
(optional) The key of the aggregator object.
name
(optional) The name of the aggregator.
identifier
(optional) The identifier of the aggregator.
description
(optional) The description of the aggregator.
DBMS_CLOUD_OCI_DATAINTEGRATION_COUNT_STATISTIC_SUMMARY_T Type 🔗
Details of the count statistic summary object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_count_statistic_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
object_type varchar2(32767),
object_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_count_statistic_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_count_statistic_summary_t (
object_type varchar2,
object_count number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
object_type
(optional) The type of object for the count statistic object.
(optional) The value for the count statistic object.
DBMS_CLOUD_OCI_DATAINTEGRATION_COUNT_STATISTIC_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_count_statistic_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_count_statistic_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_count_statistic_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_COUNT_STATISTIC_T Type 🔗
A count statistics.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_count_statistic_t FORCE AUTHID CURRENT_USER IS OBJECT (
object_type_count_list dbms_cloud_oci_dataintegration_count_statistic_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_count_statistic_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_count_statistic_t (
object_type_count_list dbms_cloud_oci_dataintegration_count_statistic_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
object_type_count_list
(required) The array of statistics.
DBMS_CLOUD_OCI_DATAINTEGRATION_OBJECT_METADATA_T Type 🔗
A summary type containing information about the object including its key, name and when/who created/updated it.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_object_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
created_by varchar2(32767),
created_by_name varchar2(32767),
updated_by varchar2(32767),
updated_by_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
aggregator_key varchar2(32767),
aggregator dbms_cloud_oci_dataintegration_aggregator_summary_t,
identifier_path varchar2(32767),
info_fields json_element_t,
registry_version number,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
is_favorite number,
count_statistics dbms_cloud_oci_dataintegration_count_statistic_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_object_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_object_metadata_t (
created_by varchar2,
created_by_name varchar2,
updated_by varchar2,
updated_by_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
aggregator_key varchar2,
aggregator dbms_cloud_oci_dataintegration_aggregator_summary_t,
identifier_path varchar2,
info_fields json_element_t,
registry_version number,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
is_favorite number,
count_statistics dbms_cloud_oci_dataintegration_count_statistic_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
created_by
(optional) The user that created the object.
created_by_name
(optional) The user that created the object.
updated_by
(optional) The user that updated the object.
updated_by_name
(optional) The user that updated the object.
time_created
(optional) The date and time that the object was created.
time_updated
(optional) The date and time that the object was updated.
aggregator_key
(optional) The owning object key for this object.
aggregator
(optional)
identifier_path
(optional) The full path to identify this object.
info_fields
(optional) Information property fields.
registry_version
(optional) The registry version of the object.
labels
(optional) Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
is_favorite
(optional) Specifies whether this object is a favorite or not.
count_statistics
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEMA_T Type 🔗
The schema object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schema_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
resource_name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
is_has_containers number,
default_connection varchar2(32767),
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
resource_name varchar2,
description varchar2,
object_version number,
external_key varchar2,
is_has_containers number,
default_connection varchar2,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object's type.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
resource_name
(optional) A resource name can have letters, numbers, and special characters. The value is editable and is restricted to 4000 characters.
description
(optional) User-defined description for the schema.
object_version
(optional) The version of the object that is used to track changes in the object instance.
external_key
(optional) The external key for the object.
is_has_containers
(optional) Specifies whether the schema has containers.
default_connection
(optional) The default connection key.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_PROPERTY_T Type 🔗
The connection name/value pair.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_property_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_property_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_property_t (
name varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
value
(optional) The value for the connection name property.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_PROPERTY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_connection_property_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_property_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_connection_property_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_T Type 🔗
The connection summary object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify connection. On scenarios where reference to the connection is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) User-defined description for the connection.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
primary_schema
(optional)
connection_properties
(optional) The properties for the connection.
is_default
(optional) The default property for the connection.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_OBJECT_STORAGE_T Type 🔗
The connection details for an Oracle Object Storage data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
credential_file_content varchar2(32767),
user_id varchar2(32767),
finger_print varchar2(32767),
pass_phrase varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
credential_file_content varchar2,
user_id varchar2,
finger_print varchar2,
pass_phrase varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
credential_file_content
(optional) The credential file content from an Oracle Object Storage wallet.
user_id
(optional) The OCI user OCID for the user to connect to.
finger_print
(optional) The fingerprint for the user.
pass_phrase
(optional) The passphrase for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_T Type 🔗
The summary object for data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
external_key varchar2(32767),
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify data asset.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) The user-defined description of the data asset.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
external_key
(optional) The external key for the object.
asset_properties
(optional) Additional properties for the data asset.
native_type_system
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
parent_ref
(optional)
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_OBJECT_STORAGE_T Type 🔗
Summary details for the Oracle Object storage data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
oci_region varchar2(32767),
url varchar2(32767),
tenancy_id varchar2(32767),
namespace varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
oci_region varchar2,
url varchar2,
tenancy_id varchar2,
namespace varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
oci_region
(optional) The Oracle Object storage Region ie. us-ashburn-1
url
(optional) The Oracle Object storage URL.
tenancy_id
(optional) The OCI tenancy OCID.
namespace
(optional) The namespace for the specified Oracle Object storage resource. You can find the namespace under Object Storage Settings in the Console.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_BIP_CALL_ATTRIBUTE_T Type 🔗
Properties to configure reading from a FUSION_APP BIP data asset / connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_bip_call_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_call_attribute_t (
offset_parameter varchar2(32767),
fetch_next_rows_parameter varchar2(32767),
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bip_call_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bip_call_attribute_t (
model_type varchar2,
fetch_size number,
offset_parameter varchar2,
fetch_next_rows_parameter varchar2,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_bip_call_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_call_attribute_t type.
Fields
Field
Description
offset_parameter
(optional) Name of BIP report parameter to control the offset of the chunk.
fetch_next_rows_parameter
(optional) Name of BIP report parameter to control the fetch next rows of the chunk.
staging_data_asset
(optional)
staging_connection
(optional)
bucket_schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_DATA_OPERATION_CONFIG_T Type 🔗
The information about the data operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_data_operation_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
metadata_config_properties json_element_t,
derived_attributes json_element_t,
call_attribute dbms_cloud_oci_dataintegration_bip_call_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_data_operation_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_data_operation_config_t (
model_type varchar2,
metadata_config_properties json_element_t,
derived_attributes json_element_t,
call_attribute dbms_cloud_oci_dataintegration_bip_call_attribute_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) This map is used for passing extra metatdata configuration that is required by read / write operation.
derived_attributes
(optional) this map is used for passing BIP report parameter values.
call_attribute
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONFIG_PARAMETER_VALUE_T Type 🔗
Contains the parameter configuration values.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_config_parameter_value_t FORCE AUTHID CURRENT_USER IS OBJECT (
string_value varchar2(32767),
int_value number,
object_value json_element_t,
ref_value json_element_t,
parameter_value varchar2(32767),
root_object_value json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_parameter_value_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_parameter_value_t (
string_value varchar2,
int_value number,
object_value json_element_t,
ref_value json_element_t,
parameter_value varchar2,
root_object_value json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
string_value
(optional) A string value of the parameter.
int_value
(optional) An integer value of the parameter.
object_value
(optional) An object value of the parameter.
ref_value
(optional) The root object reference value.
parameter_value
(optional) Reference to the parameter by its key.
root_object_value
(optional) The root object value, used in custom parameters.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONFIG_VALUES_T Type 🔗
Configuration values can be string, objects, or parameters.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_config_values_t FORCE AUTHID CURRENT_USER IS OBJECT (
config_param_values json_element_t,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_values_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_values_t (
config_param_values json_element_t,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
config_param_values
(optional) The configuration parameter values.
parent_ref
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPED_OBJECT_T Type 🔗
The `TypedObject` class is a base class for any model object that has a type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_typed_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2(32767),
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_object_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_FIELD_T Type 🔗
The type representing the abstract field concept.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_abstract_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_FORMAT_ATTRIBUTE_T Type 🔗
The abstract format attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_format_attribute_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
is_file_pattern number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_format_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_format_attribute_t (
model_type varchar2,
is_file_pattern number
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Defines whether a file pattern is supported.
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_FORMATTED_TEXT_T Type 🔗
The type of the formatted text.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_formatted_text_t FORCE AUTHID CURRENT_USER IS OBJECT (
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_formatted_text_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_formatted_text_t (
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
config_values
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_FREQUENCY_DETAILS_T Type 🔗
The model that holds the frequency details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_frequency_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
frequency varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_frequency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_frequency_details_t (
model_type varchar2,
frequency varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_READ_ATTRIBUTE_T Type 🔗
The abstract read attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_read_attribute_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_read_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_read_attribute_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The type of the abstract read attribute.
DBMS_CLOUD_OCI_DATAINTEGRATION_ABSTRACT_WRITE_ATTRIBUTE_T Type 🔗
The abstract write attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_abstract_write_attribute_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_write_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The type of the abstract write attribute.
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPED_OBJECT_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_typed_object_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_typed_object_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_typed_object_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_INPUT_PORT_T Type 🔗
The input port details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_input_port_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
port_type varchar2(32767),
fields dbms_cloud_oci_dataintegration_typed_object_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_port_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_port_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
port_type varchar2,
fields dbms_cloud_oci_dataintegration_typed_object_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_input_port_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
port_type
(optional) The port details for the data asset.Type.
Allowed values are: 'DATA', 'CONTROL', 'MODEL'
fields
(optional) An array of fields.
DBMS_CLOUD_OCI_DATAINTEGRATION_PARAMETER_T Type 🔗
Parameters are created and assigned values that can be configured for each integration task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_parameter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
l_type json_element_t,
default_value json_element_t,
root_object_default_value json_element_t,
is_input number,
is_output number,
output_aggregation_type varchar2(32767),
type_name varchar2(32767),
used_for varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parameter_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parameter_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
l_type json_element_t,
default_value json_element_t,
root_object_default_value json_element_t,
is_input number,
is_output number,
output_aggregation_type varchar2,
type_name varchar2,
used_for varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_parameter_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
l_type
(optional) This can either be a string value referencing the type or a BaseType object.
default_value
(optional) The default value of the parameter.
root_object_default_value
(optional) The default value of the parameter which can be an object in DIS, such as a data entity.
is_input
(optional) Specifies whether the parameter is input value.
is_output
(optional) Specifies whether the parameter is output value.
output_aggregation_type
(optional) The output aggregation type.
Allowed values are: 'MIN', 'MAX', 'COUNT', 'SUM'
type_name
(optional) The type of value the parameter was created for.
used_for
(optional) The param name for which parameter is created for for eg. driver Shape, Operation etc.
DBMS_CLOUD_OCI_DATAINTEGRATION_DYNAMIC_PROXY_FIELD_T Type 🔗
The type representing the dynamic proxy field concept. Dynamic proxy fields have a reference to another field.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dynamic_proxy_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_proxy_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_proxy_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_dynamic_proxy_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
l_type
(optional)
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_MATERIALIZED_COMPOSITE_TYPE_T Type 🔗
A `MaterializedCompositeType` represents a type that is composed of a list of sub-types, for example an `Address` type. The sub-types can be simple `DataType` or other `CompositeType` objects. Typically, a `CompositeType` may represent an arbitrarily deep hierarchy of types.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_materialized_composite_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
elements dbms_cloud_oci_dataintegration_varchar2_tbl,
path_names dbms_cloud_oci_dataintegration_varchar2_tbl,
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_materialized_composite_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_materialized_composite_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
elements dbms_cloud_oci_dataintegration_varchar2_tbl,
path_names dbms_cloud_oci_dataintegration_varchar2_tbl,
config_definition dbms_cloud_oci_dataintegration_config_definition_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_materialized_composite_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
elements
(optional) An array of elements.
path_names
(optional) An array of path names corresponding to the elements. The path names are used when referring to the field in an expression.
config_definition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_MATERIALIZED_DYNAMIC_FIELD_T Type 🔗
A materialized dynamic field, rules have been applied and all fields are concrete.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_materialized_dynamic_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
scope varchar2(32767),
l_type dbms_cloud_oci_dataintegration_materialized_composite_type_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_materialized_dynamic_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_materialized_dynamic_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
scope varchar2,
l_type dbms_cloud_oci_dataintegration_materialized_composite_type_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_materialized_dynamic_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
scope
(optional) Reference key value to an object within the document.
l_type
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_INPUT_PORT_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_input_port_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_input_port_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_input_port_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PARAMETER_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_parameter_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_parameter_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_parameter_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_OPERATOR_T Type 🔗
An operator defines some data integration semantics in a data flow. It may be reading/writing data or transforming the data.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_operator_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2(32767),
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operator_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Details about the operator.
object_version
(optional) The version of the object that is used to track changes in the object instance.
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parameters
(optional) An array of parameters used in the data flow.
op_config_values
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_AGGREGATOR_T Type 🔗
The information about the aggregator operator. The aggregate operator performs calculations, like sum or count, on all rows or a group of rows to create new, derivative attributes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_aggregator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
group_by_columns dbms_cloud_oci_dataintegration_dynamic_proxy_field_t,
materialized_group_by_columns dbms_cloud_oci_dataintegration_materialized_dynamic_field_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_aggregator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_aggregator_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
group_by_columns dbms_cloud_oci_dataintegration_dynamic_proxy_field_t,
materialized_group_by_columns dbms_cloud_oci_dataintegration_materialized_dynamic_field_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_aggregator_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
group_by_columns
(optional)
materialized_group_by_columns
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_OBJECT_METADATA_T Type 🔗
A summary type containing information about the object including its key, name and when/who created/updated it.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_object_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
name varchar2(32767),
name_path varchar2(32767),
l_type varchar2(32767),
object_version number,
identifier varchar2(32767),
action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_object_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_object_metadata_t (
key varchar2,
name varchar2,
name_path varchar2,
l_type varchar2,
object_version number,
identifier varchar2,
action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
name_path
(optional) The fully qualified path of the published object, which would include its project and folder.
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
action
(optional) The patch action indicating if object was created, updated, or deleted.
DBMS_CLOUD_OCI_DATAINTEGRATION_SOURCE_APPLICATION_INFO_T Type 🔗
The information about the application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_source_application_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
workspace_id varchar2(32767),
application_key varchar2(32767),
application_version varchar2(32767),
last_patch_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_source_application_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_source_application_info_t (
workspace_id varchar2,
application_key varchar2,
application_version varchar2,
last_patch_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
workspace_id
(optional) The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
application_key
(optional) The source application key to use when creating the application.
application_version
(optional) The source application version of the application.
last_patch_key
(optional) The last patch key for the application.
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_OBJECT_METADATA_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_patch_object_metadata_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_object_metadata_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_patch_object_metadata_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_APPLICATION_T Type 🔗
The application type contains the audit summary information and the definition of the application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_application_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2,
compartment_id varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify application.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) The application's version.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
dependent_object_metadata
(optional) A list of dependent objects in this patch.
published_object_metadata
(optional) A list of objects that are published or unpublished in this patch.
source_application_info
(optional)
time_patched
(optional) The date and time the application was patched, in the timestamp format defined by RFC3339.
id
(optional) OCID of the resource that is used to uniquely identify the application
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
time_created
(optional) The date and time the application was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_APPLICATION_DETAILS_T Type 🔗
The information about the application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_application_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify application.
model_type
(required) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) version
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(required) The version of the object that is used to track changes in the object instance.
metadata
(optional)
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATAINTEGRATION_APPLICATION_SUMMARY_T Type 🔗
The application summary type contains the audit summary information and the definition of the application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_application_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2,
compartment_id varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify application.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) The application's version.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
dependent_object_metadata
(optional) A list of dependent objects in this patch.
published_object_metadata
(optional) A list of objects that are published or unpublished in this patch.
source_application_info
(optional)
time_patched
(optional) The date and time the application was patched, in the timestamp format defined by RFC3339.
id
(optional) OCID of the resource that is used to uniquely identify the application
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
time_created
(optional) The date and time the application was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_APPLICATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_application_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_application_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_application_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_APPLICATION_SUMMARY_COLLECTION_T Type 🔗
This is the collection of application summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_application_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_application_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_application_summary_collection_t (
items dbms_cloud_oci_dataintegration_application_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of application summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_ARRAY_TYPE_T Type 🔗
Array type object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_array_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
element_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_array_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_array_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
element_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_array_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
element_type
(optional) Seeded type
DBMS_CLOUD_OCI_DATAINTEGRATION_AUTH_CONFIG_T Type 🔗
Authentication configuration for Generic REST invocation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_auth_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_auth_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_auth_config_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify this object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
model_type
(optional) The specific authentication configuration to be used for Generic REST invocation.
Allowed values are: 'OCI_RESOURCE_AUTH_CONFIG'
DBMS_CLOUD_OCI_DATAINTEGRATION_AUTH_DETAILS_T Type 🔗
Authentication type to be used for Generic REST invocation. This is deprecated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_auth_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_auth_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_auth_details_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
model_type
(optional) The authentication mode to be used for Generic REST invocation.
DBMS_CLOUD_OCI_DATAINTEGRATION_AVRO_FORMAT_ATTRIBUTE_T Type 🔗
The AVRO format attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_avro_format_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_format_attribute_t (
compression varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_avro_format_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_avro_format_attribute_t (
model_type varchar2,
is_file_pattern number,
compression varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_avro_format_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_format_attribute_t type.
Fields
Field
Description
compression
(optional) The compression for the file.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTOR_ATTRIBUTE_T Type 🔗
Marker class for connector attributes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connector_attribute_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connector_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connector_attribute_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The type of the abstract read attribute.
Allowed values are: 'EXTERNAL_STORAGE'
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_STORAGE_T Type 🔗
BICC Connector Attribute.Object Storage as External storage where the BICC extracted files are written
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connector_attribute_t (
storage_id varchar2(32767),
storage_name varchar2(32767),
host varchar2(32767),
tenancy_id varchar2(32767),
namespace varchar2(32767),
bucket varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_storage_t (
model_type varchar2,
storage_id varchar2,
storage_name varchar2,
host varchar2,
tenancy_id varchar2,
namespace varchar2,
bucket varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_external_storage_t is a subtype of the dbms_cloud_oci_dataintegration_connector_attribute_t type.
Fields
Field
Description
storage_id
(optional) Id of the external stoarge configured in BICC console. Usually its numeric.
storage_name
(optional) Name of the external storage configured in BICC console
host
(optional) Object Storage host Url. DO not give http/https.
tenancy_id
(optional) Tenancy OCID for the OOS bucket
namespace
(optional) Namespace for the OOS bucket
bucket
(optional) Bucket Name where BICC extracts stores the files
DBMS_CLOUD_OCI_DATAINTEGRATION_BICC_READ_ATTRIBUTES_T Type 🔗
Properties to configure reading from BICC.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_bicc_read_attributes_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_read_attribute_t (
fetch_size number,
extract_strategy varchar2(32767),
external_storage dbms_cloud_oci_dataintegration_external_storage_t,
initial_extract_date timestamp with time zone,
last_extract_date timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bicc_read_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bicc_read_attributes_t (
model_type varchar2,
fetch_size number,
extract_strategy varchar2,
external_storage dbms_cloud_oci_dataintegration_external_storage_t,
initial_extract_date timestamp with time zone,
last_extract_date timestamp with time zone
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_bicc_read_attributes_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_read_attribute_t type.
Fields
Field
Description
fetch_size
(optional) The fetch size for reading.
extract_strategy
(optional) Extraction Strategy - FULL|INCREMENTAL
Allowed values are: 'FULL', 'INCREMENTAL'
external_storage
(optional)
initial_extract_date
(optional) Date from where extract should start
last_extract_date
(optional) Date last extracted
DBMS_CLOUD_OCI_DATAINTEGRATION_BIP_REPORT_PARAMETER_VALUE_T Type 🔗
Report parameter name and value to be passed for BIP Report extraction.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_bip_report_parameter_value_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bip_report_parameter_value_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bip_report_parameter_value_t (
name varchar2,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) BIP Report parameter name.
value
(required) BIP Report parameter value.
DBMS_CLOUD_OCI_DATAINTEGRATION_BIP_REPORT_PARAMETER_VALUE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_bip_report_parameter_value_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_bip_report_parameter_value_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_bip_report_parameter_value_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_BIP_READ_ATTRIBUTES_T Type 🔗
Properties to configure reading from a FUSION_APP BIP data asset / connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_bip_read_attributes_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_read_attribute_t (
fetch_size number,
row_limit number,
offset_parameter varchar2(32767),
fetch_next_rows_parameter varchar2(32767),
custom_parameters dbms_cloud_oci_dataintegration_bip_report_parameter_value_tbl,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bip_read_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_bip_read_attributes_t (
model_type varchar2,
fetch_size number,
row_limit number,
offset_parameter varchar2,
fetch_next_rows_parameter varchar2,
custom_parameters dbms_cloud_oci_dataintegration_bip_report_parameter_value_tbl,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_bip_read_attributes_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_read_attribute_t type.
Fields
Field
Description
fetch_size
(optional) The fetch size for reading.
row_limit
(optional) The maximum number of rows to read.
offset_parameter
(optional) Name of BIP report parameter to control the start of the chunk
fetch_next_rows_parameter
(optional) Name of BIP report parameter to control the start of the chunk
custom_parameters
(optional) An array of custom BIP report parameters and their values.
staging_data_asset
(optional)
staging_connection
(optional)
bucket_schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CANCEL_REST_CALL_CONFIG_T Type 🔗
The REST API configuration for cancelling the task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_cancel_rest_call_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
method_type varchar2(32767),
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_cancel_rest_call_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_cancel_rest_call_config_t (
method_type varchar2,
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CHANGE_COMPARTMENT_DETAILS_T Type 🔗
The information needed to change the workspace compartment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_change_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_change_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_change_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the the workspace to.
DBMS_CLOUD_OCI_DATAINTEGRATION_CHANGE_DIS_APPLICATION_COMPARTMENT_DETAILS_T Type 🔗
The information needed to change the DIS Application compartment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_change_dis_application_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_change_dis_application_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_change_dis_application_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to move the the DIS Application to.
DBMS_CLOUD_OCI_DATAINTEGRATION_REFERENCE_USED_BY_T Type 🔗
Referenced object information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_reference_used_by_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
name varchar2(32767),
name_path varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_reference_used_by_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_reference_used_by_t (
key varchar2,
name varchar2,
name_path varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the published object.
name
(optional) The name of an published object.
name_path
(optional) The name path of the published object.
DBMS_CLOUD_OCI_DATAINTEGRATION_REFERENCE_USED_BY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_reference_used_by_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_reference_used_by_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_reference_used_by_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CHILD_REFERENCE_T Type 🔗
(optional) The new reference object to use instead of the original reference. For example, this can be a data asset reference.
aggregator_key
(optional) The aggregator key of the child reference object. For example, this can be a data asset key.
used_by
(optional) List of published objects where this is used.
DBMS_CLOUD_OCI_DATAINTEGRATION_CHILD_REFERENCE_DETAIL_T Type 🔗
References used in an application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_child_reference_detail_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
target_object json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_child_reference_detail_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_child_reference_detail_t (
key varchar2,
target_object json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The child reference key.
target_object
(optional) The new reference object to use instead of the original reference. For example, this can be a connection reference.
DBMS_CLOUD_OCI_DATAINTEGRATION_FIELD_MAP_T Type 🔗
A field map is a way to map a source row shape to a target row shape that may be different.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_field_map_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_field_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_field_map_t (
model_type varchar2,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_DATAINTEGRATION_FIELD_MAP_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_field_map_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_field_map_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_field_map_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_COMPOSITE_FIELD_MAP_T Type 🔗
A composite field map.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_composite_field_map_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_field_map_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
field_maps dbms_cloud_oci_dataintegration_field_map_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_field_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_field_map_t (
model_type varchar2,
description varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
field_maps dbms_cloud_oci_dataintegration_field_map_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_composite_field_map_t is a subtype of the dbms_cloud_oci_dataintegration_field_map_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
field_maps
(optional) An array of field maps.
DBMS_CLOUD_OCI_DATAINTEGRATION_PARAMETER_VALUE_T Type 🔗
User defined value for a parameter.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_parameter_value_t FORCE AUTHID CURRENT_USER IS OBJECT (
simple_value json_element_t,
root_object_value json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parameter_value_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parameter_value_t (
simple_value json_element_t,
root_object_value json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
simple_value
(optional) A simple value for the parameter.
root_object_value
(optional) This can be any object such as a file entity, a schema, or a table.
DBMS_CLOUD_OCI_DATAINTEGRATION_STATE_T Type 🔗
State stored in All States Map of Composite State
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_state_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
parameter_value dbms_cloud_oci_dataintegration_parameter_value_t,
time_value timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_state_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_state_t (
name varchar2,
parameter_value dbms_cloud_oci_dataintegration_parameter_value_t,
time_value timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) A simple name for the State.
parameter_value
(optional)
time_value
(optional) To store a date value for the State we use dateValue attribute.
DBMS_CLOUD_OCI_DATAINTEGRATION_REGISTRY_METADATA_T Type 🔗
Information about the object and its parent.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_registry_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
aggregator_key varchar2(32767),
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
registry_version number,
key varchar2(32767),
is_favorite number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_registry_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_registry_metadata_t (
aggregator_key varchar2,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
registry_version number,
key varchar2,
is_favorite number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
aggregator_key
(optional) The owning object's key for this object.
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
registry_version
(optional) The registry version.
key
(optional) The identifying key for the object.
is_favorite
(optional) Specifies whether this object is a favorite or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_COMPOSITE_STATE_T Type 🔗
The composite state object provides information on the state of a task or schedule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_composite_state_t FORCE AUTHID CURRENT_USER IS OBJECT (
composite_state_aggregator varchar2(32767),
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
all_states_map json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_state_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_state_t (
composite_state_aggregator varchar2,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
description varchar2,
object_version number,
object_status number,
all_states_map json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
composite_state_aggregator
(optional) The type of the Composite State Aggregator.
(optional) Generated key that can be used in API calls to identify Composite State.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
all_states_map
(optional) Map that stores all the States for a given Task or Schedule
A `CompositeType` represents a type that is composed of a list of sub-types, for example an `Address` type. The sub-types can be simple `DataType` or other `CompositeType` objects. Typically, a `CompositeType` may represent an arbitrarily deep hierarchy of types.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_composite_type_abs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
elements dbms_cloud_oci_dataintegration_typed_object_tbl,
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_type_abs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_type_abs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
elements dbms_cloud_oci_dataintegration_typed_object_tbl,
config_definition dbms_cloud_oci_dataintegration_config_definition_t
) RETURN SELF AS RESULT
) NOT FINAL;
dbms_cloud_oci_dataintegration_composite_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
elements
(optional) An array of elements.
config_definition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_COMPOSITE_TYPE_T Type 🔗
A `CompositeType` represents a type that is composed of a list of sub-types, for example an `Address` type. The sub-types can be simple `DataType` or other `CompositeType` objects. Typically, a `CompositeType` may represent an arbitrarily deep hierarchy of types.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_composite_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_composite_type_abs_t (
parent_type dbms_cloud_oci_dataintegration_composite_type_abs_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_composite_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
elements dbms_cloud_oci_dataintegration_typed_object_tbl,
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
parent_type dbms_cloud_oci_dataintegration_composite_type_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_composite_type_t is a subtype of the dbms_cloud_oci_dataintegration_composite_type_abs_t type.
Fields
Field
Description
parent_type
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_COMPRESSION_T Type 🔗
The optional compression configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_compression_t FORCE AUTHID CURRENT_USER IS OBJECT (
codec varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_compression_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_compression_t (
codec varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECTION_RULE_T Type 🔗
Base type for how fields are projected. There are many different mechanisms for doing this such as by a name pattern, datatype and so on. See the `modelType` property for the types.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_projection_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_projection_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_projection_rule_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Specifies whether the rule uses a java regex syntax.
config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
description
(optional) A user defined description for the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECTION_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_projection_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_projection_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_projection_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CONDITIONAL_COMPOSITE_FIELD_MAP_T Type 🔗
A conditional composite field map.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_conditional_composite_field_map_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_field_map_t (
field_map_scope dbms_cloud_oci_dataintegration_projection_rule_tbl,
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
field_maps dbms_cloud_oci_dataintegration_field_map_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_conditional_composite_field_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_conditional_composite_field_map_t (
model_type varchar2,
description varchar2,
field_map_scope dbms_cloud_oci_dataintegration_projection_rule_tbl,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
field_maps dbms_cloud_oci_dataintegration_field_map_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_conditional_composite_field_map_t is a subtype of the dbms_cloud_oci_dataintegration_field_map_t type.
Fields
Field
Description
field_map_scope
(optional) An array of projection rules.
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
field_maps
(optional) An array of field maps.
DBMS_CLOUD_OCI_DATAINTEGRATION_FLOW_PORT_LINK_T Type 🔗
Details about the link between two data flow operators.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flow_port_link_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
description varchar2(32767),
port varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flow_port_link_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flow_port_link_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
description varchar2,
port varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
description
(optional) Detailed description for the object.
port
(optional) Key of FlowPort reference
DBMS_CLOUD_OCI_DATAINTEGRATION_OUTPUT_LINK_T Type 🔗
Details about the outgoing data of an operator in a data flow design.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_output_link_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_flow_port_link_t (
to_links dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_output_link_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_output_link_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
description varchar2,
port varchar2,
to_links dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_output_link_t is a subtype of the dbms_cloud_oci_dataintegration_flow_port_link_t type.
Fields
Field
Description
to_links
(optional) The links from this output link to connect to other links in flow.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXPRESSION_T Type 🔗
An expression node.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_expression_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
expr_string varchar2(32767),
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_expression_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_expression_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
expr_string varchar2,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
parent_ref
(optional)
expr_string
(optional) The expression string for the object.
config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONDITIONAL_INPUT_LINK_T Type 🔗
The information about the conditional input link.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_conditional_input_link_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_flow_port_link_t (
from_link dbms_cloud_oci_dataintegration_output_link_t,
field_map dbms_cloud_oci_dataintegration_field_map_t,
condition dbms_cloud_oci_dataintegration_expression_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_conditional_input_link_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_conditional_input_link_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
description varchar2,
port varchar2,
from_link dbms_cloud_oci_dataintegration_output_link_t,
field_map dbms_cloud_oci_dataintegration_field_map_t,
condition dbms_cloud_oci_dataintegration_expression_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_conditional_input_link_t is a subtype of the dbms_cloud_oci_dataintegration_flow_port_link_t type.
Fields
Field
Description
from_link
(optional)
field_map
(optional)
condition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONDITIONAL_OUTPUT_PORT_T Type 🔗
The conditional output port details, used in operators such as split.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_conditional_output_port_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
port_type varchar2(32767),
fields dbms_cloud_oci_dataintegration_typed_object_tbl,
split_condition dbms_cloud_oci_dataintegration_expression_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_conditional_output_port_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_conditional_output_port_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
port_type varchar2,
fields dbms_cloud_oci_dataintegration_typed_object_tbl,
split_condition dbms_cloud_oci_dataintegration_expression_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_conditional_output_port_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
port_type
(optional) The port details for the data asset.Type.
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_config_provider_abs_t FORCE AUTHID CURRENT_USER IS OBJECT (
bindings json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_provider_abs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_provider_abs_t (
bindings json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
bindings
(optional) The configuration provider bindings.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONFIG_PROVIDER_T Type 🔗
The information about the configuration provider.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_config_provider_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_config_provider_abs_t (
child_providers json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_provider_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_config_provider_t (
bindings json_element_t,
child_providers json_element_t
) RETURN SELF AS RESULT
);
Fields
Field
Description
child_providers
(optional) The child providers.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_T Type 🔗
Represents a data source in the Data Integration service.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
external_key varchar2(32767),
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify data asset.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) User-defined description of the data asset.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
external_key
(optional) The external key for the object.
asset_properties
(optional) Additional properties for the data asset.
native_type_system
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
parent_ref
(optional)
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_T Type 🔗
The connection for a data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify connection. On scenarios where reference to the connection is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) User-defined description for the connection.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
primary_schema
(optional)
connection_properties
(optional) The properties for the connection.
is_default
(optional) The default property for the connection.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONFIGURATION_DETAILS_T Type 🔗
A key map. If provided, key is replaced with generated key.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
data_asset dbms_cloud_oci_dataintegration_data_asset_t,
connection dbms_cloud_oci_dataintegration_connection_t,
compartment_id varchar2(32767),
schema dbms_cloud_oci_dataintegration_schema_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_configuration_details_t (
data_asset dbms_cloud_oci_dataintegration_data_asset_t,
connection dbms_cloud_oci_dataintegration_connection_t,
compartment_id varchar2,
schema dbms_cloud_oci_dataintegration_schema_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
data_asset
(optional)
connection
(optional)
compartment_id
(optional) The compartment ID of the object store.
schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONFIGURED_TYPE_T Type 🔗
A `ConfiguredType` represents a type that has built-in configuration to the type itself. An example is a `SSN` type whose basic type is `VARCHAR`, but the type itself also has a built-in configuration like length=10.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_configured_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
wrapped_type json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_configured_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_configured_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
wrapped_type json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
config_definition dbms_cloud_oci_dataintegration_config_definition_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_configured_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
wrapped_type
(optional) A wrapped type, may be a string or a BaseType.
config_values
(optional)
config_definition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_DETAILS_T Type 🔗
The connection details for a data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify connection. On scenarios where reference to the connection is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) User-defined description for the connection.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
primary_schema
(optional)
connection_properties
(optional) The properties for the connection.
is_default
(optional) The default property for the connection.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SECRET_CONFIG_T Type 🔗
Secret configuration if used for storing sensitive info
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_secret_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_secret_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_secret_config_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) If OCI vault is used for storing sensitive info
Allowed values are: 'OCI_VAULT_SECRET_CONFIG'
DBMS_CLOUD_OCI_DATAINTEGRATION_SENSITIVE_ATTRIBUTE_T Type 🔗
The sensitive attribute to be used for sensitive content (for password/wallet).
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sensitive_attribute_t FORCE AUTHID CURRENT_USER IS OBJECT (
secret_config dbms_cloud_oci_dataintegration_secret_config_t,
value varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sensitive_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sensitive_attribute_t (
secret_config dbms_cloud_oci_dataintegration_secret_config_t,
value varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
secret_config
(optional)
value
(optional) Attribute to provide sensitive content.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ADWC_T Type 🔗
The connection details for an Autonomous Data Warehouse data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_adwc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_adwc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_adwc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_adwc_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Data Warehouse instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ADWC_DETAILS_T Type 🔗
The connection details for an Autonomous Data Warehouse data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_adwc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_adwc_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_adwc_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_adwc_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Data Warehouse instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_AMAZON_S3_T Type 🔗
The connection details for Amazon s3 data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_amazon_s3_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_amazon_s3_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_amazon_s3_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_amazon_s3_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
access_key
(optional)
secret_key
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_AMAZON_S3_DETAILS_T Type 🔗
The connection details for an Oracle Database data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_amazon_s3_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_amazon_s3_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_amazon_s3_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_amazon_s3_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
access_key
(optional)
secret_key
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ATP_T Type 🔗
The connection details for an Autonomous Transaction Processing data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_atp_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_atp_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_atp_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_atp_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Transaction Processing instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ATP_DETAILS_T Type 🔗
The connection details for an Autonomous Transaction Processing data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_atp_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_atp_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_atp_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_atp_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Transaction Processing instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_BICC_T Type 🔗
The connection details for a FUSION_APP BICC Connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_bicc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bicc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bicc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_bicc_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
default_external_storage
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_BICC_DETAILS_T Type 🔗
The connection details for a FUSION_APP BICC connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_bicc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bicc_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bicc_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_bicc_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
default_external_storage
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_BIP_T Type 🔗
The connection details for a Fusion applications BIP connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_bip_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bip_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bip_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_bip_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_BIP_DETAILS_T Type 🔗
The connection details for a Fusion applications BIP connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_bip_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bip_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_bip_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_bip_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_HDFS_T Type 🔗
The connection details for the HDFS data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_hdfs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
hdfs_principal varchar2(32767),
data_node_principal varchar2(32767),
name_node_principal varchar2(32767),
realm varchar2(32767),
key_distribution_center varchar2(32767),
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_hdfs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_hdfs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
hdfs_principal varchar2,
data_node_principal varchar2,
name_node_principal varchar2,
realm varchar2,
key_distribution_center varchar2,
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_hdfs_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
hdfs_principal
(required) The HDFS principal.
data_node_principal
(required) The HDFS Data Node principal.
name_node_principal
(required) The HDFS Name Node principal.
realm
(optional) HDFS Realm name.
key_distribution_center
(optional) The HDFS Key Distribution Center.
key_tab_content
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_HDFS_DETAILS_T Type 🔗
The connection details for the HDFS data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_hdfs_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
hdfs_principal varchar2(32767),
data_node_principal varchar2(32767),
name_node_principal varchar2(32767),
realm varchar2(32767),
key_distribution_center varchar2(32767),
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_hdfs_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_hdfs_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
hdfs_principal varchar2,
data_node_principal varchar2,
name_node_principal varchar2,
realm varchar2,
key_distribution_center varchar2,
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_hdfs_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
hdfs_principal
(required) The HDFS principal.
data_node_principal
(required) The HDFS Data Node principal.
name_node_principal
(required) The HDFS Name Node principal.
realm
(optional) HDFS Realm name.
key_distribution_center
(optional) The HDFS Key Distribution Center.
key_tab_content
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_JDBC_T Type 🔗
The connection details for a generic JDBC data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_JDBC_DETAILS_T Type 🔗
The connection details for a generic JDBC data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_jdbc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_jdbc_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_jdbc_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_jdbc_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_LAKE_T Type 🔗
The connection details for a Lake connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_lake_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_lake_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_lake_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_lake_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_LAKE_DETAILS_T Type 🔗
The connection details for a Lake connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_lake_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_lake_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_lake_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_lake_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_MY_SQL_T Type 🔗
The connection details for a MYSQL data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_MY_SQL_DETAILS_T Type 🔗
The connection details for a MYSQL data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_my_sql_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_my_sql_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
The connection details for a MYSQL HeatWave data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_MY_SQL_HEAT_WAVE_DETAILS_T Type 🔗
The connection details for a MYSQL HeatWave data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_OBJECT_STORAGE_T Type 🔗
The connection details for an Oracle Object Storage data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
credential_file_content varchar2(32767),
user_id varchar2(32767),
finger_print varchar2(32767),
pass_phrase varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_object_storage_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
credential_file_content varchar2,
user_id varchar2,
finger_print varchar2,
pass_phrase varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_object_storage_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
credential_file_content
(optional) The credential file content from an Oracle Object Storage wallet.
user_id
(optional) The OCI user OCID for the user to connect to.
finger_print
(optional) The fingerprint for the user.
pass_phrase
(optional) The passphrase for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_OBJECT_STORAGE_DETAILS_T Type 🔗
The connection summary details for an Oracle Object Storage data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_object_storage_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
credential_file_content varchar2(32767),
user_id varchar2(32767),
finger_print varchar2(32767),
pass_phrase varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_object_storage_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_object_storage_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
credential_file_content varchar2,
user_id varchar2,
finger_print varchar2,
pass_phrase varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_object_storage_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
credential_file_content
(optional) The credential file content from an Oracle Object Storage wallet.
user_id
(optional) The OCI user OCID for the user to connect to.
finger_print
(optional) The fingerprint for the user.
pass_phrase
(optional) The passphrase for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_T Type 🔗
The connection details for an Oracle Database data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_DETAILS_T Type 🔗
The connection details for an Oracle Database data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_EBS_T Type 🔗
The connection details for E-Business Suite data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_EBS_DETAILS_T Type 🔗
The connection details for an E-Business Suite data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_PEOPLE_SOFT_T Type 🔗
The connection details for an Oracle PeopleSoft data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_PEOPLE_SOFT_DETAILS_T Type 🔗
The connection details for an Oracle PeopleSoft data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_SIEBEL_T Type 🔗
The connection details for an Oracle Siebel data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_ORACLE_SIEBEL_DETAILS_T Type 🔗
The connection details for an Oracle Siebel data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_REST_BASIC_AUTH_T Type 🔗
The connection details for a basic auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
Fields
Field
Description
username
(optional) Username for the connection.
password_secret
(optional)
auth_header
(optional) Optional header name if used other than default header(Authorization).
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_REST_BASIC_AUTH_DETAILS_T Type 🔗
The connection details for a basic auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_rest_basic_auth_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
Fields
Field
Description
username
(optional) Username for the connection.
password_secret
(optional)
auth_header
(optional) Optional header name if used other than default header(Authorization).
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_REST_NO_AUTH_T Type 🔗
The connection details for a no auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_t is a subtype of the dbms_cloud_oci_dataintegration_connection_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_FROM_REST_NO_AUTH_DETAILS_T Type 🔗
The connection details for a no auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_from_rest_no_auth_details_t is a subtype of the dbms_cloud_oci_dataintegration_connection_details_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_connection_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_connection_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_COLLECTION_T Type 🔗
This is the collection of connection summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_connection_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_collection_t (
items dbms_cloud_oci_dataintegration_connection_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of connection summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_ADWC_T Type 🔗
The connection summary details for an Autonomous Data Warehouse data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_adwc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_adwc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_adwc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_adwc_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Data Warehouse instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_AMAZON_S3_T Type 🔗
The connection summary details for Amazons3 data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
access_key
(optional)
secret_key
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_ATP_T Type 🔗
The connection details for an Autonomous Transaction Processing data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_atp_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_atp_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_atp_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_atp_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Transaction Processing instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_BICC_T Type 🔗
The connection summary details for a FUSION_APP BICC connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_bicc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_bicc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_bicc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_bicc_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_BIP_T Type 🔗
The connection summary details for a Fusion applications BIP connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_bip_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_bip_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_bip_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_bip_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_HDFS_T Type 🔗
The connection summary details for the HDFS data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_hdfs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
hdfs_principal varchar2(32767),
data_node_principal varchar2(32767),
name_node_principal varchar2(32767),
realm varchar2(32767),
key_distribution_center varchar2(32767),
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_hdfs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_hdfs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
hdfs_principal varchar2,
data_node_principal varchar2,
name_node_principal varchar2,
realm varchar2,
key_distribution_center varchar2,
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_hdfs_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
hdfs_principal
(required) The HDFS principal.
data_node_principal
(required) The HDFS Data Node principal.
name_node_principal
(required) The HDFS Name Node principal.
realm
(optional) HDFS Realm name.
key_distribution_center
(optional) The HDFS Key Distribution Center.
key_tab_content
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_JDBC_T Type 🔗
The connection details for a generic JDBC data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_LAKE_T Type 🔗
The connection summary details for a Lake connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_lake_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_lake_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_lake_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_lake_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_MY_SQL_T Type 🔗
The connection details for a MYSQL data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
The connection details for a MYSQL HeatWave data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_ORACLE_T Type 🔗
The connection summary details for an Oracle Database data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_oracle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_oracle_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_ORACLE_EBS_T Type 🔗
The connection summary details for E-Business Suite data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_oracle_ebs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_ebs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_ebs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_oracle_ebs_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_ORACLE_PEOPLE_SOFT_T Type 🔗
The connection summary details for an Oracle PeopleSoft data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_oracle_people_soft_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_people_soft_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_people_soft_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_oracle_people_soft_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_ORACLE_SIEBEL_T Type 🔗
The connection summary details for an Oracle Siebel data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_oracle_siebel_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_siebel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_oracle_siebel_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_oracle_siebel_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_REST_BASIC_AUTH_T Type 🔗
The connection summary for a basic auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_rest_basic_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_rest_basic_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_rest_basic_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_rest_basic_auth_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
Fields
Field
Description
username
(optional) Username for the connection.
password_secret
(optional)
auth_header
(optional) Optional header name if used other than default header(Authorization).
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_SUMMARY_FROM_REST_NO_AUTH_T Type 🔗
The connection summary for a no auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_summary_from_rest_no_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_connection_summary_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_rest_no_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_summary_from_rest_no_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
primary_schema dbms_cloud_oci_dataintegration_schema_t,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
is_default number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_connection_summary_from_rest_no_auth_t is a subtype of the dbms_cloud_oci_dataintegration_connection_summary_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_MESSAGE_T Type 🔗
The details of a message.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_message_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_message_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_message_t (
l_type varchar2,
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_type
(required) The type of message (error, warning, or info).
Allowed values are: 'ERROR', 'WARNING', 'INFO'
code
(required) The message code.
message
(required) The message text.
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_VALIDATION_T Type 🔗
The information about connection validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
validation_message dbms_cloud_oci_dataintegration_message_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_validation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_validation_t (
validation_message dbms_cloud_oci_dataintegration_message_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
validation_message
(optional)
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_VALIDATION_SUMMARY_T Type 🔗
The information about connection validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_validation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
validation_message dbms_cloud_oci_dataintegration_message_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_validation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_validation_summary_t (
validation_message dbms_cloud_oci_dataintegration_message_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
validation_message
(optional)
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_VALIDATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_connection_validation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_validation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_connection_validation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CONNECTION_VALIDATION_SUMMARY_COLLECTION_T Type 🔗
A list of connection validation summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_connection_validation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_connection_validation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_validation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_connection_validation_summary_collection_t (
items dbms_cloud_oci_dataintegration_connection_validation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) An array of connection validation summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_COPY_CONFLICT_RESOLUTION_T Type 🔗
Copy Object Conflict resolution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_copy_conflict_resolution_t FORCE AUTHID CURRENT_USER IS OBJECT (
duplicate_prefix varchar2(32767),
duplicate_suffix varchar2(32767),
request_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_copy_conflict_resolution_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_copy_conflict_resolution_t (
duplicate_prefix varchar2,
duplicate_suffix varchar2,
request_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
duplicate_prefix
(optional) In case of DUPLICATE mode, this prefix will be used to disambiguate the object.
duplicate_suffix
(optional) In case of DUPLICATE mode, this suffix will be used to disambiguate the object.
request_type
(required) Copy Object Conflict Resolution Type (RETAIN/DUPLICATE/REPLACE).
DBMS_CLOUD_OCI_DATAINTEGRATION_COPY_OBJECT_METADATA_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_copy_object_metadata_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_copy_object_metadata_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_copy_object_metadata_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_COPY_OBJECT_REQUEST_T Type 🔗
Copy metadata object request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_copy_object_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
source_workspace_id varchar2(32767),
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
copy_conflict_resolution dbms_cloud_oci_dataintegration_copy_conflict_resolution_t,
copy_metadata_object_request_status varchar2(32767),
created_by varchar2(32767),
created_by_name varchar2(32767),
total_source_object_count number,
total_objects_copied_into_target number,
time_started_in_millis number,
time_ended_in_millis number,
copied_items dbms_cloud_oci_dataintegration_copy_object_metadata_summary_tbl,
referenced_items dbms_cloud_oci_dataintegration_copy_object_metadata_summary_tbl,
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_copy_object_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_copy_object_request_t (
key varchar2,
source_workspace_id varchar2,
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
copy_conflict_resolution dbms_cloud_oci_dataintegration_copy_conflict_resolution_t,
copy_metadata_object_request_status varchar2,
created_by varchar2,
created_by_name varchar2,
total_source_object_count number,
total_objects_copied_into_target number,
time_started_in_millis number,
time_ended_in_millis number,
copied_items dbms_cloud_oci_dataintegration_copy_object_metadata_summary_tbl,
referenced_items dbms_cloud_oci_dataintegration_copy_object_metadata_summary_tbl,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Copy object request key.
source_workspace_id
(optional) The workspace id of the source from where we need to copy object.
(optional) OCID of the user who initiated copy request.
created_by_name
(optional) Name of the user who created the copy object request.
total_source_object_count
(optional) Number of source objects to be copied.
total_objects_copied_into_target
(optional) Number of objects copied into the target.
time_started_in_millis
(optional) Time at which the request started getting processed.
time_ended_in_millis
(optional) Time at which the request was completely processed.
copied_items
(optional) The array of copy object details.
referenced_items
(optional) The array of copied referenced objects.
name
(optional) Name of the copy object request.
DBMS_CLOUD_OCI_DATAINTEGRATION_COPY_OBJECT_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_copy_object_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_copy_object_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_copy_object_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_COPY_OBJECT_REQUEST_SUMMARY_COLLECTION_T Type 🔗
This is the collection of copy object requests.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_copy_object_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_copy_object_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_copy_object_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_copy_object_request_summary_collection_t (
items dbms_cloud_oci_dataintegration_copy_object_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of copy object requests status summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_SOURCE_APPLICATION_INFO_T Type 🔗
The information about the application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_source_application_info_t FORCE AUTHID CURRENT_USER IS OBJECT (
workspace_id varchar2(32767),
application_key varchar2(32767),
copy_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_source_application_info_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_source_application_info_t (
workspace_id varchar2,
application_key varchar2,
copy_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
workspace_id
(optional) The OCID of the workspace containing the application. This allows cross workspace deployment to publish an application from a different workspace into the current workspace specified in this operation.
application_key
(optional) The source application key to use when creating the application.
copy_type
(optional) Parameter to specify the link between SOURCE and TARGET application after copying. CONNECTED - Indicate that TARGET application is conneced to SOURCE and can be synced after copy. DISCONNECTED - Indicate that TARGET application is not conneced to SOURCE and can evolve independently.
Allowed values are: 'CONNECTED', 'DISCONNECTED'
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_APPLICATION_DETAILS_T Type 🔗
Properties used in application create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_application_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
model_type varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
source_application_info dbms_cloud_oci_dataintegration_create_source_application_info_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_application_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_application_details_t (
key varchar2,
model_version varchar2,
model_type varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
source_application_info dbms_cloud_oci_dataintegration_create_source_application_info_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Currently not used on application creation. Reserved for future.
model_version
(optional) The object's model version.
model_type
(optional) The type of the application.
Allowed values are: 'INTEGRATION_APPLICATION'
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONFIG_PROVIDER_T Type 🔗
The type to create a config provider.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_config_provider_t FORCE AUTHID CURRENT_USER IS OBJECT (
bindings json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_config_provider_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_config_provider_t (
bindings json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bindings
(optional) bindings
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_DETAILS_T Type 🔗
Properties used in connection create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify connection. On scenarios where reference to the connection is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) User-defined description for the connection.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
connection_properties
(optional) The properties for the connection.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_ADWC_T Type 🔗
The details to create an Autonomous Data Warehouse data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_adwc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_adwc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_adwc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_adwc_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Data Warehouse instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_AMAZON_S3_T Type 🔗
The details to create a Amazon S3 connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_amazon_s3_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_amazon_s3_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_amazon_s3_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_amazon_s3_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
access_key
(optional)
secret_key
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_ATP_T Type 🔗
The details to create an Autonomous Transaction Processing data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_atp_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_atp_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_atp_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_atp_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Transaction Processing instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_BICC_T Type 🔗
The connection summary details for a FUSION_APP BICC connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_bicc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_bicc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_bicc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_bicc_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
default_external_storage
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_BIP_T Type 🔗
The details to create a Fusion applications BIP connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_bip_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_bip_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_bip_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_bip_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_HDFS_T Type 🔗
The details to create the HDFS data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_hdfs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
hdfs_principal varchar2(32767),
data_node_principal varchar2(32767),
name_node_principal varchar2(32767),
realm varchar2(32767),
key_distribution_center varchar2(32767),
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_hdfs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_hdfs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
hdfs_principal varchar2,
data_node_principal varchar2,
name_node_principal varchar2,
realm varchar2,
key_distribution_center varchar2,
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_hdfs_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
hdfs_principal
(required) The HDFS principal.
data_node_principal
(required) The HDFS Data Node principal.
name_node_principal
(required) The HDFS Name Node principal.
realm
(optional) HDFS Realm name.
key_distribution_center
(optional) The HDFS Key Distribution Center.
key_tab_content
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_JDBC_T Type 🔗
The details to create a generic JDBC data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_LAKE_T Type 🔗
The details to create a Lake connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_lake_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_lake_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_lake_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_lake_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_MY_SQL_T Type 🔗
The details to create a MYSQL data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
The details to create a MYSQL HeatWave data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_OBJECT_STORAGE_T Type 🔗
The details to create an Oracle Object Storage data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
credential_file_content varchar2(32767),
user_id varchar2(32767),
finger_print varchar2(32767),
pass_phrase varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_object_storage_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
credential_file_content varchar2,
user_id varchar2,
finger_print varchar2,
pass_phrase varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_object_storage_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
credential_file_content
(optional) The credential file content from an Oracle Object Storage wallet.
user_id
(optional) The OCI user OCID for the user to connect to.
finger_print
(optional) The fingerprint for the user.
pass_phrase
(optional) The passphrase for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_ORACLE_T Type 🔗
The details to create an Oracle Database data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_oracle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_oracle_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_ORACLE_EBS_T Type 🔗
The details to create E-Business Suite data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_oracle_ebs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_ebs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_ebs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_oracle_ebs_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_ORACLE_PEOPLE_SOFT_T Type 🔗
The details to create an Oracle PeopleSoft data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_oracle_people_soft_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_people_soft_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_people_soft_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_oracle_people_soft_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_ORACLE_SIEBEL_T Type 🔗
The details to create an Oracle Siebel data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_oracle_siebel_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_siebel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_oracle_siebel_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_oracle_siebel_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_REST_BASIC_AUTH_T Type 🔗
The details to create a basic auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_rest_basic_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_rest_basic_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_rest_basic_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_rest_basic_auth_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
Fields
Field
Description
username
(required) Username for the connection.
password_secret
(required)
auth_header
(optional) Optional header name if used other than default header(Authorization).
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_FROM_REST_NO_AUTH_T Type 🔗
The details to create a no auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_from_rest_no_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_connection_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_rest_no_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_from_rest_no_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_connection_from_rest_no_auth_t is a subtype of the dbms_cloud_oci_dataintegration_create_connection_details_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_DETAILS_T Type 🔗
Properties used in data asset update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
external_key varchar2(32767),
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Currently not used on data asset creation. Reserved for future.
model_version
(optional) The model version of an object.
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) User-defined description of the data asset.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
external_key
(optional) The external key for the object.
asset_properties
(optional) Additional properties for the data asset.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_CONNECTION_VALIDATION_DETAILS_T Type 🔗
The properties used in create connection validation operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_connection_validation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
data_asset dbms_cloud_oci_dataintegration_create_data_asset_details_t,
connection dbms_cloud_oci_dataintegration_create_connection_details_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_validation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_connection_validation_details_t (
data_asset dbms_cloud_oci_dataintegration_create_data_asset_details_t,
connection dbms_cloud_oci_dataintegration_create_connection_details_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
data_asset
(optional)
connection
(optional)
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_COPY_OBJECT_REQUEST_DETAILS_T Type 🔗
Details of copy object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_copy_object_request_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
source_workspace_id varchar2(32767),
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
copy_conflict_resolution dbms_cloud_oci_dataintegration_copy_conflict_resolution_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_copy_object_request_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_copy_object_request_details_t (
source_workspace_id varchar2,
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
copy_conflict_resolution dbms_cloud_oci_dataintegration_copy_conflict_resolution_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
source_workspace_id
(required) The workspace id of the source from where we need to copy object.
object_keys
(required) The list of the objects to be copied.
copy_conflict_resolution
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_ADWC_T Type 🔗
Details for the Autonomous Data Warehouse data asset type.
dbms_cloud_oci_dataintegration_create_data_asset_from_atp_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
service_name
(optional) The Autonomous Transaction Processing instance service name.
driver_class
(optional) The Autonomous Transaction Processing driver class.
credential_file_content
(optional) The credential file content from an Autonomous Transaction Processing wallet.
wallet_secret
(optional)
wallet_password_secret
(optional)
region_id
(optional) The Autonomous Data Warehouse instance region Id.
tenancy_id
(optional) The Autonomous Data Warehouse instance tenancy Id.
compartment_id
(optional) The Autonomous Data Warehouse instance compartment Id.
autonomous_db_id
(optional) Tha Autonomous Database Id
default_connection
(optional)
staging_data_asset
(optional)
staging_connection
(optional)
bucket_schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_FUSION_APP_T Type 🔗
Details for the FUSION_APP data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_fusion_app_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
service_url varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_create_connection_details_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_fusion_app_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_fusion_app_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
service_url varchar2,
default_connection dbms_cloud_oci_dataintegration_create_connection_details_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_fusion_app_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
service_url
(optional) The generic JDBC host name.
default_connection
(optional)
staging_data_asset
(optional)
staging_connection
(optional)
bucket_schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_HDFS_T Type 🔗
Details for the HDFS data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_hdfs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
protocol varchar2(32767),
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_hdfs_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_hdfs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_hdfs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
protocol varchar2,
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_hdfs_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_hdfs_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(required) The HDFS hostname.
port
(required) The HDFS port.
protocol
(required) The HDFS Protocol name.
validate_certificate
(optional) Specifies whether certificate validation is needed
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_JDBC_T Type 🔗
Details for the generic JDBC data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
data_asset_type varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_create_connection_from_jdbc_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
data_asset_type varchar2,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_jdbc_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
data_asset_type
(optional) The data asset type for the generic JDBC data asset.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_LAKE_T Type 🔗
Details for the Lake data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_lake_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
lake_id varchar2(32767),
metastore_id varchar2(32767),
lake_proxy_endpoint varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_create_connection_from_lake_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_lake_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_lake_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
lake_id varchar2,
metastore_id varchar2,
lake_proxy_endpoint varchar2,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_lake_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_lake_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
lake_id
(required) The Lake Ocid.
metastore_id
(optional) The metastoreId for the specified Lake Resource.
lake_proxy_endpoint
(optional) The lakeProxyEndpoint for the specified Lake Resource.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_MY_SQL_T Type 🔗
Details for the MYSQL data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_create_connection_from_my_sql_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_my_sql_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
service_name
(optional) The generic JDBC service name for the database.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
Details for the MYSQL HeatWave data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_create_connection_from_my_sql_heat_wave_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_my_sql_heat_wave_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(required) The MySql HeatWave host name.
port
(required) The MySql HeatWave port number.
service_name
(optional) The MySql HeatWave service name for the database.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_OBJECT_STORAGE_T Type 🔗
Details for the Oracle Object storage data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
oci_region varchar2(32767),
url varchar2(32767),
tenancy_id varchar2(32767),
namespace varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_create_connection_from_object_storage_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_object_storage_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
oci_region varchar2,
url varchar2,
tenancy_id varchar2,
namespace varchar2,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_object_storage_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_object_storage_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
oci_region
(optional) The Oracle Object storage Region ie. us-ashburn-1
url
(optional) The Oracle Object storage URL.
tenancy_id
(optional) The OCI tenancy OCID.
namespace
(optional) The namespace for the specified Oracle Object storage resource. You can find the namespace under Object Storage Settings in the Console.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_ORACLE_T Type 🔗
Details for the Oracle Database data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
credential_file_content varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
credential_file_content varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(optional) The Oracle Database hostname.
port
(optional) The Oracle Database port.
service_name
(optional) The service name for the data asset.
driver_class
(optional) The Oracle Database driver class.
sid
(optional) The Oracle Database SID.
credential_file_content
(optional) The credential file content from a wallet for the data asset.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_ORACLE_EBS_T Type 🔗
Details for the E-Business Suite data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_ebs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_ebs_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_ebs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_ebs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_ebs_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_ebs_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(required) The Oracle EBS hostname.
port
(required) The Oracle EBS port.
service_name
(optional) The service name for the data asset.
driver_class
(optional) The Oracle EBS driver class.
sid
(optional) The Oracle EBS SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_ORACLE_PEOPLE_SOFT_T Type 🔗
Details for the Oracle PeopleSoft data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_people_soft_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_people_soft_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_people_soft_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_people_soft_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_people_soft_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_people_soft_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(required) The Oracle PeopleSoft hostname.
port
(required) The Oracle PeopleSoft port.
service_name
(optional) The service name for the data asset.
driver_class
(optional) The Oracle PeopleSoft driver class.
sid
(optional) The Oracle PeopleSoft SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_ORACLE_SIEBEL_T Type 🔗
Details for the Oracle Siebel data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_siebel_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_siebel_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_siebel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_siebel_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_create_connection_from_oracle_siebel_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_oracle_siebel_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
host
(required) The Oracle Siebel hostname.
port
(required) The Oracle Siebel port.
service_name
(optional) The service name for the data asset.
driver_class
(optional) The Oracle Siebel driver class.
sid
(optional) The Oracle Siebel SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_ASSET_FROM_REST_T Type 🔗
Details to create Rest data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_asset_from_rest_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_data_asset_details_t (
base_url varchar2(32767),
manifest_file_content varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_create_connection_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_rest_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_asset_from_rest_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
base_url varchar2,
manifest_file_content varchar2,
default_connection dbms_cloud_oci_dataintegration_create_connection_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_data_asset_from_rest_t is a subtype of the dbms_cloud_oci_dataintegration_create_data_asset_details_t type.
Fields
Field
Description
base_url
(required) The base url of the rest server.
manifest_file_content
(required) The manifest file content of the rest APIs.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_INPUT_LINK_T Type 🔗
Details about the incoming data to an operator in a data flow design.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_input_link_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_flow_port_link_t (
from_link varchar2(32767),
field_map dbms_cloud_oci_dataintegration_field_map_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_link_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_link_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
description varchar2,
port varchar2,
from_link varchar2,
field_map dbms_cloud_oci_dataintegration_field_map_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_input_link_t is a subtype of the dbms_cloud_oci_dataintegration_flow_port_link_t type.
Fields
Field
Description
from_link
(optional) The from link reference.
field_map
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UI_PROPERTIES_T Type 🔗
The UI properties of the object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_ui_properties_t FORCE AUTHID CURRENT_USER IS OBJECT (
coordinate_x number,
coordinate_y number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_ui_properties_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_ui_properties_t (
coordinate_x number,
coordinate_y number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
coordinate_x
(optional) The X coordinate of the object.
coordinate_y
(optional) The Y coordinate of the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_INPUT_LINK_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_input_link_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_input_link_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_input_link_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_OUTPUT_LINK_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_output_link_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_output_link_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_output_link_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_FLOW_NODE_T Type 🔗
The flow node can be connected to other nodes in a data flow with input and output links and is bound to an opertor which defines the semantics of the node.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flow_node_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
input_links dbms_cloud_oci_dataintegration_input_link_tbl,
output_links dbms_cloud_oci_dataintegration_output_link_tbl,
operator dbms_cloud_oci_dataintegration_operator_t,
ui_properties dbms_cloud_oci_dataintegration_ui_properties_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flow_node_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flow_node_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
input_links dbms_cloud_oci_dataintegration_input_link_tbl,
output_links dbms_cloud_oci_dataintegration_output_link_tbl,
operator dbms_cloud_oci_dataintegration_operator_t,
ui_properties dbms_cloud_oci_dataintegration_ui_properties_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
input_links
(optional) An array of input links.
output_links
(optional) An array of output links.
operator
(optional)
ui_properties
(optional)
config_provider_delegate
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_FLOW_NODE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_flow_node_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flow_node_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_flow_node_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_FLOW_DETAILS_T Type 🔗
Properties used in data flow create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_flow_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2(32767),
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_flow_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_flow_details_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
nodes
(optional) An array of nodes.
parameters
(optional) An array of parameters.
description
(optional) Detailed description for the object.
flow_config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
registry_metadata
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPED_OBJECT_WRAPPER_T Type 🔗
A wrapper for a typed object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_typed_object_wrapper_t FORCE AUTHID CURRENT_USER IS OBJECT (
typed_object dbms_cloud_oci_dataintegration_typed_object_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_object_wrapper_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_object_wrapper_t (
typed_object dbms_cloud_oci_dataintegration_typed_object_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
typed_object
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_FIELD_MAP_WRAPPER_T Type 🔗
A wrapper for a field map.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_field_map_wrapper_t FORCE AUTHID CURRENT_USER IS OBJECT (
field_map dbms_cloud_oci_dataintegration_field_map_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_field_map_wrapper_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_field_map_wrapper_t (
field_map dbms_cloud_oci_dataintegration_field_map_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
field_map
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DATA_FLOW_VALIDATION_DETAILS_T Type 🔗
The properties used in create dataflow validation operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_data_flow_validation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2(32767),
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
typed_object_map json_element_t,
target_field_map_summary json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_flow_validation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_data_flow_validation_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
typed_object_map json_element_t,
target_field_map_summary json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
nodes
(optional) An array of nodes.
parameters
(optional) An array of parameters.
description
(optional) Detailed description for the object.
flow_config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
typed_object_map
(optional) A hash map that maps TypedObject keys to the object itself, for java sdk.
target_field_map_summary
(optional) A hash map that maps TypedObject keys to a field map that maps to the typed object as a target, for java sdk.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DETAILED_DESCRIPTION_DETAILS_T Type 🔗
Properties used in detailed description create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_detailed_description_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
logo varchar2(32767),
detailed_description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_detailed_description_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_detailed_description_details_t (
logo varchar2,
detailed_description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
logo
(optional) Base64 encoded image to represent logo of the object.
detailed_description
(optional) Base64 encoded rich text description of the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_DIS_APPLICATION_DETAILS_T Type 🔗
Properties used in application create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_dis_application_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
model_type varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
source_application_info dbms_cloud_oci_dataintegration_create_source_application_info_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_dis_application_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_dis_application_details_t (
compartment_id varchar2,
key varchar2,
model_version varchar2,
model_type varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
source_application_info dbms_cloud_oci_dataintegration_create_source_application_info_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
key
(optional) Currently not used on application creation. Reserved for future.
model_version
(optional) The object's model version.
model_type
(optional) The type of the application.
Allowed values are: 'INTEGRATION_APPLICATION'
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_ENTITY_SHAPE_DETAILS_T Type 🔗
The data entity shape object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_entity_shape_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_details_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_shape_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
l_type dbms_cloud_oci_dataintegration_base_type_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_shape_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_shape_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
l_type dbms_cloud_oci_dataintegration_base_type_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_shape_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
l_type
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DERIVED_TYPE_T Type 🔗
A `DerivedType` object represents a more complex type that is derived from a set of simple types, for example an `Address` or `SSN` data type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_derived_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_derived_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_derived_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_derived_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPE_LIBRARY_T Type 🔗
The Data Integration type library container type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_type_library_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
types json_element_t,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_type_library_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_type_library_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
types json_element_t,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
types
(optional) types
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_NATIVE_SHAPE_FIELD_T Type 🔗
The native shape field object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_native_shape_field_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
model_type varchar2(32767),
l_type json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
position number,
default_value_string varchar2(32767),
is_mandatory number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_native_shape_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_native_shape_field_t (
name varchar2,
model_type varchar2,
l_type json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
position number,
default_value_string varchar2,
is_mandatory number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
model_type
(optional) The model type reference.
l_type
(optional) The type reference.
config_values
(optional)
position
(optional) The position of the attribute.
default_value_string
(optional) The default value.
is_mandatory
(optional) Specifies whether the field is mandatory.
DBMS_CLOUD_OCI_DATAINTEGRATION_SHAPE_FIELD_T Type 🔗
The shape field object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_shape_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
l_type json_element_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
native_shape_field dbms_cloud_oci_dataintegration_native_shape_field_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_shape_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_shape_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
l_type json_element_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
native_shape_field dbms_cloud_oci_dataintegration_native_shape_field_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_shape_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
l_type
(optional) The reference to the type.
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows etc. You can define your own labels and use them to categorize content.
native_shape_field
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_KEY_ATTRIBUTE_T Type 🔗
An attribute within a key, the attribute property is being deprecated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_key_attribute_t FORCE AUTHID CURRENT_USER IS OBJECT (
position number,
shape_field dbms_cloud_oci_dataintegration_shape_field_t,
attribute dbms_cloud_oci_dataintegration_shape_field_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_attribute_t (
position number,
shape_field dbms_cloud_oci_dataintegration_shape_field_t,
attribute dbms_cloud_oci_dataintegration_shape_field_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
position
(optional) The position of the attribute.
shape_field
(optional)
attribute
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_KEY_ATTRIBUTE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_key_attribute_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_key_attribute_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_key_attribute_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_UNIQUE_KEY_T Type 🔗
The unqique key object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_unique_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
attribute_refs dbms_cloud_oci_dataintegration_key_attribute_tbl,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_unique_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_unique_key_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
attribute_refs dbms_cloud_oci_dataintegration_key_attribute_tbl,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The key type.
Allowed values are: 'PRIMARY_KEY', 'UNIQUE_KEY'
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
attribute_refs
(optional) An array of attribute references.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_KEY_T Type 🔗
The key object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The key type.
Allowed values are: 'FOREIGN_KEY'
DBMS_CLOUD_OCI_DATAINTEGRATION_FOREIGN_KEY_T Type 🔗
The foreign key object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_foreign_key_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_key_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
attribute_refs dbms_cloud_oci_dataintegration_key_attribute_tbl,
update_rule number,
delete_rule number,
reference_unique_key dbms_cloud_oci_dataintegration_unique_key_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_foreign_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_foreign_key_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
attribute_refs dbms_cloud_oci_dataintegration_key_attribute_tbl,
update_rule number,
delete_rule number,
reference_unique_key dbms_cloud_oci_dataintegration_unique_key_t,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_foreign_key_t is a subtype of the dbms_cloud_oci_dataintegration_key_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
attribute_refs
(optional) An array of attribute references.
update_rule
(optional) The update rule.
delete_rule
(optional) The delete rule.
reference_unique_key
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FORMAT_T Type 🔗
The data format object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_format_t FORCE AUTHID CURRENT_USER IS OBJECT (
format_attribute dbms_cloud_oci_dataintegration_abstract_format_attribute_t,
l_type varchar2(32767),
compression_config dbms_cloud_oci_dataintegration_compression_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_format_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_format_t (
format_attribute dbms_cloud_oci_dataintegration_abstract_format_attribute_t,
l_type varchar2,
compression_config dbms_cloud_oci_dataintegration_compression_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_UNIQUE_KEY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_unique_key_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_unique_key_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_unique_key_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_FOREIGN_KEY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_foreign_key_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_foreign_key_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_foreign_key_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_ENTITY_SHAPE_FROM_FILE_T Type 🔗
The file data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_entity_shape_from_file_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_entity_shape_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_from_file_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_from_file_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_entity_shape_from_file_t is a subtype of the dbms_cloud_oci_dataintegration_create_entity_shape_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_ENTITY_SHAPE_FROM_OBJECT_T Type 🔗
The application object entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_entity_shape_from_object_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_entity_shape_details_t (
key varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_from_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_from_object_t (
model_type varchar2,
key varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_entity_shape_from_object_t is a subtype of the dbms_cloud_oci_dataintegration_create_entity_shape_details_t type.
Fields
Field
Description
key
(optional) The object key.
parent_ref
(optional)
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_ENTITY_SHAPE_FROM_SQL_T Type 🔗
The SQL entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_entity_shape_from_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_entity_shape_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
sql_query varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_from_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_entity_shape_from_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2,
sql_query varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_entity_shape_from_sql_t is a subtype of the dbms_cloud_oci_dataintegration_create_entity_shape_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
sql_query
(optional) sqlQuery
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_EXPORT_REQUEST_DETAILS_T Type 🔗
Details of export request. Export is supported using three ways. First, when objectKeys are provided, export of those objects take place. Second, when filter are provided, all the objects based on the filter provided are exported. Third, when neither objectKeys nor filters are provided, we export all the design objects for the workspace.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_export_request_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
bucket_name varchar2(32767),
file_name varchar2(32767),
object_storage_tenancy_id varchar2(32767),
object_storage_region varchar2(32767),
is_object_overwrite_enabled number,
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
are_references_included number,
filters dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_export_request_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_export_request_details_t (
bucket_name varchar2,
file_name varchar2,
object_storage_tenancy_id varchar2,
object_storage_region varchar2,
is_object_overwrite_enabled number,
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
are_references_included number,
filters dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bucket_name
(required) Name of the Object Storage bucket where the object will be exported.
file_name
(optional) Name of the exported zip file.
object_storage_tenancy_id
(optional) Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
object_storage_region
(optional) Region of the object storage (if using object storage of different region)
is_object_overwrite_enabled
(optional) Flag to control whether to overwrite the object if it is already present at the provided object storage location.
object_keys
(optional) Field is used to specify which object keys to export
are_references_included
(optional) This field controls if the references will be exported along with the objects
filters
(optional) Filters for exported objects
DBMS_CLOUD_OCI_DATAINTEGRATION_RESOURCE_CONFIGURATION_T Type 🔗
Properties related to a resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_resource_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
spark_version varchar2(32767),
driver_shape varchar2(32767),
executor_shape varchar2(32767),
total_executors number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_resource_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_resource_configuration_t (
spark_version varchar2,
driver_shape varchar2,
executor_shape varchar2,
total_executors number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
spark_version
(required) The version of the spark used while creating an Oracle Cloud Infrastructure Data Flow application.
driver_shape
(required) The VM shape of the driver used while creating an Oracle Cloud Infrastructure Data Flow application. It sets the driver cores and memory.
executor_shape
(required) The shape of the executor used while creating an Oracle Cloud Infrastructure Data Flow application. It sets the executor cores and memory.
total_executors
(required) Number of executor VMs requested while creating an Oracle Cloud Infrastructure Data Flow application.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_EXTERNAL_PUBLICATION_DETAILS_T Type 🔗
Properties used to publish an Oracle Cloud Infrastructure Data Flow object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_external_publication_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
application_id varchar2(32767),
application_compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
resource_configuration dbms_cloud_oci_dataintegration_resource_configuration_t,
configuration_details dbms_cloud_oci_dataintegration_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_external_publication_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_external_publication_details_t (
application_id varchar2,
application_compartment_id varchar2,
display_name varchar2,
description varchar2,
resource_configuration dbms_cloud_oci_dataintegration_resource_configuration_t,
configuration_details dbms_cloud_oci_dataintegration_configuration_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
application_id
(optional) The unique OCID of the identifier that is returned after creating the Oracle Cloud Infrastructure Data Flow application.
application_compartment_id
(required) The OCID of the compartment where the application is created in the Oracle Cloud Infrastructure Data Flow Service.
display_name
(required) The name of the application.
description
(optional) The details of the data flow or the application.
resource_configuration
(optional)
configuration_details
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_EXTERNAL_PUBLICATION_VALIDATION_DETAILS_T Type 🔗
The task type contains the audit summary information and the definition of the task that is published externally.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_external_publication_validation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_external_publication_validation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_external_publication_validation_details_t (
key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify the task. On scenarios where reference to the task is needed, a value can be passed in the create operation.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_FOLDER_DETAILS_T Type 🔗
The properties used in folder create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_folder_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_folder_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_folder_details_t (
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Currently not used on folder creation. Reserved for future.
model_version
(optional) The model version of an object.
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the folder.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
registry_metadata
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_FUNCTION_LIBRARY_DETAILS_T Type 🔗
The properties used in FunctionLibrary create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_function_library_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_function_library_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_function_library_details_t (
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Currently not used on FunctionLibrary creation. Reserved for future.
model_version
(optional) The model version of an object.
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the FunctionLibrary.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
registry_metadata
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_IMPORT_CONFLICT_RESOLUTION_T Type 🔗
Import Objects Conflict resolution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_import_conflict_resolution_t FORCE AUTHID CURRENT_USER IS OBJECT (
duplicate_prefix varchar2(32767),
duplicate_suffix varchar2(32767),
import_conflict_resolution_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_conflict_resolution_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_conflict_resolution_t (
duplicate_prefix varchar2,
duplicate_suffix varchar2,
import_conflict_resolution_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
duplicate_prefix
(optional) In case of DUPLICATE mode, prefix will be used to disambiguate the object.
duplicate_suffix
(optional) In case of DUPLICATE mode, suffix will be used to disambiguate the object.
import_conflict_resolution_type
(required) Import Objects Conflict resolution Type (RETAIN/DUPLICATE/REPLACE).
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_IMPORT_REQUEST_DETAILS_T Type 🔗
Details of import object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_import_request_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
bucket_name varchar2(32767),
file_name varchar2(32767),
object_storage_tenancy_id varchar2(32767),
object_storage_region varchar2(32767),
object_key_for_import varchar2(32767),
import_conflict_resolution dbms_cloud_oci_dataintegration_import_conflict_resolution_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_import_request_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_import_request_details_t (
bucket_name varchar2,
file_name varchar2,
object_storage_tenancy_id varchar2,
object_storage_region varchar2,
object_key_for_import varchar2,
import_conflict_resolution dbms_cloud_oci_dataintegration_import_conflict_resolution_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
bucket_name
(required) Name of the Object Storage bucket where the object will be imported from.
file_name
(required) Name of the zip file to be imported.
object_storage_tenancy_id
(optional) Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
object_storage_region
(optional) Region of the object storage (if using object storage of different region)
object_key_for_import
(optional) Key of the object inside which all the objects will be imported
import_conflict_resolution
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_PATCH_DETAILS_T Type 🔗
Properties used in patch create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_patch_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
patch_type varchar2(32767),
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_patch_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_patch_details_t (
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
patch_type varchar2,
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object's key.
model_version
(optional) The object's model version.
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
patch_type
(required) The type of the patch applied or being applied on the application.
(required) The array of object keys to publish into application.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ROOT_OBJECT_T Type 🔗
A base class for all model types, including First Class and its contained objects.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_root_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_root_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_root_object_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_VARIABLE_T Type 🔗
Variable definitions in the pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_variable_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
model_type varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
l_type dbms_cloud_oci_dataintegration_base_type_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
default_value json_element_t,
root_object_default_value dbms_cloud_oci_dataintegration_root_object_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_variable_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_variable_t (
key varchar2,
model_version varchar2,
model_type varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
l_type dbms_cloud_oci_dataintegration_base_type_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
default_value json_element_t,
root_object_default_value dbms_cloud_oci_dataintegration_root_object_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify variable. On scenarios where reference to the variable is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
l_type
(optional)
config_values
(optional)
default_value
(optional) A default value for the vairable.
root_object_default_value
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_VARIABLE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_variable_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_variable_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_variable_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_PIPELINE_DETAILS_T Type 🔗
Properties used in pipeline create operations
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_pipeline_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
model_type varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_pipeline_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_pipeline_details_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
model_type varchar2,
object_version number,
object_status number,
identifier varchar2,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify pipeline. On scenarios where reference to the pipeline is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
model_type
(optional) The type of the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
nodes
(optional) A list of nodes attached to the pipeline
parameters
(optional) A list of additional parameters required in pipeline.
flow_config_values
(optional)
variables
(optional) The list of variables required in pipeline.
registry_metadata
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_PIPELINE_VALIDATION_DETAILS_T Type 🔗
The properties used in create pipeline validation operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_pipeline_validation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
model_type varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_pipeline_validation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_pipeline_validation_details_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
model_type varchar2,
object_version number,
object_status number,
identifier varchar2,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify pipeline. On scenarios where reference to the pipeline is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
model_type
(optional) The type of the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
nodes
(optional) A list of nodes attached to the pipeline.
parameters
(optional) A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
flow_config_values
(optional)
variables
(optional) The list of variables required in pipeline, variables can be used to store values that can be used as inputs to tasks in the pipeline.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_PROJECT_DETAILS_T Type 🔗
The properties used in project create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_project_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
key varchar2(32767),
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_project_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_project_details_t (
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
key varchar2,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
model_version
(optional) The model version of an object.
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the project.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
key
(optional) Generated key that can be used in API calls to identify project.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_SCHEDULE_DETAILS_T Type 🔗
The details for creating a schedule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_schedule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2(32767),
is_daylight_adjustment_enabled number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_schedule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_schedule_details_t (
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2,
is_daylight_adjustment_enabled number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
frequency_details
(optional)
timezone
(optional) The timezone for the schedule.
is_daylight_adjustment_enabled
(optional) A flag to indicate whether daylight adjustment should be considered or not.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_OUTPUT_PORT_T Type 🔗
The output port details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_output_port_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
port_type varchar2(32767),
fields dbms_cloud_oci_dataintegration_typed_object_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_output_port_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_output_port_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
port_type varchar2,
fields dbms_cloud_oci_dataintegration_typed_object_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_output_port_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
port_type
(optional) The port details for the data asset.Type.
Allowed values are: 'DATA', 'CONTROL', 'MODEL'
fields
(optional) An array of fields.
DBMS_CLOUD_OCI_DATAINTEGRATION_OUTPUT_PORT_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_output_port_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_output_port_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_output_port_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_DETAILS_T Type 🔗
Properties used in task create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_create_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_create_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in create.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
is_concurrent_allowed
(optional) Whether the same task can be executed concurrently.
registry_metadata
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_T Type 🔗
The data flow type contains the audit summary information and the definition of the data flow.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2(32767),
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
typed_object_map json_element_t,
target_field_map_summary json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
typed_object_map json_element_t,
target_field_map_summary json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
nodes
(optional) An array of nodes.
parameters
(optional) An array of parameters.
description
(optional) Detailed description for the object.
flow_config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
typed_object_map
(optional) A hash map that maps TypedObject keys to the object itself, for java sdk.
target_field_map_summary
(optional) A hash map that maps TypedObject keys to a field map that maps to the typed object as a target, for java sdk.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_FROM_DATA_LOADER_TASK_T Type 🔗
The information about a data flow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_from_data_loader_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_details_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_data_loader_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_data_loader_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_create_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_from_data_loader_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_details_t type.
Fields
Field
Description
data_flow
(optional)
conditional_composite_field_map
(optional)
is_single_load
(optional) Defines whether Data Loader task is used for single load or multiple
parallel_load_limit
(optional) Defines the number of entities being loaded in parallel at a time for a Data Loader task
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_FROM_INTEGRATION_TASK_T Type 🔗
The information about the integration task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_from_integration_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_details_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_integration_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_integration_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_create_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_from_integration_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_details_t type.
Fields
Field
Description
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATAFLOW_APPLICATION_T Type 🔗
Minimum information required to recognize a Dataflow Application object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dataflow_application_t FORCE AUTHID CURRENT_USER IS OBJECT (
application_id varchar2(32767),
compartment_id varchar2(32767),
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dataflow_application_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dataflow_application_t (
application_id varchar2,
compartment_id varchar2,
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
application_id
(optional) The application id for which Oracle Cloud Infrastructure data flow task is to be created.
compartment_id
(optional) The compartmentId id under which Oracle Cloud Infrastructure dataflow application lies.
config_values
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SHAPE_DETAILS_T Type 🔗
OCI DataFlow Shape configuration. Use shapeOcpuParam and shapeMemoryParam config params for configuring number of OCPUs and memory in GBs respectively.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_shape_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_shape_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_shape_details_t (
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
config_values
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_FROM_OCI_DATAFLOW_TASK_T Type 🔗
The information about the OCI Dataflow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_from_oci_dataflow_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_details_t (
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_oci_dataflow_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_oci_dataflow_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_create_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_from_oci_dataflow_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_details_t type.
Fields
Field
Description
dataflow_application
(optional)
driver_shape_details
(optional)
executor_shape_details
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_T Type 🔗
A pipeline is a logical grouping of tasks that together perform a higher level operation. For example, a pipeline could contain a set of tasks that load and clean data, then execute a dataflow to analyze the data. The pipeline allows you to manage the activities as a unit instead of individually. Users can also schedule the pipeline instead of the tasks independently.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
model_type varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
model_type varchar2,
object_version number,
object_status number,
identifier varchar2,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify pipeline. On scenarios where reference to the pipeline is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
model_type
(optional) The type of the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
nodes
(optional) A list of nodes attached to the pipeline.
parameters
(optional) A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
flow_config_values
(optional)
variables
(optional) The list of variables required in pipeline, variables can be used to store values that can be used as inputs to tasks in the pipeline.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_FROM_PIPELINE_TASK_T Type 🔗
The information about the pipeline task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_from_pipeline_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_details_t (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_pipeline_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_pipeline_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_create_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_from_pipeline_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_details_t type.
Fields
Field
Description
pipeline
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_EXECUTE_REST_CALL_CONFIG_T Type 🔗
The REST API configuration for execution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_execute_rest_call_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
method_type varchar2(32767),
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_execute_rest_call_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_execute_rest_call_config_t (
method_type varchar2,
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_POLL_REST_CALL_CONFIG_T Type 🔗
The REST API configuration for polling.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_poll_rest_call_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
method_type varchar2(32767),
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_poll_rest_call_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_poll_rest_call_config_t (
method_type varchar2,
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPED_EXPRESSION_T Type 🔗
The expression that can be created, using the execute stage output in REST Task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_typed_expression_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
expression varchar2(32767),
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_expression_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_expression_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
expression varchar2,
l_type varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_typed_expression_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
expression
(optional) The expression string for the object.
l_type
(optional) The object type.
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPED_EXPRESSION_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_typed_expression_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_typed_expression_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_typed_expression_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_FROM_REST_TASK_T Type 🔗
The information about the Generic REST task. The endpoint and cancelEndpoint properties are deprecated, use the properties executeRestCallConfig, cancelRestCallConfig and pollRestCallConfig for execute, cancel and polling of the calls.
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_script_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_script_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_script_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_FROM_SQL_TASK_T Type 🔗
The information about the SQL task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_from_sql_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_details_t (
script dbms_cloud_oci_dataintegration_script_t,
sql_script_type varchar2(32767),
operation json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_sql_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_from_sql_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_create_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
script dbms_cloud_oci_dataintegration_script_t,
sql_script_type varchar2,
operation json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_from_sql_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_details_t type.
Fields
Field
Description
script
(optional)
sql_script_type
(optional) Indicates whether the task is invoking a custom SQL script or stored procedure.
(optional) Describes the shape of the execution result
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_RUN_DETAILS_T Type 🔗
The properties used in task run create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
config_provider dbms_cloud_oci_dataintegration_create_config_provider_t,
identifier varchar2(32767),
task_schedule_key varchar2(32767),
ref_task_run_id varchar2(32767),
re_run_type varchar2(32767),
step_id varchar2(32767),
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_run_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
config_provider dbms_cloud_oci_dataintegration_create_config_provider_t,
identifier varchar2,
task_schedule_key varchar2,
ref_task_run_id varchar2,
re_run_type varchar2,
step_id varchar2,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
config_provider
(optional)
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
task_schedule_key
(optional) Optional task schedule key reference.
ref_task_run_id
(optional) Reference Task Run Id to be used for re-run
re_run_type
(optional) Supported re-run types
Allowed values are: 'BEGINNING', 'FAILED', 'STEP'
step_id
(optional) Step Id for running from a certain step.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEDULE_T Type 🔗
The schedule object
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schedule_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
model_type varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2(32767),
is_daylight_adjustment_enabled number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schedule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schedule_t (
key varchar2,
model_version varchar2,
model_type varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2,
is_daylight_adjustment_enabled number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
frequency_details
(optional)
timezone
(optional) The timezone for the schedule.
is_daylight_adjustment_enabled
(optional) A flag to indicate daylight saving.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_SCHEDULE_DETAILS_T Type 🔗
The create task details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_schedule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
schedule_ref dbms_cloud_oci_dataintegration_schedule_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_enabled number,
number_of_retries number,
retry_delay number,
retry_delay_unit varchar2(32767),
start_time_millis number,
end_time_millis number,
is_concurrent_allowed number,
is_backfill_enabled number,
auth_mode varchar2(32767),
expected_duration number,
expected_duration_unit varchar2(32767),
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_schedule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_schedule_details_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
schedule_ref dbms_cloud_oci_dataintegration_schedule_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_enabled number,
number_of_retries number,
retry_delay number,
retry_delay_unit varchar2,
start_time_millis number,
end_time_millis number,
is_concurrent_allowed number,
is_backfill_enabled number,
auth_mode varchar2,
expected_duration number,
expected_duration_unit varchar2,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify taskSchedule. On scenarios where reference to the taskSchedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
schedule_ref
(optional)
config_provider_delegate
(optional)
is_enabled
(optional) Whether the task schedule is enabled.
number_of_retries
(optional) The number of retries.
retry_delay
(optional) The retry delay, the unit for measurement is in the property retry delay unit.
(optional) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in the create operation.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_VALIDATION_FROM_DATA_LOADER_TASK_T Type 🔗
The information about a data flow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_validation_from_data_loader_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_validation_details_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_validation_from_data_loader_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_validation_from_data_loader_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_validation_from_data_loader_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_validation_details_t type.
Fields
Field
Description
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_VALIDATION_FROM_INTEGRATION_TASK_T Type 🔗
The information about the integration task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_validation_from_integration_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_validation_details_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_validation_from_integration_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_validation_from_integration_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_validation_from_integration_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_validation_details_t type.
Fields
Field
Description
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_TASK_VALIDATION_FROM_PIPELINE_TASK_T Type 🔗
The information about a pipeline task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_task_validation_from_pipeline_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_create_task_validation_details_t (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_validation_from_pipeline_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_task_validation_from_pipeline_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_create_task_validation_from_pipeline_task_t is a subtype of the dbms_cloud_oci_dataintegration_create_task_validation_details_t type.
Fields
Field
Description
pipeline
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_SIGNATURE_T Type 🔗
The function signature can specify function paramaters and/or function return type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_signature_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
ret_type dbms_cloud_oci_dataintegration_configured_type_t,
arguments dbms_cloud_oci_dataintegration_typed_object_tbl,
description varchar2(32767),
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_signature_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_signature_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
ret_type dbms_cloud_oci_dataintegration_configured_type_t,
arguments dbms_cloud_oci_dataintegration_typed_object_tbl,
description varchar2,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
Allowed values are: 'DIS_FUNCTION_SIGNATURE'
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
ret_type
(optional)
arguments
(optional) An array of function arguments.
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_SIGNATURE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_function_signature_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_signature_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_function_signature_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_USER_DEFINED_FUNCTION_DETAILS_T Type 🔗
Properties used in user defined function create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_user_defined_function_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2(32767),
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_user_defined_function_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_user_defined_function_details_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify user defined function. On scenarios where reference to the user defined function is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(required) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(required) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
signatures
(optional) An array of function signature.
expr
(optional)
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
registry_metadata
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_USER_DEFINED_FUNCTION_VALIDATION_DETAILS_T Type 🔗
The properties used in create UserDefinedFunction validation operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_user_defined_function_validation_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2(32767),
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_user_defined_function_validation_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_user_defined_function_validation_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify user defined function. On scenarios where reference to the user defined function is needed, a value can be passed in create.
model_type
(optional) The type of the object.
Allowed values are: 'DIS_USER_DEFINED_FUNCTION'
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
signatures
(optional) An array of function signature.
expr
(optional)
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_CREATE_WORKSPACE_DETAILS_T Type 🔗
The information needed to create a new workspace.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_create_workspace_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
vcn_id varchar2(32767),
subnet_id varchar2(32767),
dns_server_ip varchar2(32767),
dns_server_zone varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
description varchar2(32767),
display_name varchar2(32767),
compartment_id varchar2(32767),
is_private_network_enabled number,
registry_id varchar2(32767),
endpoint_id varchar2(32767),
registry_name varchar2(32767),
registry_compartment_id varchar2(32767),
endpoint_name varchar2(32767),
endpoint_compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_workspace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_create_workspace_details_t (
vcn_id varchar2,
subnet_id varchar2,
dns_server_ip varchar2,
dns_server_zone varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
description varchar2,
display_name varchar2,
compartment_id varchar2,
is_private_network_enabled number,
registry_id varchar2,
endpoint_id varchar2,
registry_name varchar2,
registry_compartment_id varchar2,
endpoint_name varchar2,
endpoint_compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vcn_id
(optional) The OCID of the VCN the subnet is in.
subnet_id
(optional) The OCID of the subnet for customer connected databases.
dns_server_ip
(optional) The IP of the custom DNS.
dns_server_zone
(optional) The DNS zone of the custom DNS to use to resolve names.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
description
(optional) A user defined description for the workspace.
display_name
(required) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
compartment_id
(required) The OCID of the compartment containing the workspace.
is_private_network_enabled
(optional) Specifies whether the private network connection is enabled or disabled.
registry_id
(optional) DCMS Data Asset Registry ID to which the workspace is associated
endpoint_id
(optional) DCMS Private Endpoint ID associated with workspace if the pvt networking is enabled
registry_name
(optional) DCMS Data Asset Registry display name
registry_compartment_id
(optional) DCMS Data Asset Registry Compartment Identifier
DBMS_CLOUD_OCI_DATAINTEGRATION_CSV_FORMAT_ATTRIBUTE_T Type 🔗
The CSV format attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_csv_format_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_format_attribute_t (
encoding varchar2(32767),
escape_character varchar2(32767),
delimiter varchar2(32767),
quote_character varchar2(32767),
has_header number,
timestamp_format varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_csv_format_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_csv_format_attribute_t (
model_type varchar2,
is_file_pattern number,
encoding varchar2,
escape_character varchar2,
delimiter varchar2,
quote_character varchar2,
has_header number,
timestamp_format varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_csv_format_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_format_attribute_t type.
Fields
Field
Description
encoding
(optional) The encoding for the file.
escape_character
(optional) The escape character for the CSV format.
delimiter
(optional) The delimiter for the CSV format.
quote_character
(optional) The quote character for the CSV format.
has_header
(optional) Defines whether the file has a header row.
timestamp_format
(optional) Format for timestamp information.
DBMS_CLOUD_OCI_DATAINTEGRATION_CUSTOM_FREQUENCY_DETAILS_T Type 🔗
Frequency details model to set cron-based frequency
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_custom_frequency_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_frequency_details_t (
custom_expression varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_custom_frequency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_custom_frequency_details_t (
model_type varchar2,
frequency varchar2,
custom_expression varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_custom_frequency_details_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_frequency_details_t type.
Fields
Field
Description
custom_expression
(optional) This holds the complete cron expression for this schedule, for example, 10 0/5 * * * ? that fires every 5 minutes, at 10 seconds after the minute (i.e. 10:00:10 am, 10:05:10 am, etc.)
DBMS_CLOUD_OCI_DATAINTEGRATION_TIME_T Type 🔗
A model to hold time in hour:minute:second format.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_time_t FORCE AUTHID CURRENT_USER IS OBJECT (
hour number,
minute number,
second number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_time_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_time_t (
hour number,
minute number,
second number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
hour
(optional) The hour value.
minute
(optional) The minute value.
second
(optional) The second value.
DBMS_CLOUD_OCI_DATAINTEGRATION_DAILY_FREQUENCY_DETAILS_T Type 🔗
Frequency details model to set daily frequency
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_daily_frequency_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_frequency_details_t (
interval number,
time dbms_cloud_oci_dataintegration_time_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_daily_frequency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_daily_frequency_details_t (
model_type varchar2,
frequency varchar2,
interval number,
time dbms_cloud_oci_dataintegration_time_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_daily_frequency_details_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_frequency_details_t type.
Fields
Field
Description
interval
(optional) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
time
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_ADWC_DETAILS_T Type 🔗
Details for the Autonomous Data Warehouse data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_adwc_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
service_name varchar2(32767),
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_from_adwc_details_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_adwc_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_adwc_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
service_name varchar2,
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_from_adwc_details_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_adwc_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
service_name
(optional) The Autonomous Data Warehouse instance service name.
service_names
(optional) Array of service names that are available for selection in the serviceName property.
driver_class
(optional) The Autonomous Data Warehouse driver class.
default_connection
(optional)
staging_data_asset
(optional)
staging_connection
(optional)
bucket_schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_AMAZON_S3_T Type 🔗
Details for the MYSQL data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_amazon_s3_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
l_region varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_amazon_s3_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_amazon_s3_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
l_region varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_amazon_s3_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
l_region
(optional) The region for Amazon s3
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_ATP_DETAILS_T Type 🔗
Details for the Autonomous Transaction Processing data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_atp_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
service_name varchar2(32767),
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_from_atp_details_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_atp_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_atp_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
service_name varchar2,
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_from_atp_details_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_atp_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
service_name
(optional) The Autonomous Transaction Processing instance service name.
service_names
(optional) Array of service names that are available for selection in the serviceName property.
driver_class
(optional) The Autonomous Transaction Processing driver class.
default_connection
(optional)
staging_data_asset
(optional)
staging_connection
(optional)
bucket_schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_FUSION_APP_T Type 🔗
Details for the FUSION_APP data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_fusion_app_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
service_url varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_fusion_app_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_fusion_app_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
service_url varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_fusion_app_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
service_url
(optional) The service url of the BI Server.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_HDFS_DETAILS_T Type 🔗
Details for the HDFS data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_hdfs_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
protocol varchar2(32767),
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_connection_from_hdfs_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_hdfs_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_hdfs_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
protocol varchar2,
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_connection_from_hdfs_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_hdfs_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(required) The HDFS hostname.
port
(required) The HDFS port.
protocol
(required) The HDFS Protocol name.
validate_certificate
(optional) Specifies whether certificate validation is needed
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_JDBC_T Type 🔗
Details for the generic JDBC data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
data_asset_type varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_from_jdbc_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
data_asset_type varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_from_jdbc_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
data_asset_type
(optional) The data asset type for the generic JDBC data asset.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_LAKE_DETAILS_T Type 🔗
Details for the Lake data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_lake_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
lake_id varchar2(32767),
metastore_id varchar2(32767),
lake_proxy_endpoint varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_from_lake_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_lake_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_lake_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
lake_id varchar2,
metastore_id varchar2,
lake_proxy_endpoint varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_from_lake_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_lake_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
lake_id
(required) The Lake Ocid.
metastore_id
(optional) The metastoreId for the specified Lake Resource.
lake_proxy_endpoint
(optional) The lakeProxyEndpoint for the specified Lake Resource.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_MY_SQL_T Type 🔗
Details for the MYSQL data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_from_my_sql_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_from_my_sql_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
service_name
(optional) The generic JDBC service name for the database.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
Details for the MYSQL HeatWave data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_from_my_sql_heat_wave_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(optional) The MySql HeatWave host name.
port
(optional) The MySql HeatWave port number.
service_name
(optional) The MySql HeatWave service name for the database.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_OBJECT_STORAGE_DETAILS_T Type 🔗
Details for the Oracle Object storage data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_object_storage_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
oci_region varchar2(32767),
url varchar2(32767),
tenancy_id varchar2(32767),
namespace varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_from_object_storage_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_object_storage_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_object_storage_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
oci_region varchar2,
url varchar2,
tenancy_id varchar2,
namespace varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_from_object_storage_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_object_storage_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
oci_region
(optional) The Oracle Object storage Region ie. us-ashburn-1
url
(optional) The Oracle Object storage URL.
tenancy_id
(optional) The OCI tenancy OCID.
namespace
(optional) The namespace for the specified Oracle Object storage resource. You can find the namespace under Object Storage Settings in the Console.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_ORACLE_DETAILS_T Type 🔗
Details for the Oracle Database data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_oracle_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
credential_file_content varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
credential_file_content varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_oracle_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(optional) The Oracle Database hostname.
port
(optional) The Oracle Database port.
service_name
(optional) The Oracle Database service name.
driver_class
(optional) The Oracle Database driver class.
sid
(optional) The Oracle Database SID.
credential_file_content
(optional) The credential file content from a wallet for the data asset.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_ORACLE_EBS_DETAILS_T Type 🔗
Details for the E-Business Suite data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_oracle_ebs_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_ebs_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_ebs_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_ebs_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_oracle_ebs_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(required) The Oracle EBS hostname.
port
(required) The Oracle EBS port.
service_name
(optional) The Oracle EBS service name.
driver_class
(optional) The Oracle EBS driver class.
sid
(optional) The Oracle EBS SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_ORACLE_PEOPLE_SOFT_DETAILS_T Type 🔗
Details for the Oracle PeopleSoft data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_oracle_people_soft_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_people_soft_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_people_soft_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_people_soft_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_oracle_people_soft_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(required) The Oracle PeopleSoft hostname.
port
(required) The Oracle PeopleSoft port.
service_name
(optional) The Oracle PeopleSoft service name.
driver_class
(optional) The Oracle PeopleSoft driver class.
sid
(optional) The Oracle PeopleSoft SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_ORACLE_SIEBEL_DETAILS_T Type 🔗
Details for the Oracle Siebel data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_oracle_siebel_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_siebel_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_oracle_siebel_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_from_oracle_siebel_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_oracle_siebel_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
host
(required) The Oracle Siebel hostname.
port
(required) The Oracle Siebel port.
service_name
(optional) The Oracle Siebel service name.
driver_class
(optional) The Oracle Siebel driver class.
sid
(optional) The Oracle Siebel SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_FROM_REST_DETAILS_T Type 🔗
Details for the Rest data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_from_rest_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_t (
base_url varchar2(32767),
manifest_file_content varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_rest_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_from_rest_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
base_url varchar2,
manifest_file_content varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_from_rest_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_t type.
Fields
Field
Description
base_url
(optional) The base url of the rest server.
manifest_file_content
(optional) The manifest file content of the rest APIs.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_data_asset_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_data_asset_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_COLLECTION_T Type 🔗
This is the collection of data asset summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_data_asset_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_collection_t (
items dbms_cloud_oci_dataintegration_data_asset_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of data asset summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_ADWC_T Type 🔗
Summary details for the Autonomous Data Warehouse data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_adwc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
service_name varchar2(32767),
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_adwc_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_adwc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_adwc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
service_name varchar2,
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_adwc_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_adwc_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
service_name
(optional) The Autonomous Data Warehouse instance service name.
service_names
(optional) Array of service names that are available for selection in the serviceName property.
driver_class
(optional) The Autonomous Data Warehouse driver class.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_AMAZON_S3_T Type 🔗
Summary details for the Amazon s3 data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_amazon_s3_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
l_region varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_amazon_s3_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_amazon_s3_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
l_region varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_amazon_s3_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_amazon_s3_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
l_region
(optional) The region for Amazon s3
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_ATP_T Type 🔗
Summary details for the Autonomous Transaction Processing data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_atp_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
service_name varchar2(32767),
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_atp_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_atp_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_atp_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
service_name varchar2,
service_names dbms_cloud_oci_dataintegration_varchar2_tbl,
driver_class varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_atp_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_atp_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
service_name
(optional) The Autonomous Transaction Processing instance service name.
service_names
(optional) Array of service names that are available for selection in the serviceName property.
driver_class
(optional) The Autonomous Transaction Processing driver class.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_FUSION_APP_T Type 🔗
Summary details for the FUSION_APP data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_fusion_app_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
service_url varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_fusion_app_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_fusion_app_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
service_url varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_t,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_summary_from_object_storage_t,
staging_connection dbms_cloud_oci_dataintegration_connection_summary_from_object_storage_t,
bucket_schema dbms_cloud_oci_dataintegration_schema_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_fusion_app_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
service_url
(optional) The generic JDBC host name.
default_connection
(optional)
staging_data_asset
(optional)
staging_connection
(optional)
bucket_schema
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_HDFS_T Type 🔗
Summary details for the HDFS data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_hdfs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
protocol varchar2(32767),
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_hdfs_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_hdfs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_hdfs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
protocol varchar2,
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_hdfs_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_hdfs_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(required) The HDFS hostname.
port
(required) The HDFS port.
protocol
(required) The HDFS Protocol name.
validate_certificate
(optional) Specifies whether certificate validation is needed
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_JDBC_T Type 🔗
Summary details for the generic JDBC data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
data_asset_type varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_jdbc_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
data_asset_type varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_jdbc_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
data_asset_type
(optional) The data asset type for the generic JDBC data asset.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_LAKE_T Type 🔗
Summary details for the Lake data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_lake_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
lake_id varchar2(32767),
metastore_id varchar2(32767),
lake_proxy_endpoint varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_lake_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_lake_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_lake_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
lake_id varchar2,
metastore_id varchar2,
lake_proxy_endpoint varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_lake_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_lake_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
lake_id
(required) The Lake Ocid.
metastore_id
(optional) The metastoreId for the specified Lake Resource.
lake_proxy_endpoint
(optional) The lakeProxyEndpoint for the specified Lake Resource.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_MY_SQL_T Type 🔗
Summary details for the MYSQL data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
service_name
(optional) The generic JDBC service name for the database.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
Summary details for the MYSQL HeatWave data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_heat_wave_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_my_sql_heat_wave_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(optional) The MySql HeatWave host name.
port
(optional) The MySql HeatWave port number.
service_name
(optional) The MySql HeatWave service name for the database.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_ORACLE_T Type 🔗
Summary details for the Oracle Database data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
credential_file_content varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
credential_file_content varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(optional) The Oracle Database hostname.
port
(optional) The Oracle Database port.
service_name
(optional) The Oracle Database service name.
driver_class
(optional) The Oracle Database driver class.
sid
(optional) The Oracle Database SID.
credential_file_content
(optional) The credential file content from a wallet for the data asset.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_ORACLE_EBS_T Type 🔗
Summary details for E-Business Suite data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_ebs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_ebs_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_ebs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_ebs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_ebs_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_ebs_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(required) The Oracle EBS hostname.
port
(required) The Oracle EBS port.
service_name
(optional) The Oracle EBS service name.
driver_class
(optional) The Oracle EBS driver class.
sid
(optional) The Oracle EBS SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_ORACLE_PEOPLE_SOFT_T Type 🔗
Summary details for the Oracle PeopleSoft data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_people_soft_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_people_soft_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_people_soft_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_people_soft_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_people_soft_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_people_soft_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(required) The Oracle PeopleSoft hostname.
port
(required) The Oracle PeopleSoft port.
service_name
(optional) The Oracle PeopleSoft service name.
driver_class
(optional) The Oracle PeopleSoft driver class.
sid
(optional) The Oracle PeopleSoft SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_ORACLE_SIEBEL_T Type 🔗
Summary details for the Oracle Siebel data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_siebel_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_siebel_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_siebel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_siebel_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_connection_summary_from_oracle_siebel_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_oracle_siebel_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
host
(required) The Oracle Siebel hostname.
port
(required) The Oracle Siebel port.
service_name
(optional) The Oracle Siebel service name.
driver_class
(optional) The Oracle Siebel driver class.
sid
(optional) The Oracle Siebel SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ASSET_SUMMARY_FROM_REST_T Type 🔗
Rest data asset summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_asset_summary_from_rest_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_asset_summary_t (
base_url varchar2(32767),
manifest_file_content varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_connection_summary_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_rest_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_asset_summary_from_rest_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
native_type_system dbms_cloud_oci_dataintegration_type_system_t,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
base_url varchar2,
manifest_file_content varchar2,
default_connection dbms_cloud_oci_dataintegration_connection_summary_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_asset_summary_from_rest_t is a subtype of the dbms_cloud_oci_dataintegration_data_asset_summary_t type.
Fields
Field
Description
base_url
(optional) The base url of the rest server.
manifest_file_content
(optional) The manifest file content of the rest APIs.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_T Type 🔗
The data entity object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_DETAILS_T Type 🔗
The data entity details object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_details_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
dbms_cloud_oci_dataintegration_data_entity_from_data_store_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
filters
(optional) Filters present in the Datastore. It can be Null.
is_effective_date_disabled
(optional) It shows whether or not effective date is disabled
is_flex_data_store
(optional) It shows whether the datastore is of flex type
is_silent_error
(optional) It shows whether the extraction of this datastore will stop on error
supports_incremental
(optional) It shows whether the datastore supports Incremental Extract or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_DATA_STORE_ENTITY_DETAILS_T Type 🔗
The view entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_data_store_entity_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
filters varchar2(32767),
is_effective_date_disabled number,
is_flex_data_store number,
is_silent_error number,
supports_incremental number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_data_store_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_data_store_entity_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2,
filters varchar2,
is_effective_date_disabled number,
is_flex_data_store number,
is_silent_error number,
supports_incremental number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_data_store_entity_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
filters
(optional) Filters present in the Datastore. It can be Null.
is_effective_date_disabled
(optional) It shows whether or not effective date is disabled
is_flex_data_store
(optional) It shows whether the datastore is of flex type
is_silent_error
(optional) It shows whether the extraction of this datastore will stop on error
supports_incremental
(optional) It shows whether the datastore supports Incremental Extract or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_FILE_T Type 🔗
The file data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_file_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_file_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_file_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_file_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_FILE_ENTITY_DETAILS_T Type 🔗
The file data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_file_entity_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_file_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_file_entity_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_file_entity_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_OBJECT_T Type 🔗
The Application Object entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_object_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_object_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_object_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_OBJECT_ENTITY_DETAILS_T Type 🔗
The application object entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_object_entity_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_object_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_object_entity_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_object_entity_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_SQL_T Type 🔗
The sql entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
sql_query varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_sql_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2,
sql_query varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_sql_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
sql_query
(optional) sqlQuery
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_SQL_ENTITY_DETAILS_T Type 🔗
The sql entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_sql_entity_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
sql_query varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_sql_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_sql_entity_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2,
sql_query varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_sql_entity_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
sql_query
(optional) sqlQuery
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_TABLE_T Type 🔗
The table entity data entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_table_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_table_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_table_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_table_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_TABLE_ENTITY_DETAILS_T Type 🔗
The table entity data entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_table_entity_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_table_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_table_entity_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_table_entity_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_VIEW_T Type 🔗
The view entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_view_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_view_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_view_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_view_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_FROM_VIEW_ENTITY_DETAILS_T Type 🔗
The view entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_from_view_entity_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_details_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_view_entity_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_from_view_entity_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_from_view_entity_details_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_details_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_T Type 🔗
The data entity summary object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_data_entity_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_data_entity_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_COLLECTION_T Type 🔗
This is the collection of data entity summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_data_entity_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_collection_t (
items dbms_cloud_oci_dataintegration_data_entity_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of data entity summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_FROM_DATA_STORE_T Type 🔗
dbms_cloud_oci_dataintegration_data_entity_summary_from_data_store_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_summary_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
filters
(optional) Query filter for the extract. It can be Null.
is_effective_date_disabled
(optional) It shows whether or not effective date is disabled
is_flex_data_store
(optional) Is Flex data store. Metadata csv will be generated for flex data store
is_silent_error
(optional) Should the VO failure fail the whole batch?
supports_incremental
(optional) It shows whether the datastore supports Incremental Extract or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_FROM_FILE_T Type 🔗
The file data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_from_file_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_summary_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_file_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_file_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_summary_from_file_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_summary_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_FROM_OBJECT_T Type 🔗
The application object entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_from_object_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_summary_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_object_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_summary_from_object_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_summary_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_FROM_SQL_T Type 🔗
The sql entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_from_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_summary_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
sql_query varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_sql_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2,
sql_query varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_summary_from_sql_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_summary_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
sql_query
(optional) sqlQuery
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_FROM_TABLE_T Type 🔗
The table entity data entity.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_from_table_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_summary_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_table_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_table_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_summary_from_table_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_summary_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_ENTITY_SUMMARY_FROM_VIEW_T Type 🔗
The view entity data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_entity_summary_from_view_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_summary_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_view_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_entity_summary_from_view_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_data_entity_summary_from_view_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_summary_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_DETAILS_T Type 🔗
The information about a data flow.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2(32767),
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.
model_type
(required) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(required) The version of the object that is used to track changes in the object instance.
nodes
(optional) An array of nodes.
parameters
(optional) An array of parameters.
description
(optional) Detailed description for the object.
flow_config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_SUMMARY_T Type 🔗
The data flow summary type contains the audit summary information and the definition of the data flow.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2(32767),
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
typed_object_map json_element_t,
target_field_map_summary json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
typed_object_map json_element_t,
target_field_map_summary json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
nodes
(optional) An array of nodes.
parameters
(optional) An array of parameters.
description
(optional) Detailed description for the object.
flow_config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
typed_object_map
(optional) A hash map that maps TypedObject keys to the object itself, for java sdk.
target_field_map_summary
(optional) A hash map that maps TypedObject keys to a field map that maps to the typed object as a target, for java sdk.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_data_flow_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_data_flow_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_SUMMARY_COLLECTION_T Type 🔗
This is the collection of data flow summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_data_flow_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_summary_collection_t (
items dbms_cloud_oci_dataintegration_data_flow_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of data flow summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_VALIDATION_T Type 🔗
The information about a data flow validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_validation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_validation_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) The total number of validation messages.
error_message_count
(optional) The total number of validation error messages.
warn_message_count
(optional) The total number of validation warning messages.
info_message_count
(optional) The total number of validation information messages.
validation_messages
(optional) The detailed information of the data flow object validation.
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_VALIDATION_SUMMARY_T Type 🔗
The information about a data flow validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_validation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_validation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_validation_summary_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) The total number of validation messages.
error_message_count
(optional) The total number of validation error messages.
warn_message_count
(optional) The total number of validation warning messages.
info_message_count
(optional) The total number of validation information messages.
validation_messages
(optional) The detailed information of the data flow object validation.
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_VALIDATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_data_flow_validation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_validation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_data_flow_validation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_DATA_FLOW_VALIDATION_SUMMARY_COLLECTION_T Type 🔗
A list of data flow validation summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_data_flow_validation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_data_flow_validation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_validation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_data_flow_validation_summary_collection_t (
items dbms_cloud_oci_dataintegration_data_flow_validation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of validation summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_DECISION_OPERATOR_T Type 🔗
An operator for chosing pipeline path using a condition
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_decision_operator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
trigger_rule varchar2(32767),
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_decision_operator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_decision_operator_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
trigger_rule varchar2,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_decision_operator_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
trigger_rule
(optional) The merge condition. The conditions are ALL_SUCCESS - All the preceeding operators need to be successful. ALL_FAILED - All the preceeding operators should have failed. ALL_COMPLETE - All the preceeding operators should have completed. It could have executed successfully or failed.
DBMS_CLOUD_OCI_DATAINTEGRATION_DEPENDENT_OBJECT_T Type 🔗
The information about a dependent object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dependent_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dependent_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dependent_object_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2,
compartment_id varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify application.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) The application's version.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
dependent_object_metadata
(optional) A list of dependent objects in this patch.
published_object_metadata
(optional) A list of objects that are published or unpublished in this patch.
source_application_info
(optional)
time_patched
(optional) The date and time the application was patched, in the timestamp format defined by RFC3339.
id
(optional) OCID of the resource that is used to uniquely identify the application
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
time_created
(optional) The date and time the application was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_DEPENDENT_OBJECT_SUMMARY_T Type 🔗
Details of the dependent object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dependent_object_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
created_by varchar2(32767),
created_by_name varchar2(32767),
updated_by varchar2(32767),
updated_by_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
aggregator_key varchar2(32767),
aggregator dbms_cloud_oci_dataintegration_aggregator_summary_t,
identifier_path varchar2(32767),
info_fields json_element_t,
registry_version number,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
is_favorite number,
count_statistics dbms_cloud_oci_dataintegration_count_statistic_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dependent_object_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dependent_object_summary_t (
created_by varchar2,
created_by_name varchar2,
updated_by varchar2,
updated_by_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
aggregator_key varchar2,
aggregator dbms_cloud_oci_dataintegration_aggregator_summary_t,
identifier_path varchar2,
info_fields json_element_t,
registry_version number,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
is_favorite number,
count_statistics dbms_cloud_oci_dataintegration_count_statistic_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
created_by
(optional) The user that created the object.
created_by_name
(optional) The user that created the object.
updated_by
(optional) The user that updated the object.
updated_by_name
(optional) The user that updated the object.
time_created
(optional) The date and time that the object was created.
time_updated
(optional) The date and time that the object was updated.
aggregator_key
(optional) The owning object key for this object.
aggregator
(optional)
identifier_path
(optional) The full path to identify this object.
info_fields
(optional) Information property fields.
registry_version
(optional) The registry version of the object.
labels
(optional) Labels are keywords or tags that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
is_favorite
(optional) Specifies whether this object is a favorite or not.
count_statistics
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_DEPENDENT_OBJECT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_dependent_object_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dependent_object_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_dependent_object_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_DEPENDENT_OBJECT_SUMMARY_COLLECTION_T Type 🔗
A list of dependent object summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dependent_object_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_dependent_object_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dependent_object_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dependent_object_summary_collection_t (
items dbms_cloud_oci_dataintegration_dependent_object_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) An array of dependent object summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_REFERENCED_DATA_OBJECT_T Type 🔗
The input Operation for which derived entity is to be formed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_referenced_data_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
object_version number,
resource_name varchar2(32767),
object_status number,
external_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_referenced_data_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_referenced_data_object_t (
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_version number,
resource_name varchar2,
object_status number,
external_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The input Operation type.
Allowed values are: 'PROCEDURE', 'API'
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
object_version
(optional) The version of the object that is used to track changes in the object instance.
resource_name
(optional) The resource name.
object_status
(optional) The status of an object that can be set to value 1 for shallow reference across objects, other values reserved.
external_key
(optional) The external key for the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_DERIVED_ENTITY_T Type 🔗
The Derive entity object
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_derived_entity_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_data_entity_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
object_version number,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
resource_name varchar2(32767),
object_status number,
identifier varchar2(32767),
ref_data_object dbms_cloud_oci_dataintegration_referenced_data_object_t,
l_mode varchar2(32767),
derived_properties json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_derived_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_derived_entity_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_version number,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
resource_name varchar2,
object_status number,
identifier varchar2,
ref_data_object dbms_cloud_oci_dataintegration_referenced_data_object_t,
l_mode varchar2,
derived_properties json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_derived_entity_t is a subtype of the dbms_cloud_oci_dataintegration_data_entity_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
object_version
(optional) The version of the object that is used to track changes in the object instance.
shape
(optional)
shape_id
(optional) The shape ID.
resource_name
(optional) The resource name.
object_status
(optional) The status of an object that can be set to value 1 for shallow reference across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
ref_data_object
(optional)
l_mode
(optional) Determines whether entity is treated as source or target
Allowed values are: 'IN', 'OUT'
derived_properties
(optional) Property-bag (key-value pairs where key is Shape Field resource name and value is object)
DBMS_CLOUD_OCI_DATAINTEGRATION_DERIVED_FIELD_T Type 🔗
The type representing the derived field concept. Derived fields have an expression to define how to derive the field.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_derived_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
expr dbms_cloud_oci_dataintegration_expression_t,
l_type varchar2(32767),
is_use_inferred_type number,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_derived_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_derived_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
expr dbms_cloud_oci_dataintegration_expression_t,
l_type varchar2,
is_use_inferred_type number,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_derived_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
expr
(optional)
l_type
(optional) The type of the field.
is_use_inferred_type
(optional) Specifies whether to use inferred expression output type as output type of the derived field. Default value of this flag is false.
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_DETAILED_DESCRIPTION_T Type 🔗
The detailed description of an object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_detailed_description_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
logo varchar2(32767),
detailed_description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_detailed_description_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_detailed_description_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
logo varchar2,
detailed_description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
model_type
(optional) The type of the published object.
Allowed values are: 'DETAILED_DESCRIPTION'
key
(optional) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in create.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
logo
(optional) Base64 encoded image to represent logo of the object.
detailed_description
(optional) Base64 encoded rich text description of the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_SCOPE_REFERENCE_T Type 🔗
The `ScopeReference` class is a base class for any model object that wraps a scope reference to a TypedObject.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_scope_reference_t FORCE AUTHID CURRENT_USER IS OBJECT (
reference_object varchar2(32767),
reference_type varchar2(32767),
ref_object_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_scope_reference_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_scope_reference_t (
reference_object varchar2,
reference_type varchar2,
ref_object_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
reference_object
(required) A key or shallow reference to an object. For direct reference, it points to the actual scope object. For BOUND_ENTITY_SHAPE or BOUND_ENTITY_SHAPE_FIELD, it points to the source or target operator. For OCI_FUNCTION_INPUT_SHAPE or OCI_FUNCTION_OUTPUT_SHAPE, it points to the OCI Function object.
reference_type
(optional) The reference type for this reference. Set to null for a direct reference, for indirect references set to a type of association such as \"BOUND_ENTITY_SHAPE\". Current known reference type values are \"BOUND_ENTITY_SHAPE\", \"BOUND_ENTITY_SHAPE_FIELD\", \"OCI_FUNCTION_INPUT_SHAPE\", \"OCI_FUNCTION_OUTPUT_SHAPE\"
(optional) The referenced object name for this reference. Set to the field name if the referenceType is BOUND_ENTITY_SHAPE_FIELD, else set to null.
DBMS_CLOUD_OCI_DATAINTEGRATION_DIRECT_FIELD_MAP_T Type 🔗
The information about a field map.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_direct_field_map_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_field_map_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
source_typed_object varchar2(32767),
target_typed_object varchar2(32767),
source_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
target_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_direct_field_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_direct_field_map_t (
model_type varchar2,
description varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
source_typed_object varchar2,
target_typed_object varchar2,
source_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
target_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_direct_field_map_t is a subtype of the dbms_cloud_oci_dataintegration_field_map_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
config_values
(optional)
source_typed_object
(optional) Deprecated - Reference to a typed object.
target_typed_object
(optional) Deprecated - Reference to a typed object.
source_scope_reference
(optional)
target_scope_reference
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_DIRECT_NAMED_FIELD_MAP_T Type 🔗
A named field map.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_direct_named_field_map_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_field_map_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
source_typed_object varchar2(32767),
target_typed_object varchar2(32767),
source_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
target_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
source_field_name varchar2(32767),
target_field_name varchar2(32767),
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_direct_named_field_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_direct_named_field_map_t (
model_type varchar2,
description varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
source_typed_object varchar2,
target_typed_object varchar2,
source_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
target_scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
source_field_name varchar2,
target_field_name varchar2,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_direct_named_field_map_t is a subtype of the dbms_cloud_oci_dataintegration_field_map_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
config_values
(optional)
source_typed_object
(optional) Deprecated - Reference to a typed object.
target_typed_object
(optional) Deprecated - Reference to a typed object
source_scope_reference
(optional)
target_scope_reference
(optional)
source_field_name
(optional) The source field name.
target_field_name
(optional) The target field name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_DIS_APPLICATION_T Type 🔗
DIS Application is container for runtime objects.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dis_application_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dis_application_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dis_application_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2,
compartment_id varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify application.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) The application's version.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
dependent_object_metadata
(optional) A list of dependent objects in this patch.
published_object_metadata
(optional) A list of objects that are published or unpublished in this patch.
source_application_info
(optional)
time_patched
(optional) The date and time the application was patched, in the timestamp format defined by RFC3339.
id
(optional) OCID of the resource that is used to uniquely identify the application
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
time_created
(optional) The date and time the application was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_DIS_APPLICATION_SUMMARY_T Type 🔗
The application summary type contains the audit summary information and the definition of the application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dis_application_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dis_application_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dis_application_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2,
compartment_id varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify application.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) The application's version.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
dependent_object_metadata
(optional) A list of dependent objects in this patch.
published_object_metadata
(optional) A list of objects that are published or unpublished in this patch.
source_application_info
(optional)
time_patched
(optional) The date and time the application was patched, in the timestamp format defined by RFC3339.
id
(optional) OCID of the resource that is used to uniquely identify the application
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
time_created
(optional) The date and time the application was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_DIS_APPLICATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_dis_application_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dis_application_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_dis_application_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_DIS_APPLICATION_SUMMARY_COLLECTION_T Type 🔗
This is the collection of application summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dis_application_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_dis_application_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dis_application_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dis_application_summary_collection_t (
items dbms_cloud_oci_dataintegration_dis_application_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of application summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_DISTINCT_T Type 🔗
The information about the distinct operator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_distinct_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_distinct_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_distinct_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_distinct_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_DYNAMIC_INPUT_FIELD_T Type 🔗
The type representing the dynamic field concept. Dynamic fields have a dynamic type handler to define how to generate the field.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dynamic_input_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_input_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_input_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_dynamic_input_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
l_type
(optional)
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_DYNAMIC_TYPE_HANDLER_T Type 🔗
This type defines how to derived fields for the dynamic type itself.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dynamic_type_handler_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_type_handler_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_type_handler_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_DATAINTEGRATION_DYNAMIC_TYPE_T Type 🔗
The dynamic type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_dynamic_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
type_handler dbms_cloud_oci_dataintegration_dynamic_type_handler_t,
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_dynamic_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
type_handler dbms_cloud_oci_dataintegration_dynamic_type_handler_t,
config_definition dbms_cloud_oci_dataintegration_config_definition_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_dynamic_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
type_handler
(optional)
config_definition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_END_OPERATOR_T Type 🔗
Represents end of a pipeline
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_end_operator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
trigger_rule varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_end_operator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_end_operator_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
trigger_rule varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_end_operator_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
trigger_rule
(optional) The merge condition. The conditions are ALL_SUCCESS - All the preceeding operators need to be successful. ALL_FAILED - All the preceeding operators should have failed. ALL_COMPLETE - All the preceeding operators should have completed. It could have executed successfully or failed.
DBMS_CLOUD_OCI_DATAINTEGRATION_ENRICHED_ENTITY_T Type 🔗
This is used to specify runtime parameters for data entities such as files that need both the data entity and the format.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_enriched_entity_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity dbms_cloud_oci_dataintegration_data_entity_t,
data_format dbms_cloud_oci_dataintegration_data_format_t,
model_type varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_enriched_entity_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_enriched_entity_t (
entity dbms_cloud_oci_dataintegration_data_entity_t,
data_format dbms_cloud_oci_dataintegration_data_format_t,
model_type varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entity
(optional)
data_format
(optional)
model_type
(optional) The model type for the entity which is referenced.
parent_ref
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ENTITY_SHAPE_T Type 🔗
The data entity shape object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_entity_shape_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_DATAINTEGRATION_ENTITY_SHAPE_FROM_FILE_T Type 🔗
The file data entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_entity_shape_from_file_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_entity_shape_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_from_file_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_from_file_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
types dbms_cloud_oci_dataintegration_type_library_t,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_entity_shape_from_file_t is a subtype of the dbms_cloud_oci_dataintegration_entity_shape_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_ENTITY_SHAPE_FROM_OBJECT_T Type 🔗
The application object entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_entity_shape_from_object_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_entity_shape_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_from_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_from_object_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_entity_shape_from_object_t is a subtype of the dbms_cloud_oci_dataintegration_entity_shape_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_ENTITY_SHAPE_FROM_SQL_T Type 🔗
The SQL entity details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_entity_shape_from_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_entity_shape_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2(32767),
entity_type varchar2(32767),
other_type_label varchar2(32767),
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2(32767),
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2(32767),
sql_query varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_from_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_entity_shape_from_sql_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
external_key varchar2,
shape dbms_cloud_oci_dataintegration_shape_t,
shape_id varchar2,
entity_type varchar2,
other_type_label varchar2,
unique_keys dbms_cloud_oci_dataintegration_unique_key_tbl,
foreign_keys dbms_cloud_oci_dataintegration_foreign_key_tbl,
resource_name varchar2,
data_format dbms_cloud_oci_dataintegration_data_format_t,
object_status number,
identifier varchar2,
sql_query varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_entity_shape_from_sql_t is a subtype of the dbms_cloud_oci_dataintegration_entity_shape_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
sql_query
(optional) sqlQuery
DBMS_CLOUD_OCI_DATAINTEGRATION_ERROR_DETAILS_T Type 🔗
The details of an error that occured.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_error_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_error_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_error_details_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. See API Errors.
message
(required) A user-friendly error message.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXPORT_OBJECT_METADATA_SUMMARY_T Type 🔗
Details of the exported object
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_export_object_metadata_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
name varchar2(32767),
identifier varchar2(32767),
object_type varchar2(32767),
object_version varchar2(32767),
aggregator_key varchar2(32767),
name_path varchar2(32767),
time_updated_in_millis number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_export_object_metadata_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_export_object_metadata_summary_t (
key varchar2,
name varchar2,
identifier varchar2,
object_type varchar2,
object_version varchar2,
aggregator_key varchar2,
name_path varchar2,
time_updated_in_millis number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Key of the object
name
(optional) Name of the object
identifier
(optional) Object identifier
object_type
(optional) Object type
object_version
(optional) Object version
aggregator_key
(optional) Aggregator key
name_path
(optional) Object name path
time_updated_in_millis
(optional) time at which this object was last updated.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXPORT_OBJECT_METADATA_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_export_object_metadata_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_export_object_metadata_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_export_object_metadata_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_EXPORT_REQUEST_T Type 🔗
Export metadata object response.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_export_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
bucket_name varchar2(32767),
file_name varchar2(32767),
object_storage_tenancy_id varchar2(32767),
object_storage_region varchar2(32767),
are_references_included number,
is_object_overwrite_enabled number,
filters dbms_cloud_oci_dataintegration_varchar2_tbl,
status varchar2(32767),
created_by varchar2(32767),
total_exported_object_count number,
time_started_in_millis number,
time_ended_in_millis number,
error_messages json_element_t,
exported_items dbms_cloud_oci_dataintegration_export_object_metadata_summary_tbl,
referenced_items varchar2(32767),
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_export_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_export_request_t (
key varchar2,
object_keys dbms_cloud_oci_dataintegration_varchar2_tbl,
bucket_name varchar2,
file_name varchar2,
object_storage_tenancy_id varchar2,
object_storage_region varchar2,
are_references_included number,
is_object_overwrite_enabled number,
filters dbms_cloud_oci_dataintegration_varchar2_tbl,
status varchar2,
created_by varchar2,
total_exported_object_count number,
time_started_in_millis number,
time_ended_in_millis number,
error_messages json_element_t,
exported_items dbms_cloud_oci_dataintegration_export_object_metadata_summary_tbl,
referenced_items varchar2,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Export object request key
object_keys
(optional) The list of the objects to be exported
bucket_name
(optional) The name of the Object Storage Bucket where the objects will be exported to
file_name
(optional) Name of the exported zip file.
object_storage_tenancy_id
(optional) Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
object_storage_region
(optional) Region of the object storage (if using object storage of different region)
are_references_included
(optional) Controls if the references will be exported along with the objects
is_object_overwrite_enabled
(optional) Flag to control whether to overwrite the object if it is already present at the provided object storage location.
filters
(optional) Export multiple objects based on filters.
(optional) Name of the user who initiated export request.
total_exported_object_count
(optional) Number of objects that are exported.
time_started_in_millis
(optional) Time at which the request started getting processed.
time_ended_in_millis
(optional) Time at which the request was completely processed.
error_messages
(optional) Contains key of the error
exported_items
(optional) The array of exported object details.
referenced_items
(optional) The array of exported referenced objects.
name
(optional) Name of the export request.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXPORT_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_export_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_export_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_export_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_EXPORT_REQUEST_SUMMARY_COLLECTION_T Type 🔗
This is the collection of export object requests.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_export_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_export_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_export_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_export_request_summary_collection_t (
items dbms_cloud_oci_dataintegration_export_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of export object requests status summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXPRESSION_OPERATOR_T Type 🔗
An operator for expressions
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_expression_operator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
trigger_rule varchar2(32767),
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_expression_operator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_expression_operator_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
trigger_rule varchar2,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_expression_operator_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
trigger_rule
(optional) The merge condition. The conditions are ALL_SUCCESS - All the preceeding operators need to be successful. ALL_FAILED - All the preceeding operators should have failed. ALL_COMPLETE - All the preceeding operators should have completed. It could have executed successfully or failed.
(optional) The error of the published object in the application.
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects. Other values are reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_PUBLICATION_SUMMARY_T Type 🔗
The external publication summary contains the audit summary information and the definition of the external object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_publication_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
application_id varchar2(32767),
application_compartment_id varchar2(32767),
display_name varchar2(32767),
resource_configuration dbms_cloud_oci_dataintegration_resource_configuration_t,
configuration_details dbms_cloud_oci_dataintegration_configuration_details_t,
status varchar2(32767),
error_message varchar2(32767),
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_summary_t (
application_id varchar2,
application_compartment_id varchar2,
display_name varchar2,
resource_configuration dbms_cloud_oci_dataintegration_resource_configuration_t,
configuration_details dbms_cloud_oci_dataintegration_configuration_details_t,
status varchar2,
error_message varchar2,
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
application_id
(optional) The unique OCID of the identifier that is returned after creating the Oracle Cloud Infrastructure Data Flow application.
application_compartment_id
(optional) The OCID of the compartment where the application is created in the Oracle Cloud Infrastructure Data Flow Service.
display_name
(optional) The name of the application.
resource_configuration
(optional)
configuration_details
(optional)
status
(optional) The status of the publishing action to Oracle Cloud Infrastructure Data Flow.
(optional) The error of the published object in the application.
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects. Other values are reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_PUBLICATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_external_publication_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_publication_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_external_publication_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_PUBLICATION_SUMMARY_COLLECTION_T Type 🔗
This is the collection of external publication summaries. It may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_publication_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_external_publication_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_summary_collection_t (
items dbms_cloud_oci_dataintegration_external_publication_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of external publication summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_PUBLICATION_VALIDATION_T Type 🔗
The information about external published task validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_publication_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_validation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_validation_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) Total number of validation messages.
error_message_count
(optional) Total number of validation error messages.
warn_message_count
(optional) Total number of validation warning messages.
info_message_count
(optional) Total number of validation information messages.
validation_messages
(optional) Detailed information of the data flow object validation.
key
(optional) Objects use a 36 character key as unique ID. It is system generated and cannot be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_PUBLICATION_VALIDATION_SUMMARY_T Type 🔗
The external publication validation summary contains the validation summary information and the definition of the external object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_publication_validation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_validation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_validation_summary_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) Total number of validation messages.
error_message_count
(optional) Total number of validation error messages.
warn_message_count
(optional) Total number of validation warning messages.
info_message_count
(optional) Total number of validation information messages.
validation_messages
(optional) Detailed information of the data flow object validation.
key
(optional) Objects use a 36 character key as unique ID. It is system generated and cannot be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_PUBLICATION_VALIDATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_external_publication_validation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_publication_validation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_external_publication_validation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_EXTERNAL_PUBLICATION_VALIDATION_SUMMARY_COLLECTION_T Type 🔗
This is the collection of external publication validation summaries. It may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_external_publication_validation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_external_publication_validation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_validation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_external_publication_validation_summary_collection_t (
items dbms_cloud_oci_dataintegration_external_publication_validation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of external publication summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_FILTER_T Type 🔗
The information about the filter object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_filter_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
filter_condition dbms_cloud_oci_dataintegration_expression_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_filter_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_filter_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
filter_condition dbms_cloud_oci_dataintegration_expression_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_filter_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
filter_condition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PUSH_DOWN_OPERATION_T Type 🔗
The information about a push down operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_push_down_operation_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_push_down_operation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_push_down_operation_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
DBMS_CLOUD_OCI_DATAINTEGRATION_FILTER_PUSH_T Type 🔗
The information about a filter operator. The filter operator lets you select certain attributes from the inbound port to continue downstream to the outbound port.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_filter_push_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_push_down_operation_t (
filter_condition varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_filter_push_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_filter_push_t (
model_type varchar2,
filter_condition varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_filter_push_t is a subtype of the dbms_cloud_oci_dataintegration_push_down_operation_t type.
Fields
Field
Description
filter_condition
(optional) The filter condition.
DBMS_CLOUD_OCI_DATAINTEGRATION_FLATTEN_PROJECTION_PREFERENCES_T Type 🔗
The preferences for the flatten operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flatten_projection_preferences_t FORCE AUTHID CURRENT_USER IS OBJECT (
create_array_index varchar2(32767),
retain_all_attributes varchar2(32767),
ignore_null_values varchar2(32767),
retain_parent_name_lineage varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_projection_preferences_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_projection_preferences_t (
create_array_index varchar2,
retain_all_attributes varchar2,
ignore_null_values varchar2,
retain_parent_name_lineage varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
create_array_index
(required) Property defining whether to create array indexes in flattened result.
Allowed values are: 'ALLOW', 'DO_NOT_ALLOW'
retain_all_attributes
(required) Property defining whether to retain all attributes in flattened result.
Allowed values are: 'ALLOW', 'DO_NOT_ALLOW'
ignore_null_values
(required) Property defining whether to ignore null values in flattened result.
Allowed values are: 'ALLOW', 'DO_NOT_ALLOW'
retain_parent_name_lineage
(required) Property defining whether to retain parent name lineage.
Allowed values are: 'ALLOW', 'DO_NOT_ALLOW'
DBMS_CLOUD_OCI_DATAINTEGRATION_FLATTEN_DETAILS_T Type 🔗
Details for the flatten operator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flatten_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
flatten_projection_preferences dbms_cloud_oci_dataintegration_flatten_projection_preferences_t,
flatten_attribute_root varchar2(32767),
flatten_attribute_path varchar2(32767),
flatten_columns dbms_cloud_oci_dataintegration_typed_object_tbl,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_details_t (
flatten_projection_preferences dbms_cloud_oci_dataintegration_flatten_projection_preferences_t,
flatten_attribute_root varchar2,
flatten_attribute_path varchar2,
flatten_columns dbms_cloud_oci_dataintegration_typed_object_tbl,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
flatten_projection_preferences
(optional)
flatten_attribute_root
(optional) The string of flatten attribute column name where the flatten process starts.
flatten_attribute_path
(optional) The string of flatten attribute path in flattenAttributeRoot from upper level to leaf/targeted level concatenated with dot(.).
flatten_columns
(optional) The array of flatten columns which are the input to flatten.
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_FLATTEN_T Type 🔗
The information about a flatten object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flatten_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
flatten_details dbms_cloud_oci_dataintegration_flatten_details_t,
flatten_field dbms_cloud_oci_dataintegration_dynamic_proxy_field_t,
materialized_flatten_field dbms_cloud_oci_dataintegration_materialized_dynamic_field_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
flatten_details dbms_cloud_oci_dataintegration_flatten_details_t,
flatten_field dbms_cloud_oci_dataintegration_dynamic_proxy_field_t,
materialized_flatten_field dbms_cloud_oci_dataintegration_materialized_dynamic_field_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_flatten_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
flatten_details
(optional)
flatten_field
(optional)
materialized_flatten_field
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_FLATTEN_TYPE_HANDLER_T Type 🔗
The flatten type handler.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flatten_type_handler_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_dynamic_type_handler_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
scope varchar2(32767),
flatten_details varchar2(32767),
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_type_handler_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flatten_type_handler_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
scope varchar2,
flatten_details varchar2,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_flatten_type_handler_t is a subtype of the dbms_cloud_oci_dataintegration_dynamic_type_handler_t type.
Fields
Field
Description
key
(optional) The key of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
scope
(optional) Reference key for the typed object.
flatten_details
(optional) Contains a key for referencing the flattenDetails information.
config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_FLOW_PORT_T Type 🔗
Each operator owns a set of `InputPort` and `OutputPort` objects (can scale to zero), which represent the ports that can be connected to/from the operator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_flow_port_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flow_port_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_flow_port_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_flow_port_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_FOLDER_T Type 🔗
The folder type contains the audit summary information and the definition of the folder.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_folder_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify folder.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the folder.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
metadata
(optional)
key_map
(optional) A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_FOLDER_DETAILS_T Type 🔗
The details including name, description for the folder, which is a container of other folders, tasks and dataflows.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_folder_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify folder.
model_type
(required) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the folder.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(required) The version of the object that is used to track changes in the object instance.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_FOLDER_SUMMARY_T Type 🔗
The folder summary type contains the audit summary information and the definition of the folder.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_folder_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify folder.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the folder.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
metadata
(optional)
key_map
(optional) A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_FOLDER_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_folder_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_folder_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_folder_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_FOLDER_SUMMARY_COLLECTION_T Type 🔗
A collection of folder summaries. The collection can be lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_folder_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_folder_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_folder_summary_collection_t (
items dbms_cloud_oci_dataintegration_folder_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of folder summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_CONFIGURATION_DEFINITION_T Type 🔗
The configuration details of a configurable object. This contains one or more config param definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_configuration_definition_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_contained number,
config_param_defs json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_configuration_definition_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_configuration_definition_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_contained number,
config_param_defs json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
model_type
(optional) The type of the object.
Allowed values are: 'CONFIG_DEFINITION'
model_version
(optional) The model version of an object.
parent_ref
(optional)
is_contained
(optional) Specifies whether the configuration is contained or not.
config_param_defs
(optional) The parameter configuration details.
DBMS_CLOUD_OCI_DATAINTEGRATION_OCI_FUNCTION_T Type 🔗
The information about the OCI Function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oci_function_t FORCE AUTHID CURRENT_USER IS OBJECT (
function_id varchar2(32767),
region_id varchar2(32767),
fn_config_definition dbms_cloud_oci_dataintegration_config_definition_t,
input_shape dbms_cloud_oci_dataintegration_shape_t,
output_shape dbms_cloud_oci_dataintegration_shape_t,
model_type varchar2(32767),
key varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
model_version varchar2(32767),
object_version number,
payload_format varchar2(32767),
fn_config_def dbms_cloud_oci_dataintegration_function_configuration_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oci_function_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oci_function_t (
function_id varchar2,
region_id varchar2,
fn_config_definition dbms_cloud_oci_dataintegration_config_definition_t,
input_shape dbms_cloud_oci_dataintegration_shape_t,
output_shape dbms_cloud_oci_dataintegration_shape_t,
model_type varchar2,
key varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
model_version varchar2,
object_version number,
payload_format varchar2,
fn_config_def dbms_cloud_oci_dataintegration_function_configuration_definition_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
function_id
(optional) Ocid of the OCI Function.
region_id
(optional) Region where the OCI Function is deployed.
fn_config_definition
(optional)
input_shape
(optional)
output_shape
(optional)
model_type
(optional) The type of the OCI Function object.
Allowed values are: 'OCI_FUNCTION'
key
(optional) The key identifying the OCI Function operator object, use this to identiy this instance within the dataflow.
parent_ref
(optional)
model_version
(optional) The model version of an object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
payload_format
(optional) The OCI Function payload format.
Allowed values are: 'JSON', 'AVRO', 'JSONBYTES'
fn_config_def
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_T Type 🔗
The Function operator supports users adding a custom OCI Function into the data flow.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
oci_function dbms_cloud_oci_dataintegration_oci_function_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
oci_function dbms_cloud_oci_dataintegration_oci_function_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_function_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
oci_function
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_LIBRARY_T Type 🔗
The FunctionLibrary type contains the audit summary information and the definition of the FunctionLibrary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_library_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify FunctionLibrary.
model_type
(optional) The type of the object.
Allowed values are: 'FUNCTION_LIBRARY'
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the Function Library.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
metadata
(optional)
key_map
(optional) A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_LIBRARY_DETAILS_T Type 🔗
The details including name, description for the function library, which is a container for user defined functions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_library_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify FunctionLibrary.
model_type
(required) The type of the object.
Allowed values are: 'FUNCTION_LIBRARY'
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the FunctionLibrary.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(required) The version of the object that is used to track changes in the object instance.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_LIBRARY_SUMMARY_T Type 🔗
The FunctionLibrary summary type contains the audit summary information and the definition of the Function Library.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_library_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify FunctionLibrary.
model_type
(optional) The type of the object.
Allowed values are: 'FUNCTION_LIBRARY'
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the Function Library.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
metadata
(optional)
key_map
(optional) A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_LIBRARY_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_function_library_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_library_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_function_library_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_FUNCTION_LIBRARY_SUMMARY_COLLECTION_T Type 🔗
A collection of FunctionLibrary summaries. The collection can be lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_function_library_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_function_library_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_function_library_summary_collection_t (
items dbms_cloud_oci_dataintegration_function_library_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of FunctionLibrary summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_GENERIC_REST_API_ATTRIBUTES_T Type 🔗
Generic rest api specific attributes.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_generic_rest_api_attributes_t FORCE AUTHID CURRENT_USER IS OBJECT (
server_url varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_generic_rest_api_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_generic_rest_api_attributes_t (
server_url varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
server_url
(optional) The server URL serving operation.
DBMS_CLOUD_OCI_DATAINTEGRATION_GENERIC_REST_CALL_ATTRIBUTE_T Type 🔗
Properties to configure reading from a REST data asset / connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_generic_rest_call_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_call_attribute_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_generic_rest_call_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_generic_rest_call_attribute_t (
model_type varchar2,
fetch_size number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_generic_rest_call_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_call_attribute_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_GROUPED_NAME_PATTERN_RULE_T Type 🔗
This rule projects fields as a group recognised as name pattern.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_grouped_name_pattern_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_projection_rule_t (
name varchar2(32767),
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2(32767),
is_case_sensitive number,
rule_type varchar2(32767),
pattern varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_grouped_name_pattern_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_grouped_name_pattern_rule_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2,
name varchar2,
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2,
is_case_sensitive number,
rule_type varchar2,
pattern varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_grouped_name_pattern_rule_t is a subtype of the dbms_cloud_oci_dataintegration_projection_rule_t type.
Fields
Field
Description
name
(optional) Name of the group.
is_skip_remaining_rules_on_match
(optional) Specifies whether to skip remaining rules when a match is found.
scope
(optional) Reference to a typed object. This can be either a key value to an object within the document, a shall referenced to a `TypedObject`, or a full `TypedObject` definition.
(optional) Specifies if the rule is case sensitive.
rule_type
(optional) The rule type.
Allowed values are: 'INCLUDE', 'EXCLUDE'
pattern
(optional) The rule pattern.
DBMS_CLOUD_OCI_DATAINTEGRATION_HOURLY_FREQUENCY_DETAILS_T Type 🔗
Frequency details model to set hourly frequency
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_hourly_frequency_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_frequency_details_t (
interval number,
time dbms_cloud_oci_dataintegration_time_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_hourly_frequency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_hourly_frequency_details_t (
model_type varchar2,
frequency varchar2,
interval number,
time dbms_cloud_oci_dataintegration_time_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_hourly_frequency_details_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_frequency_details_t type.
Fields
Field
Description
interval
(optional) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
time
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_IMPORT_OBJECT_METADATA_SUMMARY_T Type 🔗
Details of the objects to imported.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_import_object_metadata_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
old_key varchar2(32767),
new_key varchar2(32767),
name varchar2(32767),
identifier varchar2(32767),
object_type varchar2(32767),
object_version varchar2(32767),
aggregator_key varchar2(32767),
name_path varchar2(32767),
time_updated_in_millis number,
resolution_action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_object_metadata_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_object_metadata_summary_t (
old_key varchar2,
new_key varchar2,
name varchar2,
identifier varchar2,
object_type varchar2,
object_version varchar2,
aggregator_key varchar2,
name_path varchar2,
time_updated_in_millis number,
resolution_action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
old_key
(optional) Old key of the object
new_key
(optional) New key of the object
name
(optional) Name of the object
identifier
(optional) Object identifier
object_type
(optional) Object type
object_version
(optional) Object version
aggregator_key
(optional) Aggregator key
name_path
(optional) Object name path
time_updated_in_millis
(optional) time at which this object was last updated.
DBMS_CLOUD_OCI_DATAINTEGRATION_IMPORT_OBJECT_METADATA_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_import_object_metadata_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_import_object_metadata_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_import_object_metadata_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_IMPORT_REQUEST_T Type 🔗
Import metadata object response.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_import_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
bucket_name varchar2(32767),
file_name varchar2(32767),
object_storage_tenancy_id varchar2(32767),
object_storage_region varchar2(32767),
object_key_for_import varchar2(32767),
import_conflict_resolution dbms_cloud_oci_dataintegration_import_conflict_resolution_t,
status varchar2(32767),
created_by varchar2(32767),
total_imported_object_count number,
time_started_in_millis number,
time_ended_in_millis number,
error_messages json_element_t,
imported_objects dbms_cloud_oci_dataintegration_import_object_metadata_summary_tbl,
name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_request_t (
key varchar2,
bucket_name varchar2,
file_name varchar2,
object_storage_tenancy_id varchar2,
object_storage_region varchar2,
object_key_for_import varchar2,
import_conflict_resolution dbms_cloud_oci_dataintegration_import_conflict_resolution_t,
status varchar2,
created_by varchar2,
total_imported_object_count number,
time_started_in_millis number,
time_ended_in_millis number,
error_messages json_element_t,
imported_objects dbms_cloud_oci_dataintegration_import_object_metadata_summary_tbl,
name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Import object request key
bucket_name
(optional) The name of the Object Storage Bucket where the objects will be imported from
file_name
(optional) Name of the zip file from which objects will be imported.
object_storage_tenancy_id
(optional) Optional parameter to point to object storage tenancy (if using Object Storage of different tenancy)
object_storage_region
(optional) Region of the object storage (if using object storage of different region)
object_key_for_import
(optional) Key of the object inside which all the objects will be imported
(optional) Name of the user who initiated import request.
total_imported_object_count
(optional) Number of objects that are imported.
time_started_in_millis
(optional) Time at which the request started getting processed.
time_ended_in_millis
(optional) Time at which the request was completely processed.
error_messages
(optional) Contains key of the error
imported_objects
(optional) The array of imported object details.
name
(optional) Name of the import request.
DBMS_CLOUD_OCI_DATAINTEGRATION_IMPORT_REQUEST_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_import_request_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_import_request_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_import_request_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_IMPORT_REQUEST_SUMMARY_COLLECTION_T Type 🔗
This is the collection of import object requests.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_import_request_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_import_request_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_request_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_import_request_summary_collection_t (
items dbms_cloud_oci_dataintegration_import_request_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of import object requests status summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_INCREMENTAL_DATA_ENTITY_CLAUSE_T Type 🔗
Data Entity clause for Incremental Read operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_incremental_data_entity_clause_t FORCE AUTHID CURRENT_USER IS OBJECT (
incremental_data_entity_name varchar2(32767),
incremental_data_entity_value json_element_t,
incremental_comparator varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_incremental_data_entity_clause_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_incremental_data_entity_clause_t (
incremental_data_entity_name varchar2,
incremental_data_entity_value json_element_t,
incremental_comparator varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
incremental_data_entity_name
(required) Name of incremental data entity filter.
incremental_data_entity_value
(required) Value of incremental data entity filter.
DBMS_CLOUD_OCI_DATAINTEGRATION_INCREMENTAL_FIELD_CLAUSE_T Type 🔗
Field clause for incremental read operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_incremental_field_clause_t FORCE AUTHID CURRENT_USER IS OBJECT (
incremental_field_name varchar2(32767),
incremental_field_value json_element_t,
incremental_comparator varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_incremental_field_clause_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_incremental_field_clause_t (
incremental_field_name varchar2,
incremental_field_value json_element_t,
incremental_comparator varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_INCREMENTAL_FIELD_CLAUSE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_incremental_field_clause_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_incremental_field_clause_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_incremental_field_clause_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_INCREMENTAL_DATA_ENTITY_CLAUSE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_incremental_data_entity_clause_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_incremental_data_entity_clause_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_incremental_data_entity_clause_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_INCREMENTAL_READ_CONFIG_T Type 🔗
Config for incremental read operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_incremental_read_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
last_extracted_field_date dbms_cloud_oci_dataintegration_incremental_field_clause_tbl,
last_extracted_data_entity_date dbms_cloud_oci_dataintegration_incremental_data_entity_clause_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_incremental_read_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_incremental_read_config_t (
last_extracted_field_date dbms_cloud_oci_dataintegration_incremental_field_clause_tbl,
last_extracted_data_entity_date dbms_cloud_oci_dataintegration_incremental_data_entity_clause_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
last_extracted_field_date
(optional) List of incremental field clauses.
last_extracted_data_entity_date
(optional) List of incremental data entity clauses.
DBMS_CLOUD_OCI_DATAINTEGRATION_INPUT_FIELD_T Type 🔗
The input field for an operator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_input_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_input_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
l_type
(optional)
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_INPUT_PROXY_FIELD_T Type 🔗
A proxy field to be used as an input field.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_input_proxy_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
scope json_element_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_proxy_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_input_proxy_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
scope json_element_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_input_proxy_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
scope
(optional) Reference to a typed object, this can be either a key value to an object within the document, a shall referenced to a `TypedObject` or a full `TypedObject` definition.
l_type
(optional)
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_INTERSECT_T Type 🔗
The information about a intersect object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_intersect_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
intersect_type varchar2(32767),
is_all number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_intersect_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_intersect_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
intersect_type varchar2,
is_all number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_intersect_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
intersect_type
(optional) intersectType
Allowed values are: 'NAME', 'POSITION'
is_all
(optional) The information about the intersect all.
DBMS_CLOUD_OCI_DATAINTEGRATION_JAVA_TYPE_T Type 🔗
A java type object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_java_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
java_type_name varchar2(32767),
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_java_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_java_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
java_type_name varchar2,
config_definition dbms_cloud_oci_dataintegration_config_definition_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_java_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
java_type_name
(optional) The java type name.
config_definition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_JOIN_T Type 🔗
The information about the join operator. The join operator links data from multiple inbound sources.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_join_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_push_down_operation_t (
condition varchar2(32767),
policy varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_join_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_join_t (
model_type varchar2,
condition varchar2,
policy varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_join_t is a subtype of the dbms_cloud_oci_dataintegration_push_down_operation_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_JSON_FORMAT_ATTRIBUTE_T Type 🔗
The JSON file format attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_json_format_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_format_attribute_t (
encoding varchar2(32767),
sample_entity_data varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_json_format_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_json_format_attribute_t (
model_type varchar2,
is_file_pattern number,
encoding varchar2,
sample_entity_data varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_json_format_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_format_attribute_t type.
Fields
Field
Description
encoding
(optional) The encoding for the file.
sample_entity_data
(optional) Sample JSON with all fields of JSON schema specified in it for the JSON data files used in Data Flow, Data Loader or Data Preview and should be specified in Base64 encoded format. Maximum size is 2 MB.
DBMS_CLOUD_OCI_DATAINTEGRATION_JSON_TEXT_T Type 🔗
The JSON type of the formatted text.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_json_text_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_json_text_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_json_text_t (
model_type varchar2,
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
model_type
(optional) The object type.
config_values
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_KEY_RANGE_T Type 🔗
The information about key range.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_key_range_t FORCE AUTHID CURRENT_USER IS OBJECT (
key dbms_cloud_oci_dataintegration_shape_field_t,
range dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_range_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_range_t (
key dbms_cloud_oci_dataintegration_shape_field_t,
range dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional)
range
(optional) The key range.
DBMS_CLOUD_OCI_DATAINTEGRATION_PARTITION_CONFIG_T Type 🔗
The information about partition configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_partition_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_partition_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_partition_config_t (
model_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The type of partition configuration.
Allowed values are: 'KEYRANGEPARTITIONCONFIG'
DBMS_CLOUD_OCI_DATAINTEGRATION_KEY_RANGE_PARTITION_CONFIG_T Type 🔗
The information about key range.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_key_range_partition_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_partition_config_t (
partition_number number,
key_range dbms_cloud_oci_dataintegration_key_range_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_range_partition_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_key_range_partition_config_t (
model_type varchar2,
partition_number number,
key_range dbms_cloud_oci_dataintegration_key_range_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_key_range_partition_config_t is a subtype of the dbms_cloud_oci_dataintegration_partition_config_t type.
Fields
Field
Description
partition_number
(optional) The partition number for the key range.
key_range
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_LAST_RUN_DETAILS_T Type 🔗
The last run details for the task run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_last_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
model_type varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
last_run_time_millis number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_last_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_last_run_details_t (
key varchar2,
model_version varchar2,
model_type varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
last_run_time_millis number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify Last run details of a task schedule. On scenarios where reference to the lastRunDetails is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
last_run_time_millis
(optional) Time in milliseconds for the pervious schedule.
DBMS_CLOUD_OCI_DATAINTEGRATION_LOOKUP_T Type 🔗
The information about the lookup operator. The lookup operator has two input links, a primary input, and a lookup source input. It has an output link, fields of the lookup input are appended to the primary input and projected as the output fields.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_lookup_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
lookup_condition dbms_cloud_oci_dataintegration_expression_t,
is_skip_no_match number,
multi_match_strategy varchar2(32767),
null_fill_values json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_lookup_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_lookup_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
lookup_condition dbms_cloud_oci_dataintegration_expression_t,
is_skip_no_match number,
multi_match_strategy varchar2,
null_fill_values json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_lookup_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
lookup_condition
(optional)
is_skip_no_match
(optional) For the rows for which lookup condition does not satisfy, if set to true - do not return those rows of primary Input source and if set to false - create a row with primary input fields values and lookup field values as NULL.
multi_match_strategy
(optional) if there are multiple records found in the lookup input what action should be performed. The default value for this field is RETURN_ANY.
(optional) this map is used for replacing NULL values in the record. Key is the column name and value is the NULL replacement.
DBMS_CLOUD_OCI_DATAINTEGRATION_MACRO_FIELD_T Type 🔗
The type representing the macro field concept. Macro fields have an expression to define a macro.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_macro_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
expr dbms_cloud_oci_dataintegration_expression_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
is_use_source_type number,
use_type dbms_cloud_oci_dataintegration_configured_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_macro_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_macro_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
expr dbms_cloud_oci_dataintegration_expression_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
is_use_source_type number,
use_type dbms_cloud_oci_dataintegration_configured_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_macro_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
expr
(optional)
l_type
(optional)
is_use_source_type
(optional) Specifies whether the type of macro fields is inferred from an expression or useType (false) or the source field (true).
use_type
(optional)
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows, and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_MACRO_PIVOT_FIELD_T Type 🔗
MacroPivotField is used for the PivotField with macro expressions. It can contain the rules according to the macro pattern/attribute added and create new fields according to the PivotKeyValues
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_macro_pivot_field_t FORCE AUTHID CURRENT_USER IS OBJECT (
is_use_source_type number,
expr dbms_cloud_oci_dataintegration_expression_t,
use_type dbms_cloud_oci_dataintegration_configured_type_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
column_name_pattern varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_macro_pivot_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_macro_pivot_field_t (
is_use_source_type number,
expr dbms_cloud_oci_dataintegration_expression_t,
use_type dbms_cloud_oci_dataintegration_configured_type_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
column_name_pattern varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
is_use_source_type
(optional) Specifies whether the type of macro fields is inferred from an expression or useType (false) or the source field (true).
expr
(optional)
use_type
(optional)
l_type
(optional)
column_name_pattern
(optional) column name pattern can be used to generate the name structure of the generated columns. By default column names are of %PIVOT_KEY_VALUE% or %MACRO_INPUT%_%PIVOT_KEY_VALUE%, but we can change it something by passing something like MY_PREFIX%PIVOT_KEY_VALUE%MY_SUFFIX or MY_PREFIX%MACRO_INPUT%_%PIVOT_KEY_VALUE%MY_SUFFIX which will add custom prefix and suffix to the column name.
DBMS_CLOUD_OCI_DATAINTEGRATION_MAP_TYPE_T Type 🔗
Map type object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_map_type_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_base_type_t (
key_element_type varchar2(32767),
value_element_type varchar2(32767),
contains_null number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_map_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_map_type_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_status number,
description varchar2,
key_element_type varchar2,
value_element_type varchar2,
contains_null number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_map_type_t is a subtype of the dbms_cloud_oci_dataintegration_base_type_t type.
Fields
Field
Description
key_element_type
(optional) Seeded type
value_element_type
(optional) Seeded type
contains_null
(optional) Defines whether null values are allowed.
DBMS_CLOUD_OCI_DATAINTEGRATION_MERGE_OPERATOR_T Type 🔗
Represents the start of a pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_merge_operator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
trigger_rule varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_merge_operator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_merge_operator_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
trigger_rule varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_merge_operator_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
trigger_rule
(optional) The merge condition. The conditions are ALL_SUCCESS - All the preceeding operators need to be successful. ALL_FAILED - All the preceeding operators should have failed. ALL_COMPLETE - All the preceeding operators should have completed. It could have executed successfully or failed. ONE_SUCCESS - Atleast one of the preceeding operators should have succeeded. ONE_FAILED - Atleast one of the preceeding operators should have failed.
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_minus_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
minus_type varchar2(32767),
is_all number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_minus_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_minus_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
minus_type varchar2,
is_all number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_minus_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
minus_type
(optional) minusType
Allowed values are: 'NAME', 'POSITION'
is_all
(optional) The information about the minus all.
DBMS_CLOUD_OCI_DATAINTEGRATION_NUMBER_TBL Type 🔗
Nested table type of number.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_number_tbl FORCE IS TABLE OF (number) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_MONTHLY_FREQUENCY_DETAILS_T Type 🔗
Frequency Details model for monthly frequency.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_monthly_frequency_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_frequency_details_t (
interval number,
time dbms_cloud_oci_dataintegration_time_t,
days dbms_cloud_oci_dataintegration_number_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_monthly_frequency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_monthly_frequency_details_t (
model_type varchar2,
frequency varchar2,
interval number,
time dbms_cloud_oci_dataintegration_time_t,
days dbms_cloud_oci_dataintegration_number_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_monthly_frequency_details_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_frequency_details_t type.
Fields
Field
Description
interval
(optional) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
time
(optional)
days
(optional) A list of days of the month to be scheduled. i.e. excute every 2nd,3rd, 10th of the month.
DBMS_CLOUD_OCI_DATAINTEGRATION_MONTHLY_RULE_FREQUENCY_DETAILS_T Type 🔗
Frequency Details model for monthly frequency based on week of month and day of week.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_monthly_rule_frequency_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_frequency_details_t (
week_of_month varchar2(32767),
interval number,
time dbms_cloud_oci_dataintegration_time_t,
day_of_week varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_monthly_rule_frequency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_monthly_rule_frequency_details_t (
model_type varchar2,
frequency varchar2,
week_of_month varchar2,
interval number,
time dbms_cloud_oci_dataintegration_time_t,
day_of_week varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_monthly_rule_frequency_details_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_frequency_details_t type.
Fields
Field
Description
week_of_month
(optional) This holds the week of the month in which the schedule should be triggered.
(optional) This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.
time
(optional)
day_of_week
(optional) This holds the day of the week on which the schedule should be triggered.
DBMS_CLOUD_OCI_DATAINTEGRATION_NAME_LIST_RULE_T Type 🔗
The name list rule which defines how fields are projected. For example, this may be all fields begining with STR.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_name_list_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_projection_rule_t (
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2(32767),
is_case_sensitive number,
rule_type varchar2(32767),
names dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_name_list_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_name_list_rule_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2,
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2,
is_case_sensitive number,
rule_type varchar2,
names dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_name_list_rule_t is a subtype of the dbms_cloud_oci_dataintegration_projection_rule_t type.
Fields
Field
Description
is_skip_remaining_rules_on_match
(optional) Specifies whether to skip remaining rules when a match is found.
scope
(optional) Reference to a typed object. This can be either a key value to an object within the document, a shall referenced to a `TypedObject`, or a full `TypedObject` definition.
(optional) Specifies if the rule is case sensitive.
rule_type
(optional) The rule type.
Allowed values are: 'INCLUDE', 'EXCLUDE'
names
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
DBMS_CLOUD_OCI_DATAINTEGRATION_NAME_PATTERN_RULE_T Type 🔗
This rule projects fields by a name pattern, for example it may start with STR_ or end with _DATE. This is defined using a regular expression.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_name_pattern_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_projection_rule_t (
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2(32767),
is_case_sensitive number,
rule_type varchar2(32767),
pattern varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_name_pattern_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_name_pattern_rule_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2,
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2,
is_case_sensitive number,
rule_type varchar2,
pattern varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_name_pattern_rule_t is a subtype of the dbms_cloud_oci_dataintegration_projection_rule_t type.
Fields
Field
Description
is_skip_remaining_rules_on_match
(optional) Specifies whether to skip remaining rules when a match is found.
scope
(optional) Reference to a typed object. This can be either a key value to an object within the document, a shall referenced to a `TypedObject`, or a full `TypedObject` definition.
(optional) Specifies if the rule is case sensitive.
rule_type
(optional) The rule type.
Allowed values are: 'INCLUDE', 'EXCLUDE'
pattern
(optional) The rule pattern.
DBMS_CLOUD_OCI_DATAINTEGRATION_NAMED_ENTITY_MAP_T Type 🔗
A named field map.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_named_entity_map_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_field_map_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
source_entity varchar2(32767),
target_entity varchar2(32767),
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_named_entity_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_named_entity_map_t (
model_type varchar2,
description varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
source_entity varchar2,
target_entity varchar2,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_named_entity_map_t is a subtype of the dbms_cloud_oci_dataintegration_field_map_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
config_values
(optional)
source_entity
(optional) The source entity name.
target_entity
(optional) The target entity name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_OBJECT_STORAGE_WRITE_ATTRIBUTE_T Type 🔗
Properties to configure writing to Object Storage.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_object_storage_write_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
write_to_single_file number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_object_storage_write_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_object_storage_write_attribute_t (
model_type varchar2,
write_to_single_file number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_object_storage_write_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
write_to_single_file
(optional) Specifies whether to write output to single-file or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_OBJECT_STORAGE_WRITE_ATTRIBUTES_T Type 🔗
Properties to configure writing to Object Storage.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_object_storage_write_attributes_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
write_to_single_file number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_object_storage_write_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_object_storage_write_attributes_t (
model_type varchar2,
write_to_single_file number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_object_storage_write_attributes_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
write_to_single_file
(optional) Specifies whether to write output to single-file or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_OCI_VAULT_SECRET_CONFIG_T Type 🔗
Properties used for specifying OCI vault configuration
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oci_vault_secret_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_secret_config_t (
secret_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oci_vault_secret_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oci_vault_secret_config_t (
model_type varchar2,
secret_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oci_vault_secret_config_t is a subtype of the dbms_cloud_oci_dataintegration_secret_config_t type.
Fields
Field
Description
secret_id
(optional) OCID of the OCI vault secret
DBMS_CLOUD_OCI_DATAINTEGRATION_OPERATION_T Type 🔗
The operation object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_operation_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operation_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
model_type
(required) The operation type.
Allowed values are: 'PROCEDURE', 'API'
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_OPERATION_FROM_API_T Type 🔗
The API operation object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_operation_from_api_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operation_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
shape dbms_cloud_oci_dataintegration_shape_t,
name varchar2(32767),
object_version number,
external_key varchar2(32767),
resource_name varchar2(32767),
object_status number,
operation_attributes dbms_cloud_oci_dataintegration_generic_rest_api_attributes_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operation_from_api_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operation_from_api_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
shape dbms_cloud_oci_dataintegration_shape_t,
name varchar2,
object_version number,
external_key varchar2,
resource_name varchar2,
object_status number,
operation_attributes dbms_cloud_oci_dataintegration_generic_rest_api_attributes_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_operation_from_api_t is a subtype of the dbms_cloud_oci_dataintegration_operation_t type.
Fields
Field
Description
key
(optional) The operation key, used to identiying this metadata object within the dataflow.
model_version
(optional) The model version of the object.
parent_ref
(optional)
shape
(optional)
name
(required) The operation name. This value is unique.
object_version
(optional) The version of the object that is used to track changes in the object instance.
external_key
(optional) The external key for the object.
resource_name
(required) The resource name.
object_status
(optional) The status of an object that can be set to value 1 for shallow reference across objects, other values reserved.
operation_attributes
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_OPERATION_FROM_PROCEDURE_T Type 🔗
The operation object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_operation_from_procedure_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operation_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
shape dbms_cloud_oci_dataintegration_shape_t,
name varchar2(32767),
object_version number,
external_key varchar2(32767),
resource_name varchar2(32767),
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operation_from_procedure_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_operation_from_procedure_t (
model_type varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
shape dbms_cloud_oci_dataintegration_shape_t,
name varchar2,
object_version number,
external_key varchar2,
resource_name varchar2,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_operation_from_procedure_t is a subtype of the dbms_cloud_oci_dataintegration_operation_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The model version of the object.
parent_ref
(optional)
shape
(optional)
name
(optional) The operation name.
object_version
(optional) The version of the object that is used to track changes in the object instance.
external_key
(optional) The external key for the object.
resource_name
(optional) The resource name.
object_status
(optional) The status of an object that can be set to value 1 for shallow reference across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_ADWC_WRITE_ATTRIBUTE_T Type 🔗
Properties to configure writing to Oracle Autonomous Data Warehouse Cloud.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_adwc_write_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
bucket_name varchar2(32767),
staging_file_name varchar2(32767),
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_adwc_write_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_adwc_write_attribute_t (
model_type varchar2,
bucket_name varchar2,
staging_file_name varchar2,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_adwc_write_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
bucket_name
(optional) The bucket name for the attribute.
staging_file_name
(optional) The file name for the attribute.
staging_data_asset
(optional)
staging_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_ADWC_WRITE_ATTRIBUTES_T Type 🔗
Properties to configure when writing to Oracle Autonomous Data Warehouse Cloud.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_adwc_write_attributes_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
staging_file_name varchar2(32767),
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_adwc_write_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_adwc_write_attributes_t (
model_type varchar2,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
staging_file_name varchar2,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_adwc_write_attributes_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
bucket_schema
(optional)
staging_file_name
(optional) The file name for the attribute.
staging_data_asset
(optional)
staging_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_ATP_WRITE_ATTRIBUTE_T Type 🔗
Properties to configure writing to Oracle Autonomous Transaction Processing.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_atp_write_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
bucket_name varchar2(32767),
staging_file_name varchar2(32767),
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_atp_write_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_atp_write_attribute_t (
model_type varchar2,
bucket_name varchar2,
staging_file_name varchar2,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_atp_write_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
bucket_name
(optional) The bucket name for the attribute.
staging_file_name
(optional) The file name for the attribute.
staging_data_asset
(optional)
staging_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_ATP_WRITE_ATTRIBUTES_T Type 🔗
Properties to configure when writing to Oracle Autonomous Data Warehouse Cloud.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_atp_write_attributes_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
staging_file_name varchar2(32767),
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_atp_write_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_atp_write_attributes_t (
model_type varchar2,
bucket_schema dbms_cloud_oci_dataintegration_schema_t,
staging_file_name varchar2,
staging_data_asset dbms_cloud_oci_dataintegration_data_asset_t,
staging_connection dbms_cloud_oci_dataintegration_connection_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_atp_write_attributes_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
bucket_schema
(optional)
staging_file_name
(optional) The file name for the attribute.
staging_data_asset
(optional)
staging_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_READ_ATTRIBUTE_T Type 🔗
The Oracle read attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_read_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_read_attribute_t (
fetch_size number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_read_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_read_attribute_t (
model_type varchar2,
fetch_size number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_read_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_read_attribute_t type.
Fields
Field
Description
fetch_size
(optional) The fetch size for reading.
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_READ_ATTRIBUTES_T Type 🔗
Properties to configure reading from an Oracle Database.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_read_attributes_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_read_attribute_t (
fetch_size number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_read_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_read_attributes_t (
model_type varchar2,
fetch_size number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_read_attributes_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_read_attribute_t type.
Fields
Field
Description
fetch_size
(optional) The fetch size for reading.
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_WRITE_ATTRIBUTE_T Type 🔗
The Oracle write attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_write_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
batch_size number,
is_truncate number,
isolation_level varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_write_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_write_attribute_t (
model_type varchar2,
batch_size number,
is_truncate number,
isolation_level varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_write_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
batch_size
(optional) The batch size for writing.
is_truncate
(optional) Specifies whether to truncate.
isolation_level
(optional) Specifies the isolation level.
DBMS_CLOUD_OCI_DATAINTEGRATION_ORACLE_WRITE_ATTRIBUTES_T Type 🔗
Properties to configure when writing to an Oracle Database.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_oracle_write_attributes_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_write_attribute_t (
batch_size number,
is_truncate number,
isolation_level varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_write_attributes_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_oracle_write_attributes_t (
model_type varchar2,
batch_size number,
is_truncate number,
isolation_level varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_oracle_write_attributes_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_write_attribute_t type.
Fields
Field
Description
batch_size
(optional) The batch size for writing.
is_truncate
(optional) Specifies whether to truncate.
isolation_level
(optional) Specifies the isolation level.
DBMS_CLOUD_OCI_DATAINTEGRATION_OUTPUT_FIELD_T Type 🔗
Output fields of an operator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_output_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_output_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_output_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_output_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
l_type
(optional)
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_PARQUET_FORMAT_ATTRIBUTE_T Type 🔗
The PARQUET format attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_parquet_format_attribute_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_format_attribute_t (
compression varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parquet_format_attribute_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_parquet_format_attribute_t (
model_type varchar2,
is_file_pattern number,
compression varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_parquet_format_attribute_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_format_attribute_t type.
Fields
Field
Description
compression
(optional) The compression for the file.
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_T Type 🔗
The patch object contains the audit summary information and the definition of the patch.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
time_patched timestamp with time zone,
error_messages json_element_t,
application_version number,
patch_type varchar2(32767),
patch_status varchar2(32767),
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
patch_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
time_patched timestamp with time zone,
error_messages json_element_t,
application_version number,
patch_type varchar2,
patch_status varchar2,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
patch_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
time_patched
(optional) The date and time the patch was applied, in the timestamp format defined by RFC3339.
error_messages
(optional) The errors encountered while applying the patch, if any.
application_version
(optional) The application version of the patch.
patch_type
(optional) The type of the patch applied or being applied on the application.
(optional) List of dependent objects in this patch.
patch_object_metadata
(optional) List of objects that are published or unpublished in this patch.
parent_ref
(optional)
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_CHANGE_SUMMARY_T Type 🔗
This is the patch report summary information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_change_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
name varchar2(32767),
name_path varchar2(32767),
l_type varchar2(32767),
object_version number,
identifier varchar2(32767),
action varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_change_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_change_summary_t (
key varchar2,
name varchar2,
name_path varchar2,
l_type varchar2,
object_version number,
identifier varchar2,
action varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
name_path
(optional) The fully qualified path of the published object, which would include its project and folder.
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
action
(optional) The patch action indicating if object was created, updated, or deleted.
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_CHANGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_patch_change_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_change_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_patch_change_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_CHANGE_SUMMARY_COLLECTION_T Type 🔗
This is the collection of patch report summaries,. It may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_change_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_patch_change_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_change_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_change_summary_collection_t (
items dbms_cloud_oci_dataintegration_patch_change_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of patch summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_SUMMARY_T Type 🔗
The patch summary type contains the audit summary information and the definition of the patch.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
time_patched timestamp with time zone,
error_messages json_element_t,
application_version number,
patch_type varchar2(32767),
patch_status varchar2(32767),
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
patch_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
time_patched timestamp with time zone,
error_messages json_element_t,
application_version number,
patch_type varchar2,
patch_status varchar2,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
patch_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
time_patched
(optional) The date and time the patch was applied, in the timestamp format defined by RFC3339.
error_messages
(optional) The errors encountered while applying the patch, if any.
application_version
(optional) The application version of the patch.
patch_type
(optional) The type of the patch applied or being applied on the application.
(optional) List of dependent objects in this patch.
patch_object_metadata
(optional) List of objects that are published or unpublished in this patch.
parent_ref
(optional)
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_patch_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_patch_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PATCH_SUMMARY_COLLECTION_T Type 🔗
This is the collection of patch summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_patch_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_patch_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_patch_summary_collection_t (
items dbms_cloud_oci_dataintegration_patch_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of patch summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_SUMMARY_T Type 🔗
The pipeline summary type contains the audit summary information and the definition of the pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
model_type varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_summary_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
model_type varchar2,
object_version number,
object_status number,
identifier varchar2,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify pipeline. On scenarios where reference to the pipeline is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
model_type
(optional) The type of the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
nodes
(optional) A list of nodes attached to the pipeline.
parameters
(optional) A list of parameters for the pipeline, this allows certain aspects of the pipeline to be configured when the pipeline is executed.
flow_config_values
(optional)
variables
(optional) The list of variables required in pipeline, variables can be used to store values that can be used as inputs to tasks in the pipeline.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_pipeline_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_pipeline_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_SUMMARY_COLLECTION_T Type 🔗
This is the collection of pipeline summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_pipeline_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_summary_collection_t (
items dbms_cloud_oci_dataintegration_pipeline_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of pipeline summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_VALIDATION_T Type 🔗
The information about a pipeline validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_validation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_validation_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) The total number of validation messages.
error_message_count
(optional) The total number of validation error messages.
warn_message_count
(optional) The total number of validation warning messages.
info_message_count
(optional) The total number of validation information messages.
validation_messages
(optional) The detailed information of the pipeline object validation.
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_VALIDATION_SUMMARY_T Type 🔗
The information about a pipeline validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_validation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_validation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_validation_summary_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) The total number of validation messages.
error_message_count
(optional) The total number of validation error messages.
warn_message_count
(optional) The total number of validation warning messages.
info_message_count
(optional) The total number of validation information messages.
validation_messages
(optional) The detailed information of the pipeline object validation.
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_VALIDATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_pipeline_validation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_validation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_pipeline_validation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PIPELINE_VALIDATION_SUMMARY_COLLECTION_T Type 🔗
A list of pipeline validation summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pipeline_validation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_pipeline_validation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_validation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pipeline_validation_summary_collection_t (
items dbms_cloud_oci_dataintegration_pipeline_validation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of validation summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_PIVOT_KEYS_T Type 🔗
The type representing the pivot key and pivot value details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pivot_keys_t FORCE AUTHID CURRENT_USER IS OBJECT (
pivot_axis dbms_cloud_oci_dataintegration_varchar2_tbl,
pivot_key_value_map json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pivot_keys_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pivot_keys_t (
pivot_axis dbms_cloud_oci_dataintegration_varchar2_tbl,
pivot_key_value_map json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_status number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
pivot_axis
(optional) The pivot axis is the point around which the table will be rotated, and the pivot values will be transposed into columns in the output table.
pivot_key_value_map
(optional) Map of alias to pivot key values.
key
(optional) The key of the object.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_PIVOT_T Type 🔗
Pivot operator has one input and one output. Pivot operator takes group by columns, a pivot key with values and aggregations. Output is the pivoted table.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pivot_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
group_by_columns dbms_cloud_oci_dataintegration_dynamic_proxy_field_t,
materialized_group_by_columns dbms_cloud_oci_dataintegration_materialized_dynamic_field_t,
pivot_keys dbms_cloud_oci_dataintegration_pivot_keys_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pivot_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pivot_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
group_by_columns dbms_cloud_oci_dataintegration_dynamic_proxy_field_t,
materialized_group_by_columns dbms_cloud_oci_dataintegration_materialized_dynamic_field_t,
pivot_keys dbms_cloud_oci_dataintegration_pivot_keys_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_pivot_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
group_by_columns
(optional)
materialized_group_by_columns
(optional)
pivot_keys
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PIVOT_FIELD_T Type 🔗
The type representing the pivot field. Pivot fields have an expression to define a macro and a pattern to generate the column name
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_pivot_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
expr dbms_cloud_oci_dataintegration_expression_t,
use_type dbms_cloud_oci_dataintegration_configured_type_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
column_name_pattern varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pivot_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_pivot_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
expr dbms_cloud_oci_dataintegration_expression_t,
use_type dbms_cloud_oci_dataintegration_configured_type_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
column_name_pattern varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_pivot_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
expr
(optional)
use_type
(optional)
l_type
(optional)
column_name_pattern
(optional) column name pattern can be used to generate the name structure of the generated columns. By default column names are of %PIVOT_KEY_VALUE% or %MACRO_INPUT%_%PIVOT_KEY_VALUE%, but we can change it something by passing something like MY_PREFIX%PIVOT_KEY_VALUE%MY_SUFFIX or MY_PREFIX%MACRO_INPUT%_%PIVOT_KEY_VALUE%MY_SUFFIX which will add custom prefix and suffix to the column name.
DBMS_CLOUD_OCI_DATAINTEGRATION_PRIMARY_KEY_T Type 🔗
The primary key object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_primary_key_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_unique_key_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_primary_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_primary_key_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
attribute_refs dbms_cloud_oci_dataintegration_key_attribute_tbl,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_primary_key_t is a subtype of the dbms_cloud_oci_dataintegration_unique_key_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECT_T Type 🔗
The project type contains the audit summary information and the definition of the project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_project_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify project.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the project.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
parent_ref
(optional)
metadata
(optional)
key_map
(optional) A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECT_DETAILS_T Type 🔗
The details including name and description for the project, which is a container of folders, tasks, and dataflows.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_project_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify project.
model_type
(required) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the project.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(required) The version of the object that is used to track changes in the object instance.
parent_ref
(optional)
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECT_SUMMARY_T Type 🔗
The project summary type contains the audit summary information and the definition of the project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_project_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify project.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the project.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
parent_ref
(optional)
metadata
(optional)
key_map
(optional) A key map. If provided, the key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_project_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_project_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_project_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECT_SUMMARY_COLLECTION_T Type 🔗
A collection of project summaries. The collection can be lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_project_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_project_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_project_summary_collection_t (
items dbms_cloud_oci_dataintegration_project_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of project summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_PROJECTION_T Type 🔗
The information about the projection object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_projection_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_projection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_projection_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_projection_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_PROXY_FIELD_T Type 🔗
A proxy field.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_proxy_field_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_typed_object_t (
scope json_element_t,
scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_proxy_field_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_proxy_field_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
name varchar2,
description varchar2,
scope json_element_t,
scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
l_type dbms_cloud_oci_dataintegration_base_type_t,
labels dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_proxy_field_t is a subtype of the dbms_cloud_oci_dataintegration_typed_object_t type.
Fields
Field
Description
scope
(optional) Deprecated - Reference to a typed object. This can be either a key value to an object within the document, a shall referenced to a `TypedObject`, or a full `TypedObject` definition.
scope_reference
(optional)
l_type
(optional)
labels
(optional) Labels are keywords or labels that you can add to data assets, dataflows and so on. You can define your own labels and use them to categorize content.
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_T Type 🔗
The information about the published object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in create.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_FROM_DATA_LOADER_TASK_T Type 🔗
The data loader task published object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_from_data_loader_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_published_object_t (
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_data_loader_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_data_loader_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_published_object_from_data_loader_task_t is a subtype of the dbms_cloud_oci_dataintegration_published_object_t type.
Fields
Field
Description
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
data_flow
(optional)
conditional_composite_field_map
(optional)
is_single_load
(optional) If true, defines a singular load.
parallel_load_limit
(optional) If not a singular load, this defines the number of entities being loaded in parallel at a time for a Data Loader task.
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_FROM_INTEGRATION_TASK_T Type 🔗
The integration task published object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_from_integration_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_published_object_t (
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_integration_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_integration_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_published_object_from_integration_task_t is a subtype of the dbms_cloud_oci_dataintegration_published_object_t type.
Fields
Field
Description
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_FROM_PIPELINE_TASK_T Type 🔗
The pipeline task published object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_published_object_t (
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_t is a subtype of the dbms_cloud_oci_dataintegration_published_object_t type.
Fields
Field
Description
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
pipeline
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_SUMMARY_T Type 🔗
The published obect summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in create.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_FROM_PIPELINE_TASK_SUMMARY_T Type 🔗
The pipeline task published object summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_summary_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_published_object_summary_t (
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_summary_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_published_object_from_pipeline_task_summary_t is a subtype of the dbms_cloud_oci_dataintegration_published_object_summary_t type.
Fields
Field
Description
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
pipeline
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_published_object_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_published_object_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_SUMMARY_COLLECTION_T Type 🔗
This is the collection of published object summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_published_object_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_collection_t (
items dbms_cloud_oci_dataintegration_published_object_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of published object summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_SUMMARY_FROM_DATA_LOADER_TASK_T Type 🔗
The data loader task published object summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_summary_from_data_loader_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_published_object_summary_t (
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_from_data_loader_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_from_data_loader_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_published_object_summary_from_data_loader_task_t is a subtype of the dbms_cloud_oci_dataintegration_published_object_summary_t type.
Fields
Field
Description
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_PUBLISHED_OBJECT_SUMMARY_FROM_INTEGRATION_TASK_T Type 🔗
The integration task published object summary.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_published_object_summary_from_integration_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_published_object_summary_t (
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_from_integration_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_published_object_summary_from_integration_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_published_object_summary_from_integration_task_t is a subtype of the dbms_cloud_oci_dataintegration_published_object_summary_t type.
Fields
Field
Description
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_QUERY_T Type 🔗
A query object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_query_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_push_down_operation_t (
query varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_query_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_query_t (
model_type varchar2,
query varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_query_t is a subtype of the dbms_cloud_oci_dataintegration_push_down_operation_t type.
Fields
Field
Description
query
(optional) A query string.
DBMS_CLOUD_OCI_DATAINTEGRATION_PUSH_DOWN_OPERATION_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_push_down_operation_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_push_down_operation_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_push_down_operation_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_READ_OPERATION_CONFIG_T Type 🔗
The information about the read operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_read_operation_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_data_operation_config_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
operations dbms_cloud_oci_dataintegration_push_down_operation_tbl,
data_format dbms_cloud_oci_dataintegration_data_format_t,
partition_config dbms_cloud_oci_dataintegration_partition_config_t,
read_attribute dbms_cloud_oci_dataintegration_abstract_read_attribute_t,
incremental_read_config dbms_cloud_oci_dataintegration_incremental_read_config_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_read_operation_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_read_operation_config_t (
model_type varchar2,
metadata_config_properties json_element_t,
derived_attributes json_element_t,
call_attribute dbms_cloud_oci_dataintegration_bip_call_attribute_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
operations dbms_cloud_oci_dataintegration_push_down_operation_tbl,
data_format dbms_cloud_oci_dataintegration_data_format_t,
partition_config dbms_cloud_oci_dataintegration_partition_config_t,
read_attribute dbms_cloud_oci_dataintegration_abstract_read_attribute_t,
incremental_read_config dbms_cloud_oci_dataintegration_incremental_read_config_t,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_read_operation_config_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_data_operation_config_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
operations
(optional) An array of operations.
data_format
(optional)
partition_config
(optional)
read_attribute
(optional)
incremental_read_config
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_CHILD_REFERENCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_child_reference_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_child_reference_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_child_reference_t) NOT PERSISTABLE;
(optional) The target object referenced. References are made to data assets and child references are made to connections. The type defining this reference is mentioned in the property type.
aggregator_key
(optional) The aggregator of reference object.
used_by
(optional) List of published objects where this is used.
child_references
(optional) List of references that are dependent on this reference.
DBMS_CLOUD_OCI_DATAINTEGRATION_REFERENCE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_reference_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_reference_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_reference_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_REFERENCE_SUMMARY_COLLECTION_T Type 🔗
This is the collection of references.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_reference_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_reference_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_reference_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_reference_summary_collection_t (
items dbms_cloud_oci_dataintegration_reference_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of application summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_REFERENCED_DATA_OBJECT_FROM_API_T Type 🔗
The input procedure object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_referenced_data_object_from_api_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_referenced_data_object_t (
key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_referenced_data_object_from_api_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_referenced_data_object_from_api_t (
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_version number,
resource_name varchar2,
object_status number,
external_key varchar2,
key varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_referenced_data_object_from_api_t is a subtype of the dbms_cloud_oci_dataintegration_referenced_data_object_t type.
Fields
Field
Description
key
(optional) The object key.
DBMS_CLOUD_OCI_DATAINTEGRATION_REFERENCED_DATA_OBJECT_FROM_PROCEDURE_T Type 🔗
The input procedure object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_referenced_data_object_from_procedure_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_referenced_data_object_t (
key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_referenced_data_object_from_procedure_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_referenced_data_object_from_procedure_t (
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
object_version number,
resource_name varchar2,
object_status number,
external_key varchar2,
key varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_referenced_data_object_from_procedure_t is a subtype of the dbms_cloud_oci_dataintegration_referenced_data_object_t type.
Fields
Field
Description
key
(optional) The object key.
DBMS_CLOUD_OCI_DATAINTEGRATION_RENAME_RULE_T Type 🔗
Lets you rename an attribute.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_rename_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_projection_rule_t (
is_skip_remaining_rules_on_match number,
from_name varchar2(32767),
to_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rename_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rename_rule_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2,
is_skip_remaining_rules_on_match number,
from_name varchar2,
to_name varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_rename_rule_t is a subtype of the dbms_cloud_oci_dataintegration_projection_rule_t type.
Fields
Field
Description
is_skip_remaining_rules_on_match
(optional) Specifies whether to skip remaining rules when a match is found.
from_name
(optional) The attribute name that needs to be renamed.
to_name
(optional) The new attribute name.
DBMS_CLOUD_OCI_DATAINTEGRATION_RESOURCE_PRINCIPAL_AUTH_CONFIG_T Type 🔗
Authentication configuration that uses OCI Resource Principal Auth for Generic REST invocation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_resource_principal_auth_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_auth_config_t (
resource_principal_source varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_resource_principal_auth_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_resource_principal_auth_config_t (
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
model_type varchar2,
resource_principal_source varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_resource_principal_auth_config_t is a subtype of the dbms_cloud_oci_dataintegration_auth_config_t type.
Fields
Field
Description
resource_principal_source
(optional) The OCI resource type that will supply the authentication token
Allowed values are: 'WORKSPACE', 'APPLICATION'
DBMS_CLOUD_OCI_DATAINTEGRATION_REST_CALL_CONFIG_T Type 🔗
The REST API configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_rest_call_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
method_type varchar2(32767),
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rest_call_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rest_call_config_t (
method_type varchar2,
request_headers json_element_t,
config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_RULE_BASED_ENTITY_MAP_T Type 🔗
A map of rule patterns.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_rule_based_entity_map_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_field_map_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
map_type varchar2(32767),
from_pattern varchar2(32767),
to_pattern varchar2(32767),
is_java_regex_syntax number,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rule_based_entity_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rule_based_entity_map_t (
model_type varchar2,
description varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
map_type varchar2,
from_pattern varchar2,
to_pattern varchar2,
is_java_regex_syntax number,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_rule_based_entity_map_t is a subtype of the dbms_cloud_oci_dataintegration_field_map_t type.
Fields
Field
Description
key
(optional) The object key.
model_version
(optional) The object's model version.
parent_ref
(optional)
config_values
(optional)
map_type
(optional) mapType
Allowed values are: 'MAPBYNAME', 'MAPBYPATTERN'
from_pattern
(optional) The pattern to map from.
to_pattern
(optional) The pattern to map to.
is_java_regex_syntax
(optional) Specifies whether the rule uses a java regex syntax.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_RULE_TYPE_CONFIG_T Type 🔗
The rule type config.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_rule_type_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_dynamic_type_handler_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
scope json_element_t,
scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
is_order_by_rule number,
projection_rules dbms_cloud_oci_dataintegration_projection_rule_tbl,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rule_type_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rule_type_config_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
scope json_element_t,
scope_reference dbms_cloud_oci_dataintegration_scope_reference_t,
is_order_by_rule number,
projection_rules dbms_cloud_oci_dataintegration_projection_rule_tbl,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_rule_type_config_t is a subtype of the dbms_cloud_oci_dataintegration_dynamic_type_handler_t type.
Fields
Field
Description
key
(optional) The key of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
scope
(optional) Deprecated - Reference to a typed object, this can be either a key value to an object within the document, a shall referenced to a `TypedObject` or a full `TypedObject` definition.
scope_reference
(optional)
is_order_by_rule
(optional) Specifies whether it is ordered by rule.
projection_rules
(optional) The projection rules.
config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
DBMS_CLOUD_OCI_DATAINTEGRATION_RULE_BASED_FIELD_MAP_T Type 🔗
A map of rule patterns.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_rule_based_field_map_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_field_map_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
map_type varchar2(32767),
from_pattern varchar2(32767),
to_pattern varchar2(32767),
is_java_regex_syntax number,
object_status number,
from_rule_config dbms_cloud_oci_dataintegration_rule_type_config_t,
to_rule_config dbms_cloud_oci_dataintegration_rule_type_config_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rule_based_field_map_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_rule_based_field_map_t (
model_type varchar2,
description varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
config_values dbms_cloud_oci_dataintegration_config_values_t,
map_type varchar2,
from_pattern varchar2,
to_pattern varchar2,
is_java_regex_syntax number,
object_status number,
from_rule_config dbms_cloud_oci_dataintegration_rule_type_config_t,
to_rule_config dbms_cloud_oci_dataintegration_rule_type_config_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_rule_based_field_map_t is a subtype of the dbms_cloud_oci_dataintegration_field_map_t type.
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
object_version
(optional) The version of the object that is used to track changes in the object instance.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
object_version
(optional) The version of the object that is used to track changes in the object instance.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
DBMS_CLOUD_OCI_DATAINTEGRATION_RUNTIME_OPERATOR_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_runtime_operator_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_runtime_operator_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_runtime_operator_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_RUNTIME_OPERATOR_SUMMARY_COLLECTION_T Type 🔗
List of runtimeOperator summaries
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_runtime_operator_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_runtime_operator_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_operator_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_operator_summary_collection_t (
items dbms_cloud_oci_dataintegration_runtime_operator_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of runtimeOperator summaries
DBMS_CLOUD_OCI_DATAINTEGRATION_RUNTIME_OPERATOR_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_runtime_operator_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_runtime_operator_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_runtime_operator_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_RUNTIME_PIPELINE_T Type 🔗
Runtime pipeline model which holds the runtime metadata of the task executed.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_runtime_pipeline_t FORCE AUTHID CURRENT_USER IS OBJECT (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
runtime_operators dbms_cloud_oci_dataintegration_runtime_operator_tbl,
parent_runtime_operator_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_pipeline_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_pipeline_t (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
runtime_operators dbms_cloud_oci_dataintegration_runtime_operator_tbl,
parent_runtime_operator_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
pipeline
(optional)
runtime_operators
(optional) A list of RuntimeOperators attached to the RuntimePipeline.
parent_runtime_operator_key
(optional) The parent RuntimePipeline's RuntimeOperator key.
DBMS_CLOUD_OCI_DATAINTEGRATION_RUNTIME_PIPELINE_SUMMARY_T Type 🔗
The information about RuntimePipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_runtime_pipeline_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
runtime_operators dbms_cloud_oci_dataintegration_runtime_operator_tbl,
parent_runtime_operator_key varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_pipeline_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_pipeline_summary_t (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
runtime_operators dbms_cloud_oci_dataintegration_runtime_operator_tbl,
parent_runtime_operator_key varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
pipeline
(optional)
runtime_operators
(optional) A list of RuntimeOperators attached to the RuntimePipeline.
parent_runtime_operator_key
(optional) The parent RuntimePipeline's RuntimeOperator key.
DBMS_CLOUD_OCI_DATAINTEGRATION_RUNTIME_PIPELINE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_runtime_pipeline_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_runtime_pipeline_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_runtime_pipeline_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_RUNTIME_PIPELINE_SUMMARY_COLLECTION_T Type 🔗
List of runtimePipeline summaries
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_runtime_pipeline_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_runtime_pipeline_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_pipeline_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_runtime_pipeline_summary_collection_t (
items dbms_cloud_oci_dataintegration_runtime_pipeline_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of runtimePipeline summaries
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEDULE_SUMMARY_T Type 🔗
The schedule summary information.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schedule_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
model_type varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2(32767),
is_daylight_adjustment_enabled number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schedule_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schedule_summary_t (
key varchar2,
model_version varchar2,
model_type varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2,
is_daylight_adjustment_enabled number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
frequency_details
(optional)
timezone
(optional) The timezone for the schedule.
is_daylight_adjustment_enabled
(optional) A flag to indicate whether daylight adjustment should be considered or not.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEDULE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_schedule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schedule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_schedule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEDULE_SUMMARY_COLLECTION_T Type 🔗
A collection of schedule summaries. The collection can be lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schedule_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_schedule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schedule_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schedule_summary_collection_t (
items dbms_cloud_oci_dataintegration_schedule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) An array of Schedule summaries
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEMA_DRIFT_CONFIG_T Type 🔗
The configuration for handling schema drift in a Source or Target operator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schema_drift_config_t FORCE AUTHID CURRENT_USER IS OBJECT (
extra_column_handling varchar2(32767),
missing_column_handling varchar2(32767),
data_type_change_handling varchar2(32767),
is_validation_warning_if_allowed number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_drift_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_drift_config_t (
extra_column_handling varchar2,
missing_column_handling varchar2,
data_type_change_handling varchar2,
is_validation_warning_if_allowed number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
extra_column_handling
(optional) The setting for how to handle extra columns/fields. NULL_FILLUP means that nulls will be loaded into the target for extra columns.
(optional) The setting for how to handle missing columns/fields. NULL_SELECT means that null values will be selected from the source for missing columns.
(optional) If true, display a validation warning for schema changes, even if they are allowed.
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEMA_SUMMARY_T Type 🔗
The schema summary object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schema_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
resource_name varchar2(32767),
description varchar2(32767),
object_version number,
external_key varchar2(32767),
is_has_containers number,
default_connection varchar2(32767),
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
resource_name varchar2,
description varchar2,
object_version number,
external_key varchar2,
is_has_containers number,
default_connection varchar2,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object's type.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
resource_name
(optional) A resource name can have letters, numbers, and special characters. The value is editable and is restricted to 4000 characters.
description
(optional) User-defined description for the schema.
object_version
(optional) The version of the object that is used to track changes in the object instance.
external_key
(optional) The external key for the object.
is_has_containers
(optional) Specifies whether the schema has containers.
default_connection
(optional) The default connection key.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEMA_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_schema_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schema_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_schema_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_SCHEMA_SUMMARY_COLLECTION_T Type 🔗
This is the collection of schema summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_schema_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_schema_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_schema_summary_collection_t (
items dbms_cloud_oci_dataintegration_schema_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of schema summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_SHAPE_FIELD_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_shape_field_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_shape_field_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_shape_field_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_SELECT_T Type 🔗
The information about the select object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_select_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_push_down_operation_t (
is_distinct number,
select_columns dbms_cloud_oci_dataintegration_shape_field_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_select_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_select_t (
model_type varchar2,
is_distinct number,
select_columns dbms_cloud_oci_dataintegration_shape_field_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_select_t is a subtype of the dbms_cloud_oci_dataintegration_push_down_operation_t type.
Fields
Field
Description
is_distinct
(optional) Specifies whether the object is distinct.
select_columns
(optional) An array of selected columns.
DBMS_CLOUD_OCI_DATAINTEGRATION_SORT_CLAUSE_T Type 🔗
The information about the sort object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sort_clause_t FORCE AUTHID CURRENT_USER IS OBJECT (
field dbms_cloud_oci_dataintegration_shape_field_t,
l_order varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_clause_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_clause_t (
field dbms_cloud_oci_dataintegration_shape_field_t,
l_order varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
field
(optional)
l_order
(optional) The sort order.
Allowed values are: 'ASC', 'DESC'
DBMS_CLOUD_OCI_DATAINTEGRATION_SORT_CLAUSE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_sort_clause_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sort_clause_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_sort_clause_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_SORT_T Type 🔗
The information about the sort object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sort_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_push_down_operation_t (
sort_clauses dbms_cloud_oci_dataintegration_sort_clause_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_t (
model_type varchar2,
sort_clauses dbms_cloud_oci_dataintegration_sort_clause_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_sort_t is a subtype of the dbms_cloud_oci_dataintegration_push_down_operation_t type.
Fields
Field
Description
sort_clauses
(optional) The sort clause.
DBMS_CLOUD_OCI_DATAINTEGRATION_SORT_KEY_RULE_T Type 🔗
A rule to define the set of fields to sort by, and whether to sort by ascending or descending values.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sort_key_rule_t FORCE AUTHID CURRENT_USER IS OBJECT (
wrapped_rule dbms_cloud_oci_dataintegration_projection_rule_t,
is_ascending number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_key_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_key_rule_t (
wrapped_rule dbms_cloud_oci_dataintegration_projection_rule_t,
is_ascending number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
wrapped_rule
(optional)
is_ascending
(optional) Specifies if the sort key has ascending order.
DBMS_CLOUD_OCI_DATAINTEGRATION_SORT_KEY_RULE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_sort_key_rule_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sort_key_rule_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_sort_key_rule_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_SORT_KEY_T Type 🔗
Sort key contains a set of sort key rules defining sorting algorithm.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sort_key_t FORCE AUTHID CURRENT_USER IS OBJECT (
sort_rules dbms_cloud_oci_dataintegration_sort_key_rule_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_key_t (
sort_rules dbms_cloud_oci_dataintegration_sort_key_rule_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
sort_rules
(optional) The list of sort key rules.
DBMS_CLOUD_OCI_DATAINTEGRATION_SORT_OPER_T Type 🔗
The information about the sort operator.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_sort_oper_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
sort_key dbms_cloud_oci_dataintegration_sort_key_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_oper_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_sort_oper_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
sort_key dbms_cloud_oci_dataintegration_sort_key_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_sort_oper_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
sort_key
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SOURCE_T Type 🔗
The information about the source object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_source_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
entity dbms_cloud_oci_dataintegration_data_entity_t,
is_read_access number,
is_copy_fields number,
is_predefined_shape number,
schema_drift_config dbms_cloud_oci_dataintegration_schema_drift_config_t,
fixed_data_shape dbms_cloud_oci_dataintegration_shape_t,
read_operation_config dbms_cloud_oci_dataintegration_read_operation_config_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_source_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_source_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
entity dbms_cloud_oci_dataintegration_data_entity_t,
is_read_access number,
is_copy_fields number,
is_predefined_shape number,
schema_drift_config dbms_cloud_oci_dataintegration_schema_drift_config_t,
fixed_data_shape dbms_cloud_oci_dataintegration_shape_t,
read_operation_config dbms_cloud_oci_dataintegration_read_operation_config_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_source_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
entity
(optional)
is_read_access
(optional) Specifies the read access.
is_copy_fields
(optional) Specifies the copy fields.
is_predefined_shape
(optional) Specifies if this uses a predefined shape.
schema_drift_config
(optional)
fixed_data_shape
(optional)
read_operation_config
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_SPLIT_T Type 🔗
The information about the split operator. Split operator has one input and many output links. Split operator allows users to take one data set and based on conditions produce many different outputs.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_split_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
data_routing_strategy varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_split_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_split_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
data_routing_strategy varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_split_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
data_routing_strategy
(optional) Specify how to handle data that matches a split condition. Either data that matches the first condition should be removed from further processing by other conditions, or all matched data should be evaluated for all conditions.
Allowed values are: 'FIRST', 'ALL'
DBMS_CLOUD_OCI_DATAINTEGRATION_START_OPERATOR_T Type 🔗
Represents the start of a pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_start_operator_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_start_operator_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_start_operator_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_start_operator_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_STRUCTURED_TYPE_T Type 🔗
A `StructuredType` object represents a data type that exists in a physical data asset object such as a table column, but is more complex. For example, an Oracle database `OBJECT` type. It can be composed of multiple `DataType` objects.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_structured_type_t FORCE AUTHID CURRENT_USER IS OBJECT (
schema dbms_cloud_oci_dataintegration_base_type_t,
dt_type varchar2(32767),
type_system_name varchar2(32767),
config_definition dbms_cloud_oci_dataintegration_config_definition_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_structured_type_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_structured_type_t (
schema dbms_cloud_oci_dataintegration_base_type_t,
dt_type varchar2,
type_system_name varchar2,
config_definition dbms_cloud_oci_dataintegration_config_definition_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
schema
(optional)
dt_type
(optional) The data type.
Allowed values are: 'PRIMITIVE', 'STRUCTURED'
type_system_name
(optional) The data type system name.
config_definition
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_WRITE_OPERATION_CONFIG_T Type 🔗
The information about the write operation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_write_operation_config_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_data_operation_config_t (
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
operations dbms_cloud_oci_dataintegration_push_down_operation_tbl,
data_format dbms_cloud_oci_dataintegration_data_format_t,
partition_config dbms_cloud_oci_dataintegration_partition_config_t,
write_attribute dbms_cloud_oci_dataintegration_abstract_write_attribute_t,
write_mode varchar2(32767),
merge_key dbms_cloud_oci_dataintegration_unique_key_t,
object_status number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_write_operation_config_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_write_operation_config_t (
model_type varchar2,
metadata_config_properties json_element_t,
derived_attributes json_element_t,
call_attribute dbms_cloud_oci_dataintegration_bip_call_attribute_t,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
operations dbms_cloud_oci_dataintegration_push_down_operation_tbl,
data_format dbms_cloud_oci_dataintegration_data_format_t,
partition_config dbms_cloud_oci_dataintegration_partition_config_t,
write_attribute dbms_cloud_oci_dataintegration_abstract_write_attribute_t,
write_mode varchar2,
merge_key dbms_cloud_oci_dataintegration_unique_key_t,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_write_operation_config_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_data_operation_config_t type.
(optional) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in create.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
is_concurrent_allowed
(optional) Whether the same task can be executed concurrently.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_FROM_DATA_LOADER_TASK_DETAILS_T Type 🔗
The information about a data flow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_from_data_loader_task_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_data_loader_task_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_data_loader_task_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_from_data_loader_task_details_t is a subtype of the dbms_cloud_oci_dataintegration_task_t type.
Fields
Field
Description
data_flow
(optional)
conditional_composite_field_map
(optional)
is_single_load
(optional) Defines whether Data Loader task is used for single load or multiple
parallel_load_limit
(optional) Defines the number of entities being loaded in parallel at a time for a Data Loader task
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_FROM_INTEGRATION_TASK_DETAILS_T Type 🔗
The information about the integration task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_from_integration_task_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_integration_task_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_integration_task_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_from_integration_task_details_t is a subtype of the dbms_cloud_oci_dataintegration_task_t type.
Fields
Field
Description
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_FROM_OCI_DATAFLOW_TASK_DETAILS_T Type 🔗
The information about the OCI Dataflow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_from_oci_dataflow_task_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_t (
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_oci_dataflow_task_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_oci_dataflow_task_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_from_oci_dataflow_task_details_t is a subtype of the dbms_cloud_oci_dataintegration_task_t type.
Fields
Field
Description
dataflow_application
(optional)
driver_shape_details
(optional)
executor_shape_details
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_FROM_PIPELINE_TASK_DETAILS_T Type 🔗
The information about the pipeline task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_from_pipeline_task_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_t (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_pipeline_task_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_from_pipeline_task_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_from_pipeline_task_details_t is a subtype of the dbms_cloud_oci_dataintegration_task_t type.
Fields
Field
Description
pipeline
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_FROM_REST_TASK_DETAILS_T Type 🔗
The information about the Generic REST task. The endpoint and cancelEndpoint properties are deprecated, use the properties executeRestCallConfig, cancelRestCallConfig and pollRestCallConfig for execute, cancel and polling of the calls.
(optional) The merge condition. The conditions are ALL_SUCCESS - All the preceeding operators need to be successful. ALL_FAILED - All the preceeding operators should have failed. ALL_COMPLETE - All the preceeding operators should have completed. It could have executed successfully or failed.
(optional) Generated key that can be used in API calls to identify taskSchedule. On scenarios where reference to the taskSchedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) Task Key of the task for which TaskRun is being created. If not specified, the AggregatorKey in RegistryMetadata will be assumed to be the TaskKey
external_id
(optional) The external identifier for the task run.
retry_attempt
(optional) Holds the particular attempt number.
task_schedule
(optional)
metrics
(optional) A map of metrics for the run.
outputs
(optional) A map of the outputs of the run.
execution_errors
(optional) An array of execution errors from the run.
termination_errors
(optional) An array of termination errors from the run.
auth_mode
(optional) The autorization mode for when the task was executed.
(optional) This field tells the user if there is any logs being fetched in backend for failure. Applicable only for failed pipeline tasks.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_DETAILS_T Type 🔗
The task run object provides information on the execution of a task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
status varchar2(32767),
start_time_millis number,
end_time_millis number,
last_updated number,
records_written number,
bytes_processed number,
object_status number,
task_type varchar2(32767),
identifier varchar2(32767),
ref_task_run_id varchar2(32767),
re_run_type varchar2(32767),
step_id varchar2(32767),
inputs json_element_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
status varchar2,
start_time_millis number,
end_time_millis number,
last_updated number,
records_written number,
bytes_processed number,
object_status number,
task_type varchar2,
identifier varchar2,
ref_task_run_id varchar2,
re_run_type varchar2,
step_id varchar2,
inputs json_element_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
ref_task_run_id
(optional) Reference Task Run Id to be used for re-run
re_run_type
(optional) Supported re-run types
Allowed values are: 'BEGINNING', 'FAILED', 'STEP'
step_id
(optional) Step Id for running from a certain step.
inputs
(optional) A map of the configuration provider input bindings of the run.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_LINEAGE_DETAILS_T Type 🔗
The task lineage object provides information on the lineage information of a task after execution.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_lineage_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
task_name varchar2(32767),
task_type varchar2(32767),
task_key varchar2(32767),
is_lineage_gen_completed number,
task_execution_status varchar2(32767),
flow dbms_cloud_oci_dataintegration_data_flow_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_lineage_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_lineage_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
task_name varchar2,
task_type varchar2,
task_key varchar2,
is_lineage_gen_completed number,
task_execution_status varchar2,
flow dbms_cloud_oci_dataintegration_data_flow_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
task_name
(optional) Task name
task_type
(optional) Task name
task_key
(optional) The object key.
is_lineage_gen_completed
(optional) This value is used to track if lineage generation for a task is completed or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_LINEAGE_SUMMARY_T Type 🔗
The information about TaskRunLineage.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_lineage_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
task_name varchar2(32767),
task_type varchar2(32767),
task_key varchar2(32767),
is_lineage_gen_completed number,
task_execution_status varchar2(32767),
flow dbms_cloud_oci_dataintegration_data_flow_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_lineage_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_lineage_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
task_name varchar2,
task_type varchar2,
task_key varchar2,
is_lineage_gen_completed number,
task_execution_status varchar2,
flow dbms_cloud_oci_dataintegration_data_flow_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
task_name
(optional) Task name
task_type
(optional) Task name
task_key
(optional) The object key.
is_lineage_gen_completed
(optional) This value is used to track if lineage generation for a task is completed or not.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_LINEAGE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_task_run_lineage_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_lineage_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_task_run_lineage_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_LINEAGE_SUMMARY_COLLECTION_T Type 🔗
List of lineage flows
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_lineage_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_task_run_lineage_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_lineage_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_lineage_summary_collection_t (
items dbms_cloud_oci_dataintegration_task_run_lineage_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of lineage flow summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_LOG_SUMMARY_T Type 🔗
A log message from the execution of a task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_log_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_log_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_log_summary_t (
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(optional) A user-friendly log message.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_SUMMARY_T Type 🔗
The information about a task run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
status varchar2(32767),
start_time_millis number,
end_time_millis number,
last_updated number,
records_written number,
bytes_processed number,
object_status number,
task_type varchar2(32767),
identifier varchar2(32767),
ref_task_run_id varchar2(32767),
re_run_type varchar2(32767),
step_id varchar2(32767),
inputs json_element_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
status varchar2,
start_time_millis number,
end_time_millis number,
last_updated number,
records_written number,
bytes_processed number,
object_status number,
task_type varchar2,
identifier varchar2,
ref_task_run_id varchar2,
re_run_type varchar2,
step_id varchar2,
inputs json_element_t,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The object key.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
ref_task_run_id
(optional) Reference Task Run Id to be used for re-run
re_run_type
(optional) Supported re-run types
Allowed values are: 'BEGINNING', 'FAILED', 'STEP'
step_id
(optional) Step Id for running from a certain step.
inputs
(optional) A map of the configuration provider input bindings of the run.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_task_run_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_task_run_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_RUN_SUMMARY_COLLECTION_T Type 🔗
A list of task run summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_run_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_task_run_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_run_summary_collection_t (
items dbms_cloud_oci_dataintegration_task_run_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of task run summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SCHEDULE_SUMMARY_T Type 🔗
(optional) Generated key that can be used in API calls to identify taskSchedule. On scenarios where reference to the taskSchedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
schedule_ref
(optional)
config_provider_delegate
(optional)
is_enabled
(optional) Whether the task schedule is enabled.
number_of_retries
(optional) The number of retries.
retry_delay
(optional) The retry delay, the unit for measurement is in the property retry delay unit.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SCHEDULE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_task_schedule_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_schedule_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_task_schedule_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SCHEDULE_SUMMARY_COLLECTION_T Type 🔗
A collection of TaskSchedule summaries. The collection can be lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_schedule_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_task_schedule_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_schedule_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_schedule_summary_collection_t (
items dbms_cloud_oci_dataintegration_task_schedule_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of TaskSchedule summaries
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_T Type 🔗
The task summary object type contains the audit summary information and the definition of the task summary object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in create.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
is_concurrent_allowed
(optional) Whether the same task can be executed concurrently.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_task_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_task_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_COLLECTION_T Type 🔗
This is the collection of task summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_task_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_collection_t (
items dbms_cloud_oci_dataintegration_task_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of task summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_FROM_DATA_LOADER_TASK_T Type 🔗
The information about a data flow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_summary_from_data_loader_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_summary_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_data_loader_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_data_loader_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_summary_from_data_loader_task_t is a subtype of the dbms_cloud_oci_dataintegration_task_summary_t type.
Fields
Field
Description
data_flow
(optional)
conditional_composite_field_map
(optional)
is_single_load
(optional) Defines whether Data Loader task is used for single load or multiple
parallel_load_limit
(optional) Defines the number of entities being loaded in parallel at a time for a Data Loader task
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_FROM_INTEGRATION_TASK_T Type 🔗
The information about the integration task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_summary_from_integration_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_summary_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_integration_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_integration_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_summary_from_integration_task_t is a subtype of the dbms_cloud_oci_dataintegration_task_summary_t type.
Fields
Field
Description
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_FROM_OCI_DATAFLOW_TASK_T Type 🔗
The information about the OCI Dataflow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_summary_from_oci_dataflow_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_summary_t (
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_oci_dataflow_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_oci_dataflow_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_summary_from_oci_dataflow_task_t is a subtype of the dbms_cloud_oci_dataintegration_task_summary_t type.
Fields
Field
Description
dataflow_application
(optional)
driver_shape_details
(optional)
executor_shape_details
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_FROM_PIPELINE_TASK_T Type 🔗
The information about the pipeline task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_summary_from_pipeline_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_task_summary_t (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_pipeline_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_summary_from_pipeline_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_task_summary_from_pipeline_task_t is a subtype of the dbms_cloud_oci_dataintegration_task_summary_t type.
Fields
Field
Description
pipeline
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_SUMMARY_FROM_REST_TASK_T Type 🔗
The information about the Generic REST task. The endpoint and cancelEndpoint properties are deprecated, use the properties executeRestCallConfig, cancelRestCallConfig and pollRestCallConfig for execute, cancel and polling of the calls.
(optional) Describes the shape of the execution result
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_VALIDATION_T Type 🔗
The information about task validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_validation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_validation_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) Total number of validation messages.
error_message_count
(optional) Total number of validation error messages.
warn_message_count
(optional) Total number of validation warning messages.
info_message_count
(optional) Total number of validation information messages.
validation_messages
(optional) Detailed information of the data flow object validation.
key
(optional) Objects use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_VALIDATION_SUMMARY_T Type 🔗
The information about task validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_validation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_validation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_validation_summary_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) Total number of validation messages.
error_message_count
(optional) Total number of validation error messages.
warn_message_count
(optional) Total number of validation warning messages.
info_message_count
(optional) Total number of validation information messages.
validation_messages
(optional) Detailed information of the data flow object validation.
key
(optional) Objects use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_VALIDATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_task_validation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_validation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_task_validation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TASK_VALIDATION_SUMMARY_COLLECTION_T Type 🔗
A list of task validation summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_task_validation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_task_validation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_validation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_task_validation_summary_collection_t (
items dbms_cloud_oci_dataintegration_task_validation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) An array of validation summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_TEMPLATE_T Type 🔗
Template application.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_template_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_template_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_template_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2,
compartment_id varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify application.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) The application's version.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
dependent_object_metadata
(optional) A list of dependent objects in this patch.
published_object_metadata
(optional) A list of objects that are published or unpublished in this patch.
source_application_info
(optional)
time_patched
(optional) The date and time the application was patched, in the timestamp format defined by RFC3339.
id
(optional) OCID of the resource that is used to uniquely identify the application
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
time_created
(optional) The date and time the application was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_TEMPLATE_SUMMARY_T Type 🔗
The application template summary type contains the audit summary information and the definition of the application template.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_template_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_template_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_template_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
dependent_object_metadata dbms_cloud_oci_dataintegration_patch_object_metadata_tbl,
published_object_metadata json_element_t,
source_application_info dbms_cloud_oci_dataintegration_source_application_info_t,
time_patched timestamp with time zone,
id varchar2,
compartment_id varchar2,
display_name varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify application.
model_type
(optional) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) The application's version.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(optional) The version of the object that is used to track changes in the object instance.
dependent_object_metadata
(optional) A list of dependent objects in this patch.
published_object_metadata
(optional) A list of objects that are published or unpublished in this patch.
source_application_info
(optional)
time_patched
(optional) The date and time the application was patched, in the timestamp format defined by RFC3339.
id
(optional) OCID of the resource that is used to uniquely identify the application
compartment_id
(optional) OCID of the compartment that this resource belongs to. Defaults to compartment of the Workspace.
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
time_created
(optional) The date and time the application was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the application was updated, in the timestamp format defined by RFC3339. example: 2019-08-25T21:10:29.41Z
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_TEMPLATE_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_template_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_template_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_template_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TEMPLATE_SUMMARY_COLLECTION_T Type 🔗
This is the collection of application template summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_template_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_template_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_template_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_template_summary_collection_t (
items dbms_cloud_oci_dataintegration_template_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of application template summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_JSON_ELEMENT_T_TBL Type 🔗
Nested table type of json_element_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_json_element_t_tbl FORCE IS TABLE OF (json_element_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPE_LIST_RULE_T Type 🔗
The type list rule that defines how fields are projected.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_type_list_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_projection_rule_t (
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2(32767),
is_case_sensitive number,
rule_type varchar2(32767),
types dbms_cloud_oci_dataintegration_json_element_t_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_type_list_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_type_list_rule_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2,
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2,
is_case_sensitive number,
rule_type varchar2,
types dbms_cloud_oci_dataintegration_json_element_t_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_type_list_rule_t is a subtype of the dbms_cloud_oci_dataintegration_projection_rule_t type.
Fields
Field
Description
is_skip_remaining_rules_on_match
(optional) Specifies whether to skip remaining rules when a match is found.
scope
(optional) Reference to a typed object. This can be either a key value to an object within the document, a shall referenced to a `TypedObject`, or a full `TypedObject` definition.
(optional) Specifies if the rule is case sensitive.
rule_type
(optional) The rule type.
Allowed values are: 'INCLUDE', 'EXCLUDE'
types
(optional) An arry of types.
DBMS_CLOUD_OCI_DATAINTEGRATION_TYPED_NAME_PATTERN_RULE_T Type 🔗
The typed name rule for field projection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_typed_name_pattern_rule_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_projection_rule_t (
types dbms_cloud_oci_dataintegration_json_element_t_tbl,
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2(32767),
is_case_sensitive number,
rule_type varchar2(32767),
pattern varchar2(32767),
names dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_name_pattern_rule_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_typed_name_pattern_rule_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
is_java_regex_syntax number,
config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
description varchar2,
types dbms_cloud_oci_dataintegration_json_element_t_tbl,
is_skip_remaining_rules_on_match number,
scope json_element_t,
is_cascade number,
matching_strategy varchar2,
is_case_sensitive number,
rule_type varchar2,
pattern varchar2,
names dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_typed_name_pattern_rule_t is a subtype of the dbms_cloud_oci_dataintegration_projection_rule_t type.
Fields
Field
Description
types
(optional) An array of types.
is_skip_remaining_rules_on_match
(optional) Specifies whether to skip remaining rules when a match is found.
scope
(optional) Reference to a typed object. This can be either a key value to an object within the document, a shall referenced to a `TypedObject`, or a full `TypedObject` definition.
(optional) Specifies if the rule is case sensitive.
rule_type
(optional) The rule type.
Allowed values are: 'INCLUDE', 'EXCLUDE'
pattern
(optional) The rule pattern.
names
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
DBMS_CLOUD_OCI_DATAINTEGRATION_UNION_T Type 🔗
The information about a union object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_union_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_operator_t (
union_type varchar2(32767),
is_all number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_union_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_union_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_typed_object_tbl,
object_status number,
identifier varchar2,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
union_type varchar2,
is_all number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_union_t is a subtype of the dbms_cloud_oci_dataintegration_operator_t type.
Fields
Field
Description
union_type
(optional) unionType
Allowed values are: 'NAME', 'POSITION'
is_all
(optional) The information about the union all.
DBMS_CLOUD_OCI_DATAINTEGRATION_UNIQUE_DATA_KEY_T Type 🔗
The unique key object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_unique_data_key_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_unique_key_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_unique_data_key_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_unique_data_key_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
attribute_refs dbms_cloud_oci_dataintegration_key_attribute_tbl,
object_status number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_unique_data_key_t is a subtype of the dbms_cloud_oci_dataintegration_unique_key_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_APPLICATION_DETAILS_T Type 🔗
Properties used in application create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_application_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_application_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_application_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify application.
model_type
(required) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) version
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(required) The version of the object that is used to track changes in the object instance.
metadata
(optional)
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(required) Generated key that can be used in API calls to identify connection. On scenarios where reference to the connection is needed, a value can be passed in create.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) User-defined description for the connection.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
object_version
(required) The version of the object that is used to track changes in the object instance.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
connection_properties
(optional) The properties for the connection.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_ADWC_T Type 🔗
The details to update an Autonomous Data Warehouse data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_adwc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_adwc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_adwc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_adwc_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Data Warehouse instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_AMAZON_S3_T Type 🔗
The details to update an Amazon s3 connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_amazon_s3_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_amazon_s3_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_amazon_s3_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
access_key dbms_cloud_oci_dataintegration_sensitive_attribute_t,
secret_key dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_amazon_s3_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
access_key
(optional)
secret_key
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_ATP_T Type 🔗
The details to update an Autonomous Transaction Processing data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_atp_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
tns_alias varchar2(32767),
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_atp_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_atp_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
tns_alias varchar2,
tns_names dbms_cloud_oci_dataintegration_varchar2_tbl,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_atp_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
tns_alias
(optional) The Autonomous Transaction Processing instance service name.
tns_names
(optional) Array of service names that are available for selection in the tnsAlias property.
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_BICC_T Type 🔗
The details to update a FUSION_APP BICC connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_bicc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_bicc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_bicc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_external_storage dbms_cloud_oci_dataintegration_external_storage_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_bicc_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
default_external_storage
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_BIP_T Type 🔗
The details to update a Fusion applications BIP connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_bip_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_bip_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_bip_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_bip_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_HDFS_T Type 🔗
The details to update the HDFS data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_hdfs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
hdfs_principal varchar2(32767),
data_node_principal varchar2(32767),
name_node_principal varchar2(32767),
realm varchar2(32767),
key_distribution_center varchar2(32767),
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_hdfs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_hdfs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
hdfs_principal varchar2,
data_node_principal varchar2,
name_node_principal varchar2,
realm varchar2,
key_distribution_center varchar2,
key_tab_content dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_hdfs_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
hdfs_principal
(required) The HDFS principal.
data_node_principal
(required) The HDFS Data Node principal.
name_node_principal
(required) The HDFS Name Node principal.
realm
(optional) HDFS Realm name.
key_distribution_center
(optional) The HDFS Key Distribution Center.
key_tab_content
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_JDBC_T Type 🔗
The details to update a generic JDBC data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_LAKE_T Type 🔗
The details to update a Lake connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_lake_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_lake_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_lake_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_lake_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_MY_SQL_T Type 🔗
The details to update a MYSQL data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
The details to update a MYSQL HeatWave data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_OBJECT_STORAGE_T Type 🔗
The details to update an Oracle Object Storage data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
credential_file_content varchar2(32767),
user_id varchar2(32767),
finger_print varchar2(32767),
pass_phrase varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_object_storage_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
credential_file_content varchar2,
user_id varchar2,
finger_print varchar2,
pass_phrase varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_object_storage_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
credential_file_content
(optional) The credential file content from an Oracle Object Storage wallet.
user_id
(optional) The OCI user OCID for the user to connect to.
finger_print
(optional) The fingerprint for the user.
pass_phrase
(optional) The passphrase for the connection.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_ORACLE_T Type 🔗
The details to update an Oracle Database data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_oracle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_oracle_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(optional) The user name for the connection.
password
(optional) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_ORACLE_EBS_T Type 🔗
The details to update E-Business Suite data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_oracle_ebs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_ebs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_ebs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_oracle_ebs_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_ORACLE_PEOPLE_SOFT_T Type 🔗
The details to update an Oracle PeopleSoft data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_oracle_people_soft_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_people_soft_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_people_soft_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_oracle_people_soft_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_ORACLE_SIEBEL_T Type 🔗
The details to update an Oracle Siebel data asset connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_oracle_siebel_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_siebel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_oracle_siebel_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_oracle_siebel_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(required) The user name for the connection.
password
(required) The password for the connection.
password_secret
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_REST_BASIC_AUTH_T Type 🔗
The details to update a basic auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_rest_basic_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
username varchar2(32767),
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_rest_basic_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_rest_basic_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
username varchar2,
password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
auth_header varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_rest_basic_auth_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
Fields
Field
Description
username
(required) Username for the connection.
password_secret
(required)
auth_header
(optional) Optional header name if used other than default header(Authorization).
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_CONNECTION_FROM_REST_NO_AUTH_T Type 🔗
The details to update a no auth rest connection.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_connection_from_rest_no_auth_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_connection_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_rest_no_auth_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_connection_from_rest_no_auth_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
connection_properties dbms_cloud_oci_dataintegration_connection_property_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_connection_from_rest_no_auth_t is a subtype of the dbms_cloud_oci_dataintegration_update_connection_details_t type.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_COPY_OBJECT_REQUEST_DETAILS_T Type 🔗
Properties used in copy object request update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_copy_object_request_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_copy_object_request_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_copy_object_request_details_t (
status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
status
(optional) The status of the object.
Allowed values are: 'TERMINATING'
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_DETAILS_T Type 🔗
Properties used in data asset update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
object_version number,
identifier varchar2(32767),
external_key varchar2(32767),
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(required) Generated key that can be used in API calls to identify data asset.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) The user-defined description of the data asset.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
object_version
(required) The version of the object that is used to track changes in the object instance.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
external_key
(optional) The external key for the object.
asset_properties
(optional) Additional properties for the data asset.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_ADWC_T Type 🔗
Details for the Autonomous Data Warehouse data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_adwc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
service_name varchar2(32767),
driver_class varchar2(32767),
credential_file_content varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
region_id varchar2(32767),
tenancy_id varchar2(32767),
compartment_id varchar2(32767),
autonomous_db_id varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_from_adwc_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_adwc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_adwc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
service_name varchar2,
driver_class varchar2,
credential_file_content varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
region_id varchar2,
tenancy_id varchar2,
compartment_id varchar2,
autonomous_db_id varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_adwc_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_adwc_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
service_name
(optional) The Autonomous Data Warehouse instance service name.
driver_class
(optional) The Autonomous Data Warehouse driver class.
credential_file_content
(optional) The credential file content from a Autonomous Data Warehouse wallet.
wallet_secret
(optional)
wallet_password_secret
(optional)
region_id
(optional) The Autonomous Data Warehouse instance region Id.
tenancy_id
(optional) The Autonomous Data Warehouse instance tenancy Id.
compartment_id
(optional) The Autonomous Data Warehouse instance compartment Id.
autonomous_db_id
(optional) Tha Autonomous Database Id
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_AMAZON_S3_T Type 🔗
Details for the Amazon s3 data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_amazon_s3_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
l_region varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_amazon_s3_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_amazon_s3_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
l_region varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_amazon_s3_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
l_region
(optional) The region for Amazon s3
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_ATP_T Type 🔗
Details for the Autonomous Transaction Processing data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_atp_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
service_name varchar2(32767),
driver_class varchar2(32767),
credential_file_content varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
region_id varchar2(32767),
tenancy_id varchar2(32767),
compartment_id varchar2(32767),
autonomous_db_id varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_from_atp_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_atp_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_atp_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
service_name varchar2,
driver_class varchar2,
credential_file_content varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
region_id varchar2,
tenancy_id varchar2,
compartment_id varchar2,
autonomous_db_id varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_atp_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_atp_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
service_name
(optional) The Autonomous Transaction Processing instance service name.
driver_class
(optional) The Autonomous Transaction Processing driver class
credential_file_content
(optional) The credential file content from an Autonomous Transaction Processing wallet.
wallet_secret
(optional)
wallet_password_secret
(optional)
region_id
(optional) The Autonomous Data Warehouse instance region Id.
tenancy_id
(optional) The Autonomous Data Warehouse instance tenancy Id.
compartment_id
(optional) The Autonomous Data Warehouse instance compartment Id.
autonomous_db_id
(optional) Tha Autonomous Database Id
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_FUSION_APP_T Type 🔗
Details for the Autonomous Transaction Processing data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_fusion_app_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
service_url varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_fusion_app_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_fusion_app_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
service_url varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_fusion_app_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
service_url
(optional) The service url of the BI Server.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_HDFS_T Type 🔗
Details for the HDFS data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_hdfs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
protocol varchar2(32767),
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_hdfs_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_hdfs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_hdfs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
protocol varchar2,
validate_certificate number,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_hdfs_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_hdfs_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(required) The HDFS hostname.
port
(required) The HDFS port.
protocol
(required) The HDFS Protocol name.
validate_certificate
(optional) Specifies whether certificate validation is needed
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_JDBC_T Type 🔗
Details for the Autonomous Transaction Processing data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_jdbc_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
data_asset_type varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_from_jdbc_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_jdbc_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_jdbc_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
data_asset_type varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_jdbc_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_jdbc_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
data_asset_type
(optional) The data asset type for the generic JDBC data asset.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_LAKE_T Type 🔗
Details for the Lake data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_lake_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
lake_id varchar2(32767),
metastore_id varchar2(32767),
lake_proxy_endpoint varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_from_lake_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_lake_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_lake_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
lake_id varchar2,
metastore_id varchar2,
lake_proxy_endpoint varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_lake_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_lake_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
lake_id
(required) The Lake Ocid.
metastore_id
(optional) The metastoreId for the specified Lake Resource.
lake_proxy_endpoint
(optional) The rangerEndpoint for the specified Lake Resource.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_MY_SQL_T Type 🔗
Details for the MYSQL data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_from_my_sql_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_my_sql_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(optional) The generic JDBC host name.
port
(optional) The generic JDBC port number.
service_name
(optional) The generic JDBC service name for the database.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_MY_SQL_HEAT_WAVE_T Type 🔗
Details for the MYSQL HeatWave data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_heat_wave_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_from_my_sql_heat_wave_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_heat_wave_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_heat_wave_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_my_sql_heat_wave_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_my_sql_heat_wave_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(required) The MySql HeatWave host name.
port
(required) The MySql HeatWave port number.
service_name
(optional) The MySql HeatWave service name for the database.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_OBJECT_STORAGE_T Type 🔗
Details for the Oracle Object storage data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
oci_region varchar2(32767),
url varchar2(32767),
tenancy_id varchar2(32767),
namespace varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_from_object_storage_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_object_storage_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
oci_region varchar2,
url varchar2,
tenancy_id varchar2,
namespace varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_object_storage_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_object_storage_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
oci_region
(optional) The Oracle Object storage Region ie. us-ashburn-1
url
(optional) The Oracle Object storage URL.
tenancy_id
(optional) The OCI tenancy OCID.
namespace
(optional) The namespace for the specified Oracle Object storage resource. You can find the namespace under Object Storage Settings in the Console.
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_ORACLE_T Type 🔗
Details for the Oracle Database data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
credential_file_content varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
credential_file_content varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(optional) The Oracle Database hostname.
port
(optional) The Oracle Database port.
service_name
(optional) The Oracle Database service name.
driver_class
(optional) The Oracle Database driver class.
sid
(optional) The Oracle Database SID.
credential_file_content
(optional) The credential file content from a wallet for the data asset.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_ORACLE_EBS_T Type 🔗
Details for the E-Business Suite data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_ebs_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_ebs_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_ebs_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_ebs_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_ebs_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_ebs_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(required) The Oracle EBS hostname.
port
(required) The Oracle EBS port.
service_name
(optional) The Oracle EBS service name.
driver_class
(optional) The Oracle EBS driver class.
sid
(optional) The Oracle EBS SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_ORACLE_PEOPLE_SOFT_T Type 🔗
Details for the Oracle PeopleSoft data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_people_soft_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_people_soft_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_people_soft_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_people_soft_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_people_soft_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_people_soft_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(required) The Oracle PeopleSoft hostname.
port
(required) The Oracle PeopleSoft port.
service_name
(optional) The Oracle PeopleSoft service name.
driver_class
(optional) The Oracle PeopleSoft driver class.
sid
(optional) The Oracle PeopleSoft SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_ORACLE_SIEBEL_T Type 🔗
Details for the Oracle Siebel data asset type.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_siebel_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
host varchar2(32767),
port varchar2(32767),
service_name varchar2(32767),
driver_class varchar2(32767),
sid varchar2(32767),
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_siebel_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_siebel_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_siebel_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
host varchar2,
port varchar2,
service_name varchar2,
driver_class varchar2,
sid varchar2,
wallet_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
wallet_password_secret dbms_cloud_oci_dataintegration_sensitive_attribute_t,
default_connection dbms_cloud_oci_dataintegration_update_connection_from_oracle_siebel_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_oracle_siebel_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
host
(required) The Oracle Siebel hostname.
port
(required) The Oracle Siebel port.
service_name
(optional) The Oracle Siebel service name.
driver_class
(optional) The Oracle Siebel driver class.
sid
(optional) The Oracle Siebel SID.
wallet_secret
(optional)
wallet_password_secret
(optional)
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_ASSET_FROM_REST_T Type 🔗
Details to update the Rest data asset.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_asset_from_rest_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_data_asset_details_t (
base_url varchar2(32767),
manifest_file_content varchar2(32767),
default_connection dbms_cloud_oci_dataintegration_update_connection_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_rest_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_asset_from_rest_t (
model_type varchar2,
key varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
external_key varchar2,
asset_properties json_element_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
base_url varchar2,
manifest_file_content varchar2,
default_connection dbms_cloud_oci_dataintegration_update_connection_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_data_asset_from_rest_t is a subtype of the dbms_cloud_oci_dataintegration_update_data_asset_details_t type.
Fields
Field
Description
base_url
(required) The base url of the rest server.
manifest_file_content
(required) The manifest file content of the rest APIs.
default_connection
(required)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DATA_FLOW_DETAILS_T Type 🔗
Properties used in data flow update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_data_flow_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2(32767),
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_flow_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_data_flow_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
description varchar2,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify data flow. On scenarios where reference to the data flow is needed, a value can be passed in create.
model_type
(required) The type of the object.
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(required) The version of the object that is used to track changes in the object instance.
nodes
(optional) An array of nodes.
parameters
(optional) An array of parameters.
description
(optional) Detailed description for the object.
flow_config_values
(optional)
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DETAILED_DESCRIPTION_DETAILS_T Type 🔗
Properties used in detailed description update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_detailed_description_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
logo varchar2(32767),
detailed_description varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_detailed_description_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_detailed_description_details_t (
logo varchar2,
detailed_description varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
logo
(optional) Base64 encoded image to represent logo of the object.
detailed_description
(optional) Base64 encoded rich text description of the object.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_DIS_APPLICATION_DETAILS_T Type 🔗
Properties used in DIS Application create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_dis_application_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
application_version number,
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_dis_application_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_dis_application_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
application_version number,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
lifecycle_state varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify application.
model_type
(required) The object type.
model_version
(optional) The object's model version.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
application_version
(optional) version
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(required) The version of the object that is used to track changes in the object instance.
metadata
(optional)
display_name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_EXPORT_REQUEST_DETAILS_T Type 🔗
Properties used in export object request update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_export_request_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_export_request_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_export_request_details_t (
status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
status
(optional) The status of the object.
Allowed values are: 'TERMINATING'
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_EXTERNAL_PUBLICATION_DETAILS_T Type 🔗
Properties used to update a published Oracle Cloud Infrastructure Data Flow object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_external_publication_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
application_id varchar2(32767),
application_compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
resource_configuration dbms_cloud_oci_dataintegration_resource_configuration_t,
configuration_details dbms_cloud_oci_dataintegration_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_external_publication_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_external_publication_details_t (
application_id varchar2,
application_compartment_id varchar2,
display_name varchar2,
description varchar2,
resource_configuration dbms_cloud_oci_dataintegration_resource_configuration_t,
configuration_details dbms_cloud_oci_dataintegration_configuration_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
application_id
(optional) The unique OCID of the identifier that is returned after creating the Oracle Cloud Infrastructure Data Flow application.
application_compartment_id
(required) The OCID of the compartment where the application is created in the Oracle Cloud Infrastructure Data Flow Service.
display_name
(required) The name of the application.
description
(optional) The details of the data flow or the application.
resource_configuration
(optional)
configuration_details
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_FOLDER_DETAILS_T Type 🔗
The properties used in folder update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_folder_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_folder_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_folder_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify folder.
model_type
(required) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the folder.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
parent_ref
(optional)
object_version
(required) The version of the object that is used to track changes in the object instance.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_FUNCTION_LIBRARY_DETAILS_T Type 🔗
The properties used in FunctionLibrary update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_function_library_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
description varchar2(32767),
category_name varchar2(32767),
object_status number,
identifier varchar2(32767),
model_version varchar2(32767),
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_function_library_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_function_library_details_t (
name varchar2,
description varchar2,
category_name varchar2,
object_status number,
identifier varchar2,
model_version varchar2,
object_version number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the FunctionLibrary.
category_name
(optional) The category name.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
model_version
(optional) The model version of an object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_IMPORT_REQUEST_DETAILS_T Type 🔗
Properties used in import object request update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_import_request_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
status varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_import_request_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_import_request_details_t (
status varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
status
(optional) The status of the object.
Allowed values are: 'TERMINATING'
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_PIPELINE_DETAILS_T Type 🔗
Properties used in pipeline update operations
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_pipeline_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_pipeline_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_pipeline_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
nodes dbms_cloud_oci_dataintegration_flow_node_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
flow_config_values dbms_cloud_oci_dataintegration_config_values_t,
variables dbms_cloud_oci_dataintegration_variable_tbl,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify pipeline. On scenarios where reference to the pipeline is needed, a value can be passed in create.
model_type
(required) The type of the object.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(required) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
nodes
(optional) A list of nodes attached to the pipeline
parameters
(optional) A list of additional parameters required in pipeline.
flow_config_values
(optional)
variables
(optional) The list of variables required in pipeline.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_PROJECT_DETAILS_T Type 🔗
The properties used in project update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_project_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_status number,
identifier varchar2(32767),
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_project_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_project_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_status number,
identifier varchar2,
object_version number,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify project.
model_type
(required) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) A user defined description for the project.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(required) The version of the object that is used to track changes in the object instance.
parent_ref
(optional)
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_CHILD_REFERENCE_DETAIL_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_child_reference_detail_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_child_reference_detail_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_child_reference_detail_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_REFERENCE_DETAILS_T Type 🔗
Application references that need to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_reference_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
options json_element_t,
target_object json_element_t,
child_references dbms_cloud_oci_dataintegration_child_reference_detail_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_reference_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_reference_details_t (
options json_element_t,
target_object json_element_t,
child_references dbms_cloud_oci_dataintegration_child_reference_detail_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
options
(optional) A list of options such as `ignoreObjectOnError`.
target_object
(optional) The new target object to reference. This can be of type `DataAsset`, `Schema` or `Task`. In case of `DataAsset`, the child references can be of type `Connection`.
child_references
(optional) The list of child references that also need to be updated.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_SCHEDULE_DETAILS_T Type 🔗
The details for updating a schedule.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_schedule_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_version varchar2(32767),
model_type varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2(32767),
is_daylight_adjustment_enabled number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_schedule_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_schedule_details_t (
key varchar2,
model_version varchar2,
model_type varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
frequency_details dbms_cloud_oci_dataintegration_abstract_frequency_details_t,
timezone varchar2,
is_daylight_adjustment_enabled number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify schedule. On scenarios where reference to the schedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(required) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
frequency_details
(optional)
timezone
(optional) The timezone for the schedule.
is_daylight_adjustment_enabled
(optional) A flag to indicate whether daylight adjustment should be considered or not.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_DETAILS_T Type 🔗
Properties used in task create operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_task_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_type varchar2(32767),
key varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_status number,
object_version number,
identifier varchar2(32767),
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_details_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(required) Generated key that can be used in API calls to identify task. On scenarios where reference to the task is needed, a value can be passed in create.
model_version
(optional) The object's model version.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
object_version
(required) The version of the object that is used to track changes in the object instance.
identifier
(optional) Value can only contain upper case letters, underscore and numbers. It should begin with upper case letter or underscore. The value can be modified.
input_ports
(optional) An array of input ports.
output_ports
(optional) An array of output ports.
parameters
(optional) An array of parameters.
op_config_values
(optional)
config_provider_delegate
(optional)
is_concurrent_allowed
(optional) Whether the same task can be executed concurrently.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_FROM_DATA_LOADER_TASK_T Type 🔗
The information about the data loader task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_task_from_data_loader_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_task_details_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_data_loader_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_data_loader_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
conditional_composite_field_map dbms_cloud_oci_dataintegration_conditional_composite_field_map_t,
is_single_load number,
parallel_load_limit number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_task_from_data_loader_task_t is a subtype of the dbms_cloud_oci_dataintegration_update_task_details_t type.
Fields
Field
Description
data_flow
(optional)
conditional_composite_field_map
(optional)
is_single_load
(optional) Defines whether Data Loader task is used for single load or multiple
parallel_load_limit
(optional) Defines the number of entities being loaded in parallel at a time for a Data Loader task
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_FROM_INTEGRATION_TASK_T Type 🔗
The information about the integration task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_task_from_integration_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_task_details_t (
data_flow dbms_cloud_oci_dataintegration_data_flow_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_integration_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_integration_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
data_flow dbms_cloud_oci_dataintegration_data_flow_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_task_from_integration_task_t is a subtype of the dbms_cloud_oci_dataintegration_update_task_details_t type.
Fields
Field
Description
data_flow
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_FROM_OCI_DATAFLOW_TASK_T Type 🔗
The information about the OCI Dataflow task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_task_from_oci_dataflow_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_task_details_t (
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_oci_dataflow_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_oci_dataflow_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
dataflow_application dbms_cloud_oci_dataintegration_dataflow_application_t,
driver_shape_details dbms_cloud_oci_dataintegration_shape_details_t,
executor_shape_details dbms_cloud_oci_dataintegration_shape_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_task_from_oci_dataflow_task_t is a subtype of the dbms_cloud_oci_dataintegration_update_task_details_t type.
Fields
Field
Description
dataflow_application
(optional)
driver_shape_details
(optional)
executor_shape_details
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_FROM_PIPELINE_TASK_T Type 🔗
The information about the pipeline task.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_task_from_pipeline_task_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_update_task_details_t (
pipeline dbms_cloud_oci_dataintegration_pipeline_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_pipeline_task_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_from_pipeline_task_t (
model_type varchar2,
key varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_status number,
object_version number,
identifier varchar2,
input_ports dbms_cloud_oci_dataintegration_input_port_tbl,
output_ports dbms_cloud_oci_dataintegration_output_port_tbl,
parameters dbms_cloud_oci_dataintegration_parameter_tbl,
op_config_values dbms_cloud_oci_dataintegration_config_values_t,
config_provider_delegate dbms_cloud_oci_dataintegration_config_provider_t,
is_concurrent_allowed number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
pipeline dbms_cloud_oci_dataintegration_pipeline_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_update_task_from_pipeline_task_t is a subtype of the dbms_cloud_oci_dataintegration_update_task_details_t type.
Fields
Field
Description
pipeline
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_FROM_REST_TASK_T Type 🔗
The information about the Generic REST task. The endpoint and cancelEndpoint properties are deprecated, use the properties executeRestCallConfig, cancelRestCallConfig and pollRestCallConfig for execute, cancel and polling of the calls.
(optional) Describes the shape of the execution result
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_RUN_DETAILS_T Type 🔗
Properties used in task run update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_task_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
status varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
name varchar2(32767),
description varchar2(32767),
object_version number,
task_schedule_key varchar2(32767),
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_task_run_details_t (
key varchar2,
status varchar2,
model_type varchar2,
model_version varchar2,
name varchar2,
description varchar2,
object_version number,
task_schedule_key varchar2,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) The key of the object.
status
(optional) The status of the object.
Allowed values are: 'TERMINATING'
model_type
(optional) The type of the object.
model_version
(optional) The model version of an object.
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
task_schedule_key
(optional) Optional task schedule key reference.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_TASK_SCHEDULE_DETAILS_T Type 🔗
(required) Generated key that can be used in API calls to identify taskSchedule. On scenarios where reference to the taskSchedule is needed, a value can be passed in create.
model_version
(optional) This is a version number that is used by the service to upgrade objects if needed through releases of the service.
model_type
(optional) The type of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(required) This is used by the service for optimistic locking of the object, to prevent multiple users from simultaneously updating the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
schedule_ref
(optional)
config_provider_delegate
(optional)
is_enabled
(optional) enabled
number_of_retries
(optional) The number of retries.
retry_delay
(optional) The retry delay, the unit for measurement is in the property retry delay unit.
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_USER_DEFINED_FUNCTION_DETAILS_T Type 🔗
Properties used in user defined function update operations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_user_defined_function_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
model_version varchar2(32767),
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2(32767),
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_user_defined_function_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_user_defined_function_details_t (
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
model_version varchar2,
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
model_version
(optional) The model version of an object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
signatures
(optional) An array of function signature.
expr
(optional)
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_UPDATE_WORKSPACE_DETAILS_T Type 🔗
The information to be updated, the private network can be enabled and VCN and subnet set only when initially it is has been created with it off.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_update_workspace_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
freeform_tags json_element_t,
defined_tags json_element_t,
description varchar2(32767),
display_name varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_workspace_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_update_workspace_details_t (
freeform_tags json_element_t,
defined_tags json_element_t,
description varchar2,
display_name varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
description
(optional) A user defined description for the workspace.
display_name
(optional) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_T Type 🔗
The user defined function type contains the audit summary information and the definition of the user defined function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2(32767),
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify user defined function. On scenarios where reference to the user defined function is needed, a value can be passed in create.
model_type
(optional) The type of the object.
Allowed values are: 'DIS_USER_DEFINED_FUNCTION'
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
signatures
(optional) An array of function signature.
expr
(optional)
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_DETAILS_T Type 🔗
The information about a user defined function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2(32767),
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_details_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2,
object_status number,
registry_metadata dbms_cloud_oci_dataintegration_registry_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(required) Generated key that can be used in API calls to identify user defined function. On scenarios where reference to the user defined function is needed, a value can be passed in create.
model_type
(required) The type of the object.
Allowed values are: 'DIS_USER_DEFINED_FUNCTION'
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(required) The version of the object that is used to track changes in the object instance.
signatures
(optional) An array of function signature.
expr
(optional)
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
registry_metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_SUMMARY_T Type 🔗
The user defined function summary type contains the audit summary information and the definition of the user defined function.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
identifier varchar2(32767),
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2(32767),
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_summary_t (
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
identifier varchar2,
object_version number,
signatures dbms_cloud_oci_dataintegration_function_signature_tbl,
expr dbms_cloud_oci_dataintegration_expression_t,
description varchar2,
object_status number,
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
key_map json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Generated key that can be used in API calls to identify user defined function. On scenarios where reference to the user defined function is needed, a value can be passed in create.
model_type
(optional) The type of the object.
Allowed values are: 'DIS_USER_DEFINED_FUNCTION'
model_version
(optional) The model version of an object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
object_version
(optional) The version of the object that is used to track changes in the object instance.
signatures
(optional) An array of function signature.
expr
(optional)
description
(optional) Detailed description for the object.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
metadata
(optional)
key_map
(optional) A key map. If provided, key is replaced with generated key. This structure provides mapping between user provided key and generated key.
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_user_defined_function_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_user_defined_function_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_SUMMARY_COLLECTION_T Type 🔗
This is the collection of user defined function summaries, it may be a collection of lightweight details or full definitions.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_user_defined_function_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_summary_collection_t (
items dbms_cloud_oci_dataintegration_user_defined_function_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of user defined function summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_VALIDATION_T Type 🔗
The information about a UserDefinedFunction validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_validation_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_validation_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_validation_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) The total number of validation messages.
error_message_count
(optional) The total number of validation error messages.
warn_message_count
(optional) The total number of validation warning messages.
info_message_count
(optional) The total number of validation information messages.
validation_messages
(optional) The detailed information of the UserDefinedFunction object validation.
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_VALIDATION_SUMMARY_T Type 🔗
The information about a UserDefinedFunction validation.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2(32767),
model_type varchar2(32767),
model_version varchar2(32767),
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2(32767),
description varchar2(32767),
object_version number,
object_status number,
identifier varchar2(32767),
metadata dbms_cloud_oci_dataintegration_object_metadata_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_t (
total_message_count number,
error_message_count number,
warn_message_count number,
info_message_count number,
validation_messages json_element_t,
key varchar2,
model_type varchar2,
model_version varchar2,
parent_ref dbms_cloud_oci_dataintegration_parent_reference_t,
name varchar2,
description varchar2,
object_version number,
object_status number,
identifier varchar2,
metadata dbms_cloud_oci_dataintegration_object_metadata_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
total_message_count
(optional) The total number of validation messages.
error_message_count
(optional) The total number of validation error messages.
warn_message_count
(optional) The total number of validation warning messages.
info_message_count
(optional) The total number of validation information messages.
validation_messages
(optional) The detailed information of the UserDefinedFunction object validation.
key
(optional) Objects will use a 36 character key as unique ID. It is system generated and cannot be modified.
model_type
(optional) The type of the object.
model_version
(optional) The model version of the object.
parent_ref
(optional)
name
(optional) Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.
description
(optional) Detailed description for the object.
object_version
(optional) The version of the object that is used to track changes in the object instance.
object_status
(optional) The status of an object that can be set to value 1 for shallow references across objects, other values reserved.
identifier
(optional) Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.
metadata
(optional)
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_VALIDATION_SUMMARY_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_USER_DEFINED_FUNCTION_VALIDATION_SUMMARY_COLLECTION_T Type 🔗
A list of UserDefinedFunction validation summaries.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_collection_t FORCE AUTHID CURRENT_USER IS OBJECT (
items dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_collection_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_collection_t (
items dbms_cloud_oci_dataintegration_user_defined_function_validation_summary_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
items
(required) The array of validation summaries.
DBMS_CLOUD_OCI_DATAINTEGRATION_VALIDATION_MESSAGE_T Type 🔗
The level, message key, and validation message.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_validation_message_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_level varchar2(32767),
message_key varchar2(32767),
validation_message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_validation_message_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_validation_message_t (
l_level varchar2,
message_key varchar2,
validation_message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_level
(optional) The total number of validation messages.
message_key
(optional) The validation message key.
validation_message
(optional) The validation message.
DBMS_CLOUD_OCI_DATAINTEGRATION_WEEKLY_FREQUENCY_DETAILS_T Type 🔗
Frequency Details model for weekly frequency based on day of week.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_weekly_frequency_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_dataintegration_abstract_frequency_details_t (
time dbms_cloud_oci_dataintegration_time_t,
days dbms_cloud_oci_dataintegration_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_weekly_frequency_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_weekly_frequency_details_t (
model_type varchar2,
frequency varchar2,
time dbms_cloud_oci_dataintegration_time_t,
days dbms_cloud_oci_dataintegration_varchar2_tbl
) RETURN SELF AS RESULT
);
dbms_cloud_oci_dataintegration_weekly_frequency_details_t is a subtype of the dbms_cloud_oci_dataintegration_abstract_frequency_details_t type.
Fields
Field
Description
time
(optional)
days
(optional) A list of days of the week to be scheduled. i.e. execute on Monday and Thursday.
DBMS_CLOUD_OCI_DATAINTEGRATION_WORK_REQUEST_RESOURCE_T Type 🔗
The resource that is created or operated on by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
entity_type varchar2(32767),
action_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_work_request_resource_t (
entity_type varchar2,
action_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
entity_type
(required) The resource type the work request affects.
action_type
(required) The way in which this resource is affected by the work tracked in the work request. A resource being created, updated, or deleted will remain in the `IN_PROGRESS` state until work is complete for that resource at which point it will transition to `CREATED`, `UPDATED`, or `DELETED`, respectively.
(required) The OCID or other unique identifier of the resource the work request affects.
entity_uri
(optional) The URI path that is used in a GET request to access the resource metadata.
DBMS_CLOUD_OCI_DATAINTEGRATION_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_dataintegration_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_dataintegration_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATAINTEGRATION_WORK_REQUEST_T Type 🔗
The API operations used to create and configure Data Integration resources do not take effect immediately. In these cases, the operation spawns an asynchronous workflow to fulfill the request. Work requests provide visibility into the status of these in-progress, long-running asynchronous workflows.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_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_dataintegration_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_dataintegration_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_work_request_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_dataintegration_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
operation_type
(required) The asynchronous operation tracked by this work request.
(required) The OCID of the compartment that contains this 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 that are not in the same compartment, then the system picks a primary resource whose compartment should be used.
resources
(required) The resources affected by this work request.
percent_complete
(required) The completed percentage of the operation tracked by this work request.
time_accepted
(required) The date and time this work request was accepted, in the timestamp format defined by RFC 3339.
time_started
(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the timestamp format defined by RFC 3339.
time_finished
(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`, in the timestamp format defined by RFC 3339.
DBMS_CLOUD_OCI_DATAINTEGRATION_WORK_REQUEST_ERROR_T Type 🔗
The error that occured while executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_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_dataintegration_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_work_request_error_t (
code varchar2,
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A machine-usable code for the error that occured, as listed in API Errors.
message
(required) A user friendly description of the error that occured.
l_timestamp
(required) The date and time the error occured, in the timestamp format defined by RFC 3339.
DBMS_CLOUD_OCI_DATAINTEGRATION_WORK_REQUEST_LOG_ENTRY_T Type 🔗
The log message from executing an operation that is tracked by a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_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_dataintegration_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(required) A user friendly log message.
l_timestamp
(required) The date and time the log message was written, in the timestamp format defined by RFC 3339.
DBMS_CLOUD_OCI_DATAINTEGRATION_WORK_REQUEST_SUMMARY_T Type 🔗
A work request summary object.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_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_dataintegration_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_dataintegration_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_work_request_summary_t (
operation_type varchar2,
status varchar2,
id varchar2,
compartment_id varchar2,
resources dbms_cloud_oci_dataintegration_work_request_resource_tbl,
percent_complete number,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
operation_type
(required) The asynchronous operation tracked by this work request.
(required) The OCID of the compartment that contains this 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 that are not in the same compartment, then the system picks a primary resource whose compartment should be used.
resources
(required) The resources affected by this work request.
percent_complete
(required) The completed percentage of the operation tracked by this work request.
time_accepted
(required) The date and time this work request was accepted, in the timestamp format defined by RFC 3339.
time_started
(optional) The date and time the work request transitioned from `ACCEPTED` to `IN_PROGRESS`, in the timestamp format defined by RFC 3339.
time_finished
(optional) The date and time the work request reached a terminal state, either `FAILED` or `SUCCEEDED`, in the timestamp format defined by RFC 3339.
DBMS_CLOUD_OCI_DATAINTEGRATION_WORKSPACE_T Type 🔗
A workspace is an organizational construct to keep multiple data integration solutions and their resources (data assets, data flows, tasks, and so on) separate from each other, helping you to stay organized. For example, you could have separate workspaces for development, testing, and production.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_workspace_t FORCE AUTHID CURRENT_USER IS OBJECT (
vcn_id varchar2(32767),
subnet_id varchar2(32767),
dns_server_ip varchar2(32767),
dns_server_zone varchar2(32767),
is_private_network_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t,
description 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),
state_message varchar2(32767),
id varchar2(32767),
endpoint_id varchar2(32767),
endpoint_name varchar2(32767),
registry_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_workspace_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_workspace_t (
vcn_id varchar2,
subnet_id varchar2,
dns_server_ip varchar2,
dns_server_zone varchar2,
is_private_network_enabled number,
freeform_tags json_element_t,
defined_tags json_element_t,
description varchar2,
display_name varchar2,
compartment_id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
lifecycle_state varchar2,
state_message varchar2,
id varchar2,
endpoint_id varchar2,
endpoint_name varchar2,
registry_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
vcn_id
(optional) The OCID of the VCN the subnet is in.
subnet_id
(optional) The OCID of the subnet for customer connected databases.
dns_server_ip
(optional) The IP of the custom DNS.
dns_server_zone
(optional) The DNS zone of the custom DNS to use to resolve names.
is_private_network_enabled
(optional) Specifies whether the private network connection is enabled or disabled.
freeform_tags
(optional) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags. Example: `{\"Department\": \"Finance\"}`
defined_tags
(optional) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
description
(optional) A detailed description for the workspace.
display_name
(required) A user-friendly display name for the workspace. Does not have to be unique, and can be modified. Avoid entering confidential information.
compartment_id
(optional) The OCID of the compartment containing the workspace.
time_created
(optional) The date and time the workspace was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the workspace was updated, in the timestamp format defined by RFC3339.
lifecycle_state
(optional) Lifecycle states for workspaces in Data Integration Service CREATING - The resource is being created and may not be usable until the entire metadata is defined UPDATING - The resource is being updated and may not be usable until all changes are commited DELETING - The resource is being deleted and might require deep cleanup of children. ACTIVE - The resource is valid and available for access INACTIVE - The resource might be incomplete in its definition or might have been made unavailable for administrative reasons DELETED - The resource has been deleted and isn't available FAILED - The resource is in a failed state due to validation or other errors STARTING - The resource is being started and may not be usable until becomes ACTIVE again STOPPING - The resource is in the process of Stopping and may not be usable until it Stops or fails STOPPED - The resource is in Stopped state due to stop operation.
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in failed state.
id
(required) A system-generated and immutable identifier assigned to the workspace upon creation.
endpoint_id
(optional) OCID of the private endpoint associated with the container/workspace.
endpoint_name
(optional) Name of the private endpoint associated with the container/workspace.
registry_id
(optional) DCMS Registry ID associated with the container/workspace.
DBMS_CLOUD_OCI_DATAINTEGRATION_WORKSPACE_SUMMARY_T Type 🔗
Summary details of a workspace.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_dataintegration_workspace_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
description varchar2(32767),
display_name 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,
lifecycle_state varchar2(32767),
state_message varchar2(32767),
endpoint_name varchar2(32767),
endpoint_id varchar2(32767),
registry_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_workspace_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_dataintegration_workspace_summary_t (
id varchar2,
description varchar2,
display_name 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,
lifecycle_state varchar2,
state_message varchar2,
endpoint_name varchar2,
endpoint_id varchar2,
registry_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
id
(optional) A system-generated and immutable identifier assigned to the workspace upon creation.
description
(optional) A user defined description for the workspace.
display_name
(optional) A user-friendly display name that is changeable. Avoid entering confidential information.
compartment_id
(optional) The OCID of the compartment that contains the workspace.
time_created
(optional) The date and time the workspace was created, in the timestamp format defined by RFC3339.
time_updated
(optional) The date and time the workspace was updated, in the timestamp format defined by RFC3339.
freeform_tags
(optional) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{\"bar-key\": \"value\"}`
defined_tags
(optional) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}`
(optional) A detailed description about the current state of the workspace. Used to provide actionable information if the workspace is in a failed state.
endpoint_name
(optional) Name of the private endpoint associated with the container/workspace. Returns null if there is none.
endpoint_id
(optional) DCMS endpoint associated with the container/workspace. Returns null if there is none.
registry_id
(optional) DCMS registry associated with the container/workspace. Returns null if there is none.