CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_varchar2_tbl FORCE IS TABLE OF (varchar2(32767)) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_ARTIFACT_EXPORT_DETAILS_T Type 🔗
Details of Artifact source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_artifact_export_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
artifact_source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_export_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_export_details_t (
artifact_source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
artifact_source_type
(required) Source type where actually artifact is being stored
Allowed values are: 'ORACLE_OBJECT_STORAGE'
DBMS_CLOUD_OCI_DATASCIENCE_ARTIFACT_EXPORT_DETAILS_OBJECT_STORAGE_T Type 🔗
Model artifact source details for exporting artifact to service bucket
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_artifact_export_details_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_artifact_export_details_t (
namespace varchar2(32767),
source_bucket varchar2(32767),
source_object_name varchar2(32767),
source_region varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_export_details_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_export_details_object_storage_t (
artifact_source_type varchar2,
namespace varchar2,
source_bucket varchar2,
source_object_name varchar2,
source_region varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_artifact_export_details_object_storage_t is a subtype of the dbms_cloud_oci_datascience_artifact_export_details_t type.
Fields
Field
Description
namespace
(optional) The Object Storage namespace used for the request.
source_bucket
(optional) The name of the bucket. Avoid entering confidential information.
source_object_name
(optional) The name of the object resulting from the copy operation.
source_region
(optional) Region in which OSS bucket is present
DBMS_CLOUD_OCI_DATASCIENCE_ARTIFACT_IMPORT_DETAILS_T Type 🔗
Details of Artifact source
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_artifact_import_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
artifact_source_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_import_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_import_details_t (
artifact_source_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
artifact_source_type
(required) Source type where actually artifact is being stored
Allowed values are: 'ORACLE_OBJECT_STORAGE'
DBMS_CLOUD_OCI_DATASCIENCE_ARTIFACT_IMPORT_DETAILS_OBJECT_STORAGE_T Type 🔗
Artifact destination details for importing to destination bucket
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_artifact_import_details_object_storage_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_artifact_import_details_t (
namespace varchar2(32767),
destination_bucket varchar2(32767),
destination_object_name varchar2(32767),
destination_region varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_import_details_object_storage_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_artifact_import_details_object_storage_t (
artifact_source_type varchar2,
namespace varchar2,
destination_bucket varchar2,
destination_object_name varchar2,
destination_region varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_artifact_import_details_object_storage_t is a subtype of the dbms_cloud_oci_datascience_artifact_import_details_t type.
Fields
Field
Description
namespace
(optional) The Object Storage namespace used for the request.
destination_bucket
(optional) The name of the bucket. Avoid entering confidential information.
destination_object_name
(optional) The name of the object resulting from the copy operation.
destination_region
(optional) Region in which OSS bucket is present
DBMS_CLOUD_OCI_DATASCIENCE_LOG_DETAILS_T Type 🔗
The log details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
log_id varchar2(32767),
log_group_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_log_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_log_details_t (
log_id varchar2,
log_group_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_CATEGORY_LOG_DETAILS_T Type 🔗
The log details for each category.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_category_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_access dbms_cloud_oci_datascience_log_details_t,
predict dbms_cloud_oci_datascience_log_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_category_log_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_category_log_details_t (
l_access dbms_cloud_oci_datascience_log_details_t,
predict dbms_cloud_oci_datascience_log_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_access
(optional)
predict
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_DATA_SCIENCE_PRIVATE_ENDPOINT_COMPARTMENT_DETAILS_T Type 🔗
The details required to change a private endpoint compartment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_data_science_private_endpoint_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_data_science_private_endpoint_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_data_science_private_endpoint_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where you want to create private endpoint.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_JOB_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a job.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_job_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_job_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_job_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_JOB_RUN_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a job run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_job_run_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_job_run_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_job_run_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_MODEL_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a model.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_model_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_model_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_model_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_MODEL_DEPLOYMENT_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a model deployment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_model_deployment_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_model_deployment_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_model_deployment_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_MODEL_VERSION_SET_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a model version set.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_model_version_set_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_model_version_set_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_model_version_set_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where the resource should be moved to.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_NOTEBOOK_SESSION_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a notebook session.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_notebook_session_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_notebook_session_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_notebook_session_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_PIPELINE_COMPARTMENT_DETAILS_T Type 🔗
Details for which compartment to move the resource to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_pipeline_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_pipeline_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_pipeline_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_PIPELINE_RUN_COMPARTMENT_DETAILS_T Type 🔗
Details for which compartment to move the resource to.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_pipeline_run_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_pipeline_run_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_pipeline_run_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment into which the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CHANGE_PROJECT_COMPARTMENT_DETAILS_T Type 🔗
Details for changing the compartment of a project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_change_project_compartment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_project_compartment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_change_project_compartment_details_t (
compartment_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where the resource should be moved.
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_DATA_SCIENCE_PRIVATE_ENDPOINT_DETAILS_T Type 🔗
The details required to create a Data Science private endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_data_science_private_endpoint_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
description varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl,
subnet_id varchar2(32767),
sub_domain varchar2(32767),
data_science_resource_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_data_science_private_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_data_science_private_endpoint_details_t (
compartment_id varchar2,
description varchar2,
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl,
subnet_id varchar2,
sub_domain varchar2,
data_science_resource_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where you want to create the private endpoint.
description
(optional) A user friendly description. Avoid entering confidential information.
display_name
(optional) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
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\"}}`
nsg_ids
(optional) An array of network security group OCIDs.
subnet_id
(required) The OCID of the subnet.
sub_domain
(optional) Subdomain for a private endpoint FQDN.
data_science_resource_type
(required) Data Science resource type.
Allowed values are: 'NOTEBOOK_SESSION'
DBMS_CLOUD_OCI_DATASCIENCE_JOB_CONFIGURATION_DETAILS_T Type 🔗
The job configuration details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
job_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_configuration_details_t (
job_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
job_type
(required) The type of job.
Allowed values are: 'DEFAULT'
DBMS_CLOUD_OCI_DATASCIENCE_JOB_INFRASTRUCTURE_CONFIGURATION_DETAILS_T Type 🔗
The job infrastructure configuration details (shape, block storage, etc.)
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
job_infrastructure_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t (
job_infrastructure_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
job_infrastructure_type
(required) The infrastructure type used for job run.
Allowed values are: 'STANDALONE', 'ME_STANDALONE'
DBMS_CLOUD_OCI_DATASCIENCE_JOB_LOG_CONFIGURATION_DETAILS_T Type 🔗
Logging configuration for resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_log_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
enable_logging number,
enable_auto_log_creation number,
log_group_id varchar2(32767),
log_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_log_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_log_configuration_details_t (
enable_logging number,
enable_auto_log_creation number,
log_group_id varchar2,
log_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
enable_logging
(optional) If customer logging is enabled for job runs.
enable_auto_log_creation
(optional) If automatic on-behalf-of log object creation is enabled for job runs.
log_group_id
(optional) The log group id for where log objects are for job runs.
log_id
(optional) The log id the job run will push logs too.
DBMS_CLOUD_OCI_DATASCIENCE_STORAGE_MOUNT_CONFIGURATION_DETAILS_T Type 🔗
The storage mount configuration details
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_storage_mount_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
storage_type varchar2(32767),
destination_directory_name varchar2(32767),
destination_path varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_storage_mount_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_storage_mount_configuration_details_t (
storage_type varchar2,
destination_directory_name varchar2,
destination_path varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
(optional) The local path of the mounted directory, excluding directory name.
DBMS_CLOUD_OCI_DATASCIENCE_STORAGE_MOUNT_CONFIGURATION_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_storage_mount_configuration_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_storage_mount_configuration_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_JOB_DETAILS_T Type 🔗
Parameters needed to create a new job.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
project_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
job_configuration_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_log_configuration_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_job_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_job_details_t (
project_id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
job_configuration_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_log_configuration_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
project_id
(required) The OCID of the project to associate the job with.
compartment_id
(required) The OCID of the compartment where you want to create the job.
display_name
(optional) A user-friendly display name for the resource.
description
(optional) A short description of the job.
job_configuration_details
(required)
job_infrastructure_configuration_details
(required)
job_log_configuration_details
(optional)
job_storage_mount_configuration_details_list
(optional) Collection of JobStorageMountConfigurationDetails.
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_DATASCIENCE_CREATE_JOB_RUN_DETAILS_T Type 🔗
Parameters needed to create a new job run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_job_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
project_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
job_id varchar2(32767),
job_configuration_override_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_log_configuration_override_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_job_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_job_run_details_t (
project_id varchar2,
compartment_id varchar2,
display_name varchar2,
job_id varchar2,
job_configuration_override_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_log_configuration_override_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
project_id
(required) The OCID of the project to associate the job with.
compartment_id
(required) The OCID of the compartment where you want to create the job.
display_name
(optional) A user-friendly display name for the resource.
job_id
(required) The OCID of the job to create a run for.
job_configuration_override_details
(optional)
job_log_configuration_override_details
(optional)
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_DATASCIENCE_MODEL_DEPLOYMENT_CONFIGURATION_DETAILS_T Type 🔗
The model deployment configuration details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_deployment_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
deployment_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_configuration_details_t (
deployment_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
deployment_type
(required) The type of the model deployment.
Allowed values are: 'SINGLE_MODEL'
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_MODEL_DEPLOYMENT_DETAILS_T Type 🔗
Parameters needed to create a new model deployment. Model deployments are used by data scientists to perform predictions from the model hosted on an HTTP server.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_model_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
model_deployment_configuration_details dbms_cloud_oci_datascience_model_deployment_configuration_details_t,
category_log_details dbms_cloud_oci_datascience_category_log_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_deployment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_deployment_details_t (
display_name varchar2,
description varchar2,
project_id varchar2,
compartment_id varchar2,
model_deployment_configuration_details dbms_cloud_oci_datascience_model_deployment_configuration_details_t,
category_log_details dbms_cloud_oci_datascience_category_log_details_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. Does not have to be unique, and can be modified. Avoid entering confidential information. Example: `My ModelDeployment`
description
(optional) A short description of the model deployment.
project_id
(required) The OCID of the project to associate with the model deployment.
compartment_id
(required) The OCID of the compartment where you want to create the model deployment.
model_deployment_configuration_details
(required)
category_log_details
(optional)
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_DATASCIENCE_METADATA_T Type 🔗
Defines properties of each model metadata.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_metadata_t FORCE AUTHID CURRENT_USER IS OBJECT (
key varchar2(32767),
value varchar2(32767),
description varchar2(32767),
category varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_metadata_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_metadata_t (
key varchar2,
value varchar2,
description varchar2,
category varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
key
(optional) Key of the model Metadata. The key can either be user defined or OCI defined. List of OCI defined keys: * useCaseType * libraryName * libraryVersion * estimatorClass * hyperParameters * testartifactresults
(optional) Category of model metadata which should be null for defined metadata.For custom metadata is should be one of the following values \"Performance,Training Profile,Training and Validation Datasets,Training Environment,other\".
DBMS_CLOUD_OCI_DATASCIENCE_METADATA_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_metadata_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_metadata_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_metadata_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_MODEL_DETAILS_T Type 🔗
Parameters needed to create a new model. Models are mathematical representations of the relationships between data. Models are represented by their associated metadata and artifact.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
project_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
custom_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
defined_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
input_schema varchar2(32767),
output_schema varchar2(32767),
model_version_set_id varchar2(32767),
version_label varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_details_t (
compartment_id varchar2,
project_id varchar2,
display_name varchar2,
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
custom_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
defined_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
input_schema varchar2,
output_schema varchar2,
model_version_set_id varchar2,
version_label varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to create the model in.
project_id
(required) The OCID of the project to associate with the model.
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My Model`
description
(optional) A short description of the model.
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\"}}`
custom_metadata_list
(optional) An array of custom metadata details for the model.
defined_metadata_list
(optional) An array of defined metadata details for the model.
input_schema
(optional) Input schema file content in String format
output_schema
(optional) Output schema file content in String format
model_version_set_id
(optional) The OCID of the model version set that the model is associated to.
version_label
(optional) The version label can add an additional description of the lifecycle state of the model or the application using/training the model.
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_MODEL_PROVENANCE_DETAILS_T Type 🔗
Model provenance gives data scientists information about the origin of their model. This information allows data scientists to reproduce the development environment in which the model was trained.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_model_provenance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
repository_url varchar2(32767),
git_branch varchar2(32767),
git_commit varchar2(32767),
script_dir varchar2(32767),
training_script varchar2(32767),
training_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_provenance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_provenance_details_t (
repository_url varchar2,
git_branch varchar2,
git_commit varchar2,
script_dir varchar2,
training_script varchar2,
training_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
repository_url
(optional) For model reproducibility purposes. URL of the git repository associated with model training.
git_branch
(optional) For model reproducibility purposes. Branch of the git repository associated with model training.
git_commit
(optional) For model reproducibility purposes. Commit ID of the git repository associated with model training.
script_dir
(optional) For model reproducibility purposes. Path to model artifacts.
training_script
(optional) For model reproducibility purposes. Path to the python script or notebook in which the model was trained.\"
training_id
(optional) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_MODEL_VERSION_SET_DETAILS_T Type 🔗
Parameters that are required to create a new model version set.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_model_version_set_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
project_id varchar2(32767),
name varchar2(32767),
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_version_set_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_model_version_set_details_t (
compartment_id varchar2,
project_id varchar2,
name varchar2,
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment to create the model version set in.
project_id
(required) The OCID of the project to associate with the model version set.
name
(required) A user-friendly name for the resource. It must be unique and can't be modified. Avoid entering confidential information. Example: `My model version set`
description
(optional) A short description of the model version set.
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_DATASCIENCE_NOTEBOOK_SESSION_SHAPE_CONFIG_DETAILS_T Type 🔗
Details for the notebook session shape configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_shape_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ocpus number,
memory_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_shape_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_shape_config_details_t (
ocpus number,
memory_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ocpus
(optional) The total number of OCPUs available to the notebook session instance.
memory_in_g_bs
(optional) The total amount of memory available to the notebook session instance, in gigabytes.
DBMS_CLOUD_OCI_DATASCIENCE_NOTEBOOK_SESSION_CONFIGURATION_DETAILS_T Type 🔗
Details for the notebook session configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
shape varchar2(32767),
block_storage_size_in_g_bs number,
subnet_id varchar2(32767),
private_endpoint_id varchar2(32767),
notebook_session_shape_config_details dbms_cloud_oci_datascience_notebook_session_shape_config_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_configuration_details_t (
shape varchar2,
block_storage_size_in_g_bs number,
subnet_id varchar2,
private_endpoint_id varchar2,
notebook_session_shape_config_details dbms_cloud_oci_datascience_notebook_session_shape_config_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
shape
(required) The shape used to launch the notebook session compute instance. The list of available shapes in a given compartment can be retrieved using the `ListNotebookSessionShapes` endpoint.
block_storage_size_in_g_bs
(optional) A notebook session instance is provided with a block storage volume. This specifies the size of the volume in GBs.
subnet_id
(required) A notebook session instance is provided with a VNIC for network access. This specifies the OCID of the subnet to create a VNIC in. The subnet should be in a VCN with a NAT gateway for egress to the internet.
private_endpoint_id
(optional) The OCID of a Data Science private endpoint.
notebook_session_shape_config_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_NOTEBOOK_SESSION_CONFIG_DETAILS_T Type 🔗
Details for the notebook session configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
shape varchar2(32767),
block_storage_size_in_g_bs number,
subnet_id varchar2(32767),
private_endpoint_id varchar2(32767),
notebook_session_shape_config_details dbms_cloud_oci_datascience_notebook_session_shape_config_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_config_details_t (
shape varchar2,
block_storage_size_in_g_bs number,
subnet_id varchar2,
private_endpoint_id varchar2,
notebook_session_shape_config_details dbms_cloud_oci_datascience_notebook_session_shape_config_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
shape
(required) The shape used to launch the notebook session compute instance. The list of available shapes in a given compartment can be retrieved using the `ListNotebookSessionShapes` endpoint.
block_storage_size_in_g_bs
(optional) A notebook session instance is provided with a block storage volume. This specifies the size of the volume in GBs.
subnet_id
(optional) A notebook session instance is provided with a VNIC for network access. This specifies the OCID of the subnet to create a VNIC in. The subnet should be in a VCN with a NAT gateway for egress to the internet.
private_endpoint_id
(optional) The OCID of a Data Science private endpoint.
notebook_session_shape_config_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_NOTEBOOK_SESSION_GIT_REPO_CONFIG_DETAILS_T Type 🔗
Git repository configurations.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
url varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_t (
url varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
url
(required) The repository URL
DBMS_CLOUD_OCI_DATASCIENCE_NOTEBOOK_SESSION_GIT_REPO_CONFIG_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_NOTEBOOK_SESSION_GIT_CONFIG_DETAILS_T Type 🔗
Git configuration Details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_git_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
notebook_session_git_repo_config_collection dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_git_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_git_config_details_t (
notebook_session_git_repo_config_collection dbms_cloud_oci_datascience_notebook_session_git_repo_config_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
notebook_session_git_repo_config_collection
(optional) A collection of Git repository configurations.
DBMS_CLOUD_OCI_DATASCIENCE_NOTEBOOK_SESSION_RUNTIME_CONFIG_DETAILS_T Type 🔗
Notebook Session runtime configuration details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
custom_environment_variables json_element_t,
notebook_session_git_config_details dbms_cloud_oci_datascience_notebook_session_git_config_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t (
custom_environment_variables json_element_t,
notebook_session_git_config_details dbms_cloud_oci_datascience_notebook_session_git_config_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
custom_environment_variables
(optional) Custom environment variables for Notebook Session. These key-value pairs will be available for customers in Notebook Sessions.
notebook_session_git_config_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_NOTEBOOK_SESSION_DETAILS_T Type 🔗
Parameters needed to create a new notebook session. Notebook sessions are interactive coding environments for data scientists.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_notebook_session_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
notebook_session_configuration_details dbms_cloud_oci_datascience_notebook_session_configuration_details_t,
notebook_session_config_details dbms_cloud_oci_datascience_notebook_session_config_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
notebook_session_runtime_config_details dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t,
notebook_session_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_notebook_session_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_notebook_session_details_t (
display_name varchar2,
project_id varchar2,
compartment_id varchar2,
notebook_session_configuration_details dbms_cloud_oci_datascience_notebook_session_configuration_details_t,
notebook_session_config_details dbms_cloud_oci_datascience_notebook_session_config_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
notebook_session_runtime_config_details dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t,
notebook_session_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My NotebookSession`
project_id
(required) The OCID of the project to associate with the notebook session.
compartment_id
(required) The OCID of the compartment where you want to create the notebook session.
notebook_session_configuration_details
(optional)
notebook_session_config_details
(optional)
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\"}}`
(optional) Collection of NotebookSessionStorageMountConfigurationDetails.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_CONFIGURATION_DETAILS_T Type 🔗
The configuration details of a pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_configuration_details_t (
l_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
l_type
(required) The type of pipeline.
Allowed values are: 'DEFAULT'
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_LOG_CONFIGURATION_DETAILS_T Type 🔗
The pipeline log configuration details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_log_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
enable_logging number,
enable_auto_log_creation number,
log_group_id varchar2(32767),
log_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_log_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_log_configuration_details_t (
enable_logging number,
enable_auto_log_creation number,
log_group_id varchar2,
log_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
enable_logging
(optional) If customer logging is enabled for pipeline.
enable_auto_log_creation
(optional) If automatic on-behalf-of log object creation is enabled for pipeline runs.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_SHAPE_CONFIG_DETAILS_T Type 🔗
Details for the pipeline step run shape configuration. Specify only when a flex shape is selected.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_shape_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ocpus number,
memory_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_shape_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_shape_config_details_t (
ocpus number,
memory_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ocpus
(optional) A pipeline step run instance of type VM.Standard.E3.Flex allows the ocpu count to be specified.
memory_in_g_bs
(optional) A pipeline step run instance of type VM.Standard.E3.Flex allows memory to be specified. This specifies the size of the memory in GBs.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_INFRASTRUCTURE_CONFIGURATION_DETAILS_T Type 🔗
The infrastructure configuration details of a pipeline or a step.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
shape_name varchar2(32767),
block_storage_size_in_g_bs number,
shape_config_details dbms_cloud_oci_datascience_pipeline_shape_config_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t (
shape_name varchar2,
block_storage_size_in_g_bs number,
shape_config_details dbms_cloud_oci_datascience_pipeline_shape_config_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
shape_name
(required) The shape used to launch the instance for all step runs in the pipeline.
block_storage_size_in_g_bs
(required) The size of the block storage volume to attach to the instance.
shape_config_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_CONFIGURATION_DETAILS_T Type 🔗
The configuration details of a step.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
maximum_runtime_in_minutes number,
environment_variables json_element_t,
command_line_arguments varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_configuration_details_t (
maximum_runtime_in_minutes number,
environment_variables json_element_t,
command_line_arguments varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
maximum_runtime_in_minutes
(optional) A time bound for the execution of the step.
environment_variables
(optional) Environment variables to set for step.
command_line_arguments
(optional) The command line arguments to set for step.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_DETAILS_T Type 🔗
A step in the pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
step_type varchar2(32767),
step_name varchar2(32767),
description varchar2(32767),
depends_on dbms_cloud_oci_datascience_varchar2_tbl,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_details_t (
step_type varchar2,
step_name varchar2,
description varchar2,
depends_on dbms_cloud_oci_datascience_varchar2_tbl,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
step_type
(required) The type of step.
Allowed values are: 'ML_JOB', 'CUSTOM_SCRIPT'
step_name
(required) The name of the step. It must be unique within the pipeline. This is used to create the pipeline DAG.
description
(optional) A short description of the step.
depends_on
(optional) The list of step names this current step depends on for execution.
step_configuration_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_pipeline_step_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_pipeline_step_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_PIPELINE_DETAILS_T Type 🔗
The information about new Pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_pipeline_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
project_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
infrastructure_configuration_details dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t,
step_details dbms_cloud_oci_datascience_pipeline_step_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_pipeline_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_pipeline_details_t (
project_id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
infrastructure_configuration_details dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t,
step_details dbms_cloud_oci_datascience_pipeline_step_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
project_id
(required) The OCID of the project to associate the pipeline with.
compartment_id
(required) The OCID of the compartment where you want to create the pipeline.
display_name
(optional) A user-friendly display name for the resource.
description
(optional) A short description of the pipeline.
configuration_details
(optional)
log_configuration_details
(optional)
infrastructure_configuration_details
(optional)
step_details
(required) Array of step details for each step.
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_DATASCIENCE_PIPELINE_STEP_OVERRIDE_DETAILS_T Type 🔗
Override details of the step. Only Step Configuration is allowed to be overridden.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_override_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
step_name varchar2(32767),
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_override_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_override_details_t (
step_name varchar2,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
step_name
(required) The name of the step.
step_configuration_details
(required)
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_OVERRIDE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_pipeline_step_override_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_override_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_pipeline_step_override_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_PIPELINE_RUN_DETAILS_T Type 🔗
The information about new PipelineRun.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_pipeline_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
project_id varchar2(32767),
compartment_id varchar2(32767),
pipeline_id varchar2(32767),
display_name varchar2(32767),
configuration_override_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_override_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
step_override_details dbms_cloud_oci_datascience_pipeline_step_override_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_pipeline_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_pipeline_run_details_t (
project_id varchar2,
compartment_id varchar2,
pipeline_id varchar2,
display_name varchar2,
configuration_override_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_override_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
step_override_details dbms_cloud_oci_datascience_pipeline_step_override_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
project_id
(optional) The OCID of the project to associate the pipeline run with.
compartment_id
(required) The OCID of the compartment where you want to create the pipeline run.
pipeline_id
(required) The OCID of the pipeline for which pipeline run is created.
display_name
(optional) A user-friendly display name for the resource.
configuration_override_details
(optional)
log_configuration_override_details
(optional)
step_override_details
(optional) Array of step override details. Only Step Configuration is allowed to be overridden.
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\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATASCIENCE_CREATE_PROJECT_DETAILS_T Type 🔗
Parameters needed to create a new project. Projects enable users to organize their data science work.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_create_project_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_project_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_create_project_details_t (
display_name varchar2,
description varchar2,
compartment_id varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the project.
compartment_id
(required) The OCID of the compartment to create the project in.
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_DATASCIENCE_DATA_SCIENCE_PRIVATE_ENDPOINT_T Type 🔗
Data Science private endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_data_science_private_endpoint_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
description varchar2(32767),
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_details varchar2(32767),
lifecycle_state varchar2(32767),
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl,
created_by varchar2(32767),
subnet_id varchar2(32767),
fqdn varchar2(32767),
data_science_resource_type varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_data_science_private_endpoint_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_data_science_private_endpoint_t (
compartment_id varchar2,
defined_tags json_element_t,
description varchar2,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_details varchar2,
lifecycle_state varchar2,
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl,
created_by varchar2,
subnet_id varchar2,
fqdn varchar2,
data_science_resource_type varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where you want to create private endpoint.
defined_tags
(required) 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 friendly description. Avoid entering confidential information.
display_name
(required) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
freeform_tags
(required) 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\"}`
id
(required) The OCID of a private endpoint.
lifecycle_details
(optional) Details of the state of Data Science private endpoint.
lifecycle_state
(required) State of the Data Science private endpoint.
(optional) An array of network security group OCIDs.
created_by
(required) The OCID of the user that created the private endpoint.
subnet_id
(required) The OCID of a subnet.
fqdn
(optional) Accesing the Data Science resource using FQDN.
data_science_resource_type
(optional) Data Science resource type.
Allowed values are: 'NOTEBOOK_SESSION'
time_created
(required) The date and time that the Data Science private endpoint was created expressed in RFC 3339 timestamp format. Example: `2018-04-03T21:10:29.600Z`
time_updated
(required) The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: `2018-04-03T21:10:29.600Z`
DBMS_CLOUD_OCI_DATASCIENCE_DATA_SCIENCE_PRIVATE_ENDPOINT_SUMMARY_T Type 🔗
List of Data Science private endpoints.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_data_science_private_endpoint_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
defined_tags json_element_t,
display_name varchar2(32767),
freeform_tags json_element_t,
id varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
data_science_resource_type varchar2(32767),
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl,
created_by varchar2(32767),
subnet_id varchar2(32767),
fqdn varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_data_science_private_endpoint_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_data_science_private_endpoint_summary_t (
compartment_id varchar2,
defined_tags json_element_t,
display_name varchar2,
freeform_tags json_element_t,
id varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
data_science_resource_type varchar2,
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl,
created_by varchar2,
subnet_id varchar2,
fqdn varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
compartment_id
(required) The OCID of the compartment where you want to create private Endpoint.
defined_tags
(required) Defined tags for this resource. Each key is predefined and scoped to a namespace. See Resource Tags. Example: `{\"Operations\": {\"CostCenter\": \"42\"}}`
display_name
(required) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
freeform_tags
(required) 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\"}`
(required) Details of the state of a private endpoint.
data_science_resource_type
(required) Data Science resource type.
Allowed values are: 'NOTEBOOK_SESSION'
nsg_ids
(optional) An array of network security group OCIDs.
created_by
(required) The OCID of the user that created the private endpoint.
subnet_id
(required) The OCID of a subnet.
fqdn
(required) Accesing Data Science resource using FQDN.
time_created
(required) The date and time that the Data Science private endpoint was created, expressed in RFC 3339 timestamp format. Example: `2018-04-03T21:10:29.600Z`
time_updated
(required) The date and time that the Data Science private endpoint was updated expressed in RFC 3339 timestamp format. Example: `2018-04-03T21:10:29.600Z`
DBMS_CLOUD_OCI_DATASCIENCE_DEFAULT_JOB_CONFIGURATION_DETAILS_T Type 🔗
The default job configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_default_job_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_job_configuration_details_t (
environment_variables json_element_t,
command_line_arguments varchar2(32767),
maximum_runtime_in_minutes number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_default_job_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_default_job_configuration_details_t (
job_type varchar2,
environment_variables json_element_t,
command_line_arguments varchar2,
maximum_runtime_in_minutes number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_default_job_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_job_configuration_details_t type.
Fields
Field
Description
environment_variables
(optional) Environment variables to set for the job.
command_line_arguments
(optional) The arguments to pass to the job.
maximum_runtime_in_minutes
(optional) A time bound for the execution of the job. Timer starts when the job becomes active.
DBMS_CLOUD_OCI_DATASCIENCE_MODEL_DEPLOYMENT_ENVIRONMENT_CONFIGURATION_DETAILS_T Type 🔗
The configuration to carry the environment details thats used in Model Deployment creation
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
environment_configuration_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t (
environment_configuration_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
environment_configuration_type
(required) The environment configuration type
Allowed values are: 'DEFAULT', 'OCIR_CONTAINER'
DBMS_CLOUD_OCI_DATASCIENCE_DEFAULT_MODEL_DEPLOYMENT_ENVIRONMENT_CONFIGURATION_DETAILS_T Type 🔗
The environment configuration details object for managed container
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_default_model_deployment_environment_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t (
environment_variables json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_default_model_deployment_environment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_default_model_deployment_environment_configuration_details_t (
environment_configuration_type varchar2,
environment_variables json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_default_model_deployment_environment_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t type.
Fields
Field
Description
environment_variables
(optional) Environment variables to set for the web server container. The size of envVars must be less than 2048 bytes. Key should be under 32 characters. Key should contain only letters, digits and underscore (_) Key should start with a letter. Key should have at least 2 characters. Key should not end with underscore eg. `TEST_` Key if added cannot be empty. Value can be empty. No specific size limits on individual Values. But overall environment variables is limited to 2048 bytes. Key can't be reserved Model Deployment environment variables.
DBMS_CLOUD_OCI_DATASCIENCE_ERROR_T Type 🔗
Error schema.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_error_t FORCE AUTHID CURRENT_USER IS OBJECT (
code varchar2(32767),
message varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_error_t (
code varchar2,
message varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
code
(required) A short error code that defines the error, which is meant for programmatic parsing. See API Errors.
message
(required) A human-readable error string.
DBMS_CLOUD_OCI_DATASCIENCE_EXPORT_MODEL_ARTIFACT_DETAILS_T Type 🔗
Details required for exporting the model artifact from source to service bucket
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_export_model_artifact_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
artifact_export_details dbms_cloud_oci_datascience_artifact_export_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_export_model_artifact_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_export_model_artifact_details_t (
artifact_export_details dbms_cloud_oci_datascience_artifact_export_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
artifact_export_details
(required)
DBMS_CLOUD_OCI_DATASCIENCE_FAST_LAUNCH_JOB_CONFIG_SUMMARY_T Type 🔗
The shape config to launch a fast launch capable job instance
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_fast_launch_job_config_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
shape_name varchar2(32767),
core_count number,
memory_in_g_bs number,
shape_series varchar2(32767),
managed_egress_support varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_fast_launch_job_config_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_fast_launch_job_config_summary_t (
name varchar2,
shape_name varchar2,
core_count number,
memory_in_g_bs number,
shape_series varchar2,
managed_egress_support varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the fast launch job config
shape_name
(required) The name of the fast launch job shape.
core_count
(required) The number of cores associated with this fast launch job shape.
memory_in_g_bs
(required) The number of cores associated with this fast launch job shape.
shape_series
(required) The family that the compute shape belongs to.
DBMS_CLOUD_OCI_DATASCIENCE_FILE_STORAGE_MOUNT_CONFIGURATION_DETAILS_T Type 🔗
The File Storage Mount Configuration Details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_file_storage_mount_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_storage_mount_configuration_details_t (
mount_target_id varchar2(32767),
export_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_file_storage_mount_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_file_storage_mount_configuration_details_t (
storage_type varchar2,
destination_directory_name varchar2,
destination_path varchar2,
mount_target_id varchar2,
export_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_file_storage_mount_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_storage_mount_configuration_details_t type.
Fields
Field
Description
mount_target_id
(required) OCID of the mount target
export_id
(required) OCID of the export
DBMS_CLOUD_OCI_DATASCIENCE_SCALING_POLICY_T Type 🔗
The scaling policy to apply to each model of the deployment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_scaling_policy_t FORCE AUTHID CURRENT_USER IS OBJECT (
policy_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_scaling_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_scaling_policy_t (
policy_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
policy_type
(required) The type of scaling policy.
Allowed values are: 'FIXED_SIZE'
DBMS_CLOUD_OCI_DATASCIENCE_FIXED_SIZE_SCALING_POLICY_T Type 🔗
The fixed size scaling policy.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_fixed_size_scaling_policy_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_scaling_policy_t (
instance_count number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_fixed_size_scaling_policy_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_fixed_size_scaling_policy_t (
policy_type varchar2,
instance_count number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_fixed_size_scaling_policy_t is a subtype of the dbms_cloud_oci_datascience_scaling_policy_t type.
Fields
Field
Description
instance_count
(required) The number of instances for the model deployment.
DBMS_CLOUD_OCI_DATASCIENCE_IMPORT_MODEL_ARTIFACT_DETAILS_T Type 🔗
Details required for importing the artifact from service bucket
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_import_model_artifact_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
artifact_import_details dbms_cloud_oci_datascience_artifact_import_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_import_model_artifact_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_import_model_artifact_details_t (
artifact_import_details dbms_cloud_oci_datascience_artifact_import_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
artifact_import_details
(required)
DBMS_CLOUD_OCI_DATASCIENCE_MODEL_DEPLOYMENT_INSTANCE_SHAPE_CONFIG_DETAILS_T Type 🔗
Details for the model-deployment instance shape configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_deployment_instance_shape_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ocpus number,
memory_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_instance_shape_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_instance_shape_config_details_t (
ocpus number,
memory_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ocpus
(optional) A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the ocpu count to be specified with in the range of 1 to 64 ocpu. VM.Standard3.Flex OCPU range is between 1 to 32 ocpu and for VM.Optimized3.Flex OCPU range is 1 to 18 ocpu.
memory_in_g_bs
(optional) A model-deployment instance of type VM.Standard.E3.Flex or VM.Standard.E4.Flex allows the memory to be specified with in the range of 6 to 1024 GB. VM.Standard3.Flex memory range is between 6 to 512 GB and VM.Optimized3.Flex memory range is between 6 to 256 GB.
DBMS_CLOUD_OCI_DATASCIENCE_INSTANCE_CONFIGURATION_T Type 🔗
The model deployment instance configuration
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_instance_configuration_t FORCE AUTHID CURRENT_USER IS OBJECT (
instance_shape_name varchar2(32767),
model_deployment_instance_shape_config_details dbms_cloud_oci_datascience_model_deployment_instance_shape_config_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_instance_configuration_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_instance_configuration_t (
instance_shape_name varchar2,
model_deployment_instance_shape_config_details dbms_cloud_oci_datascience_model_deployment_instance_shape_config_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
instance_shape_name
(required) The shape used to launch the model deployment instances.
model_deployment_instance_shape_config_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_JOB_T Type 🔗
A job for training models.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
job_configuration_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_log_configuration_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_t (
id varchar2,
time_created timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
job_configuration_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_log_configuration_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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_DATASCIENCE_JOB_RUN_LOG_DETAILS_T Type 🔗
Customer logging details for job run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_run_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
log_group_id varchar2(32767),
log_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_run_log_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_run_log_details_t (
log_group_id varchar2,
log_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
log_group_id
(required) The log group id for where log objects will be for job runs.
log_id
(required) The log id of the log object the job run logs will be shipped to.
DBMS_CLOUD_OCI_DATASCIENCE_JOB_RUN_T Type 🔗
A job run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_run_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
job_id varchar2(32767),
display_name varchar2(32767),
job_configuration_override_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_log_configuration_override_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
log_details dbms_cloud_oci_datascience_job_run_log_details_t,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_run_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_run_t (
id varchar2,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
job_id varchar2,
display_name varchar2,
job_configuration_override_details dbms_cloud_oci_datascience_job_configuration_details_t,
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_log_configuration_override_details dbms_cloud_oci_datascience_job_log_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
log_details dbms_cloud_oci_datascience_job_run_log_details_t,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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_DATASCIENCE_JOB_RUN_SUMMARY_T Type 🔗
Summary information for a Job.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_run_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
job_id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_run_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_run_summary_t (
id varchar2,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
job_id varchar2,
display_name varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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_DATASCIENCE_JOB_SHAPE_CONFIG_DETAILS_T Type 🔗
Details for the job run shape configuration. Specify only when a flex shape is selected.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_shape_config_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
ocpus number,
memory_in_g_bs number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_shape_config_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_shape_config_details_t (
ocpus number,
memory_in_g_bs number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
ocpus
(optional) The total number of OCPUs available to the job run instance.
memory_in_g_bs
(optional) The total amount of memory available to the job run instance, in gigabytes.
DBMS_CLOUD_OCI_DATASCIENCE_JOB_SHAPE_SUMMARY_T Type 🔗
The compute shape used to launch a job compute instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_shape_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
core_count number,
memory_in_g_bs number,
shape_series varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_shape_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_shape_summary_t (
name varchar2,
core_count number,
memory_in_g_bs number,
shape_series varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the job shape.
core_count
(required) The number of cores associated with this job run shape.
memory_in_g_bs
(required) The number of cores associated with this job shape.
shape_series
(required) The family that the compute shape belongs to.
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_job_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_job_summary_t (
id varchar2,
time_created timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
display_name varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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_DATASCIENCE_MANAGED_EGRESS_STANDALONE_JOB_INFRASTRUCTURE_CONFIGURATION_DETAILS_T Type 🔗
The standalone job infrastructure configuration with network egress settings preconfigured.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_managed_egress_standalone_job_infrastructure_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t (
shape_name varchar2(32767),
block_storage_size_in_g_bs number,
job_shape_config_details dbms_cloud_oci_datascience_job_shape_config_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_managed_egress_standalone_job_infrastructure_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_managed_egress_standalone_job_infrastructure_configuration_details_t (
job_infrastructure_type varchar2,
shape_name varchar2,
block_storage_size_in_g_bs number,
job_shape_config_details dbms_cloud_oci_datascience_job_shape_config_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_managed_egress_standalone_job_infrastructure_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t type.
Fields
Field
Description
shape_name
(required) The shape used to launch the job run instances.
block_storage_size_in_g_bs
(required) The size of the block storage volume to attach to the instance running the job
job_shape_config_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_MODEL_T Type 🔗
Models are mathematical representations of the relationships between data. Models are represented by their associated metadata and artifacts.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
project_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
created_by varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
custom_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
defined_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
input_schema varchar2(32767),
output_schema varchar2(32767),
model_version_set_id varchar2(32767),
model_version_set_name varchar2(32767),
version_id number,
version_label varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_t (
id varchar2,
compartment_id varchar2,
project_id varchar2,
display_name varchar2,
description varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
created_by varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
custom_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
defined_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
input_schema varchar2,
output_schema varchar2,
model_version_set_id varchar2,
model_version_set_name varchar2,
version_id number,
version_label varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
created_by
(required) The OCID of the user who created the model.
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\"}}`
custom_metadata_list
(optional) An array of custom metadata details for the model.
defined_metadata_list
(optional) An array of defined metadata details for the model.
input_schema
(optional) Input schema file content in String format
output_schema
(optional) Output schema file content in String format
model_version_set_id
(required) The OCID of the model version set that the model is associated to.
model_version_set_name
(required) The name of the model version set that the model is associated to.
version_id
(required) Unique identifier assigned to each version of the model.
version_label
(required) The version label can add an additional description of the lifecycle state of the model or the application using and training the model.
DBMS_CLOUD_OCI_DATASCIENCE_MODEL_CONFIGURATION_DETAILS_T Type 🔗
The model configuration details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_id varchar2(32767),
instance_configuration dbms_cloud_oci_datascience_instance_configuration_t,
scaling_policy dbms_cloud_oci_datascience_scaling_policy_t,
bandwidth_mbps number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_configuration_details_t (
model_id varchar2,
instance_configuration dbms_cloud_oci_datascience_instance_configuration_t,
scaling_policy dbms_cloud_oci_datascience_scaling_policy_t,
bandwidth_mbps number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
model_id
(required) The OCID of the model you want to deploy.
instance_configuration
(required)
scaling_policy
(optional)
bandwidth_mbps
(optional) The minimum network bandwidth for the model deployment.
DBMS_CLOUD_OCI_DATASCIENCE_MODEL_DEPLOYMENT_T Type 🔗
Model deployments are used by data scientists to perform predictions from the model hosted on an HTTP server.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_deployment_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
display_name varchar2(32767),
description varchar2(32767),
project_id varchar2(32767),
created_by varchar2(32767),
compartment_id varchar2(32767),
model_deployment_configuration_details dbms_cloud_oci_datascience_model_deployment_configuration_details_t,
category_log_details dbms_cloud_oci_datascience_category_log_details_t,
model_deployment_url varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_t (
id varchar2,
time_created timestamp with time zone,
display_name varchar2,
description varchar2,
project_id varchar2,
created_by varchar2,
compartment_id varchar2,
model_deployment_configuration_details dbms_cloud_oci_datascience_model_deployment_configuration_details_t,
category_log_details dbms_cloud_oci_datascience_category_log_details_t,
model_deployment_url varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The date and time the resource was created, in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
display_name
(required) A user-friendly display name for the resource. Does not have to be unique, and can be modified. Avoid entering confidential information. Example: `My ModelDeployment`
description
(optional) A short description of the model deployment.
project_id
(required) The OCID of the project associated with the model deployment.
created_by
(required) The OCID of the user who created the model deployment.
compartment_id
(required) The OCID of the model deployment's compartment.
model_deployment_configuration_details
(optional)
category_log_details
(optional)
model_deployment_url
(required) The URL to interact with the model deployment.
(optional) Details about the state of the model deployment.
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_DATASCIENCE_MODEL_DEPLOYMENT_SHAPE_SUMMARY_T Type 🔗
The compute shape used to launch a model deployment compute instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_deployment_shape_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
core_count number,
memory_in_g_bs number,
shape_series varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_shape_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_deployment_shape_summary_t (
name varchar2,
core_count number,
memory_in_g_bs number,
shape_series varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the model deployment shape.
core_count
(required) The number of cores associated with this model deployment shape.
memory_in_g_bs
(required) The amount of memory in GBs associated with this model deployment shape.
shape_series
(required) The family that the compute shape belongs to.
(required) The date and time the resource was created, in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
display_name
(required) A user-friendly display name for the resource. Does not have to be unique, and can be modified. Avoid entering confidential information. Example: `My ModelDeployment`
description
(optional) A short description of the model deployment.
project_id
(required) The OCID of the project associated with the model deployment.
created_by
(required) The OCID of the user who created the model deployment.
compartment_id
(required) The OCID of the model deployment's compartment.
model_deployment_configuration_details
(optional)
category_log_details
(optional)
model_deployment_url
(required) The URL to interact with the model deployment.
(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_DATASCIENCE_MODEL_PROVENANCE_T Type 🔗
Model provenance gives data scientists information about the origin of their model. This information allows data scientists to reproduce the development environment in which the model was trained.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_provenance_t FORCE AUTHID CURRENT_USER IS OBJECT (
repository_url varchar2(32767),
git_branch varchar2(32767),
git_commit varchar2(32767),
script_dir varchar2(32767),
training_script varchar2(32767),
training_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_provenance_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_provenance_t (
repository_url varchar2,
git_branch varchar2,
git_commit varchar2,
script_dir varchar2,
training_script varchar2,
training_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
repository_url
(optional) For model reproducibility purposes. URL of the git repository associated with model training.
git_branch
(optional) For model reproducibility purposes. Branch of the git repository associated with model training.
git_commit
(optional) For model reproducibility purposes. Commit ID of the git repository associated with model training.
script_dir
(optional) For model reproducibility purposes. Path to model artifacts.
training_script
(optional) For model reproducibility purposes. Path to the python script or notebook in which the model was trained.\"
training_id
(optional) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
DBMS_CLOUD_OCI_DATASCIENCE_MODEL_SUMMARY_T Type 🔗
Summary information for a model.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
compartment_id varchar2(32767),
project_id varchar2(32767),
id varchar2(32767),
display_name varchar2(32767),
created_by varchar2(32767),
time_created timestamp with time zone,
lifecycle_state varchar2(32767),
model_version_set_id varchar2(32767),
model_version_set_name varchar2(32767),
version_id number,
version_label varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_summary_t (
compartment_id varchar2,
project_id varchar2,
id varchar2,
display_name varchar2,
created_by varchar2,
time_created timestamp with time zone,
lifecycle_state varchar2,
model_version_set_id varchar2,
model_version_set_name varchar2,
version_id number,
version_label varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The OCID of the model version set that the model is associated to.
model_version_set_name
(required) The name of the model version set that the model is associated to.
version_id
(required) Unique identifier assigned to each version of the model.
version_label
(required) The version label can add an additional description of the lifecycle state of the model or the application using and training the model.
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_DATASCIENCE_MODEL_VERSION_SET_T Type 🔗
A model version set to associate different versions of machine learning models.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_version_set_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
project_id varchar2(32767),
name varchar2(32767),
description varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_version_set_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_version_set_t (
id varchar2,
compartment_id varchar2,
project_id varchar2,
name varchar2,
description varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
time_updated
(required) The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
created_by
(required) The OCID of the user who created the model version set.
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_DATASCIENCE_MODEL_VERSION_SET_SUMMARY_T Type 🔗
Summary information for a model version set.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_model_version_set_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
compartment_id varchar2(32767),
project_id varchar2(32767),
name varchar2(32767),
lifecycle_state varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_version_set_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_model_version_set_summary_t (
id varchar2,
compartment_id varchar2,
project_id varchar2,
name varchar2,
lifecycle_state varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
time_updated
(required) The date and time that the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
created_by
(required) The OCID of the user who created the model version set.
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_DATASCIENCE_NOTEBOOK_SESSION_T Type 🔗
Notebook sessions are interactive coding environments for data scientists.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
display_name varchar2(32767),
project_id varchar2(32767),
created_by varchar2(32767),
compartment_id varchar2(32767),
notebook_session_configuration_details dbms_cloud_oci_datascience_notebook_session_configuration_details_t,
notebook_session_config_details dbms_cloud_oci_datascience_notebook_session_config_details_t,
notebook_session_runtime_config_details dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t,
notebook_session_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
notebook_session_url varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_t (
id varchar2,
time_created timestamp with time zone,
display_name varchar2,
project_id varchar2,
created_by varchar2,
compartment_id varchar2,
notebook_session_configuration_details dbms_cloud_oci_datascience_notebook_session_configuration_details_t,
notebook_session_config_details dbms_cloud_oci_datascience_notebook_session_config_details_t,
notebook_session_runtime_config_details dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t,
notebook_session_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
notebook_session_url varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
display_name
(required) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My NotebookSession`
project_id
(required) The OCID of the project associated with the notebook session.
created_by
(required) The OCID of the user who created the notebook session.
compartment_id
(required) The OCID of the notebook session's compartment.
(optional) Details about the state of the notebook session.
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_DATASCIENCE_NOTEBOOK_SESSION_SHAPE_SUMMARY_T Type 🔗
The compute shape used to launch a notebook session compute instance.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_notebook_session_shape_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
name varchar2(32767),
core_count number,
memory_in_g_bs number,
shape_series varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_shape_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_notebook_session_shape_summary_t (
name varchar2,
core_count number,
memory_in_g_bs number,
shape_series varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
name
(required) The name of the notebook session shape.
core_count
(required) The number of cores associated with this notebook session shape.
memory_in_g_bs
(required) The amount of memory in GBs associated with this notebook session shape.
shape_series
(required) The family that the compute shape belongs to.
(required) The date and time the resource was created in the timestamp format defined by RFC3339. Example: 2019-08-25T21:10:29.41Z
display_name
(required) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My NotebookSession`
project_id
(required) The OCID of the project associated with the notebook session.
created_by
(required) The OCID of the user who created the notebook session.
compartment_id
(required) The OCID of the notebook session's compartment.
notebook_session_configuration_details
(optional)
notebook_session_config_details
(optional)
notebook_session_url
(optional) The URL to interact with the notebook session.
(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_DATASCIENCE_OBJECT_STORAGE_MOUNT_CONFIGURATION_DETAILS_T Type 🔗
The Object Storage Configuration Details.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_object_storage_mount_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_storage_mount_configuration_details_t (
namespace varchar2(32767),
bucket varchar2(32767),
prefix varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_object_storage_mount_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_object_storage_mount_configuration_details_t (
storage_type varchar2,
destination_directory_name varchar2,
destination_path varchar2,
namespace varchar2,
bucket varchar2,
prefix varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_object_storage_mount_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_storage_mount_configuration_details_t type.
Fields
Field
Description
namespace
(required) The object storage namespace
bucket
(required) The object storage bucket
prefix
(optional) Prefix in the bucket to mount
DBMS_CLOUD_OCI_DATASCIENCE_OCIR_MODEL_DEPLOYMENT_ENVIRONMENT_CONFIGURATION_DETAILS_T Type 🔗
The environment configuration details object for OCI Registry
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_ocir_model_deployment_environment_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t (
image varchar2(32767),
image_digest varchar2(32767),
cmd dbms_cloud_oci_datascience_varchar2_tbl,
entrypoint dbms_cloud_oci_datascience_varchar2_tbl,
server_port number,
health_check_port number,
environment_variables json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_ocir_model_deployment_environment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_ocir_model_deployment_environment_configuration_details_t (
environment_configuration_type varchar2,
image varchar2,
image_digest varchar2,
cmd dbms_cloud_oci_datascience_varchar2_tbl,
entrypoint dbms_cloud_oci_datascience_varchar2_tbl,
server_port number,
health_check_port number,
environment_variables json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_ocir_model_deployment_environment_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t type.
Fields
Field
Description
image
(required) The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format. Acceptable format: `<region>.ocir.io/<registry>/<image>:<tag>` `<region>.ocir.io/<registry>/<image>:<tag>@digest`
image_digest
(optional) The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
cmd
(optional) The container image run CMD as a list of strings. Use `CMD` as arguments to the `ENTRYPOINT` or the only command to run in the absence of an `ENTRYPOINT`. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes.
entrypoint
(optional) The container image run ENTRYPOINT as a list of strings. Accept the `CMD` as extra arguments. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes. More information on how `CMD` and `ENTRYPOINT` interact are here.
server_port
(optional) The port on which the web server serving the inference is running. The port can be anything between `1024` and `65535`. The following ports cannot be used `24224`, `8446`, `8447`.
health_check_port
(optional) The port on which the container HEALTHCHECK would listen. The port can be anything between `1024` and `65535`. The following ports cannot be used `24224`, `8446`, `8447`.
environment_variables
(optional) Environment variables to set for the web server container. The size of envVars must be less than 2048 bytes. Key should be under 32 characters. Key should contain only letters, digits and underscore (_) Key should start with a letter. Key should have at least 2 characters. Key should not end with underscore eg. `TEST_` Key if added cannot be empty. Value can be empty. No specific size limits on individual Values. But overall environment variables is limited to 2048 bytes. Key can't be reserved Model Deployment environment variables.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_T Type 🔗
A Pipeline to orchestrate and execute machine learning workflows.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
description varchar2(32767),
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
infrastructure_configuration_details dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t,
step_details dbms_cloud_oci_datascience_pipeline_step_details_tbl,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_t (
id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
display_name varchar2,
description varchar2,
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
infrastructure_configuration_details dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t,
step_details dbms_cloud_oci_datascience_pipeline_step_details_tbl,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
freeform_tags
(optional) 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\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_CUSTOM_SCRIPT_STEP_DETAILS_T Type 🔗
The type of step where user provides the step artifact to be executed on an execution engine managed by the pipelines service.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_custom_script_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_pipeline_step_details_t (
step_infrastructure_configuration_details dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t,
is_artifact_uploaded number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_custom_script_step_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_custom_script_step_details_t (
step_type varchar2,
step_name varchar2,
description varchar2,
depends_on dbms_cloud_oci_datascience_varchar2_tbl,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t,
step_infrastructure_configuration_details dbms_cloud_oci_datascience_pipeline_infrastructure_configuration_details_t,
is_artifact_uploaded number
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_pipeline_custom_script_step_details_t is a subtype of the dbms_cloud_oci_datascience_pipeline_step_details_t type.
Fields
Field
Description
step_infrastructure_configuration_details
(optional)
is_artifact_uploaded
(optional) A flag to indicate whether the artifact has been uploaded for this step or not.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_RUN_T Type 🔗
Detail of each StepRun.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_run_t FORCE AUTHID CURRENT_USER IS OBJECT (
step_type varchar2(32767),
time_started timestamp with time zone,
time_finished timestamp with time zone,
step_name varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_run_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_run_t (
step_type varchar2,
time_started timestamp with time zone,
time_finished timestamp with time zone,
step_name varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
step_type
(required) The type of step.
Allowed values are: 'ML_JOB', 'CUSTOM_SCRIPT'
time_started
(required) The date and time the pipeline step run was started in the timestamp format defined by RFC3339.
time_finished
(optional) The date and time the pipeline step run finshed executing in the timestamp format defined by RFC3339.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_CUSTOM_SCRIPT_STEP_RUN_T Type 🔗
Detail of each CustomScriptStepRun.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_custom_script_step_run_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_pipeline_step_run_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_custom_script_step_run_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_custom_script_step_run_t (
step_type varchar2,
time_started timestamp with time zone,
time_finished timestamp with time zone,
step_name varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_pipeline_custom_script_step_run_t is a subtype of the dbms_cloud_oci_datascience_pipeline_step_run_t type.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_UPDATE_DETAILS_T Type 🔗
The details of the step to update.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_update_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
step_type varchar2(32767),
step_name varchar2(32767),
description varchar2(32767),
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_update_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_step_update_details_t (
step_type varchar2,
step_name varchar2,
description varchar2,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
step_type
(required) The type of step.
Allowed values are: 'ML_JOB', 'CUSTOM_SCRIPT'
step_name
(required) The name of the step.
description
(optional) A short description of the step.
step_configuration_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_CUSTOM_SCRIPT_STEP_UPDATE_DETAILS_T Type 🔗
The type of step where user provides the step artifact to be executed on an execution engine managed by the pipelines service.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_custom_script_step_update_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_pipeline_step_update_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_custom_script_step_update_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_custom_script_step_update_details_t (
step_type varchar2,
step_name varchar2,
description varchar2,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_pipeline_custom_script_step_update_details_t is a subtype of the dbms_cloud_oci_datascience_pipeline_step_update_details_t type.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_DEFAULT_CONFIGURATION_DETAILS_T Type 🔗
The default pipeline configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_default_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_pipeline_configuration_details_t (
maximum_runtime_in_minutes number,
environment_variables json_element_t,
command_line_arguments varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_default_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_default_configuration_details_t (
l_type varchar2,
maximum_runtime_in_minutes number,
environment_variables json_element_t,
command_line_arguments varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_pipeline_default_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_pipeline_configuration_details_t type.
Fields
Field
Description
maximum_runtime_in_minutes
(optional) A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
environment_variables
(optional) Environment variables to set for steps in the pipeline.
command_line_arguments
(optional) The command line arguments to set for steps in the pipeline.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_ML_JOB_STEP_DETAILS_T Type 🔗
The type of step where the job is pre-created by the user.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_ml_job_step_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_pipeline_step_details_t (
job_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_ml_job_step_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_ml_job_step_details_t (
step_type varchar2,
step_name varchar2,
description varchar2,
depends_on dbms_cloud_oci_datascience_varchar2_tbl,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t,
job_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_pipeline_ml_job_step_details_t is a subtype of the dbms_cloud_oci_datascience_pipeline_step_details_t type.
Fields
Field
Description
job_id
(required) The OCID of the job to be used as a step.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_ML_JOB_STEP_RUN_T Type 🔗
Detail of each MLJobStepRun.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_ml_job_step_run_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_pipeline_step_run_t (
job_run_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_ml_job_step_run_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_ml_job_step_run_t (
step_type varchar2,
time_started timestamp with time zone,
time_finished timestamp with time zone,
step_name varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
job_run_id varchar2
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_pipeline_ml_job_step_run_t is a subtype of the dbms_cloud_oci_datascience_pipeline_step_run_t type.
Fields
Field
Description
job_run_id
(optional) The OCID of the job run triggered for this step run.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_ML_JOB_STEP_UPDATE_DETAILS_T Type 🔗
The type of step where the job is pre-created by the user.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_ml_job_step_update_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_pipeline_step_update_details_t (
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_ml_job_step_update_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_ml_job_step_update_details_t (
step_type varchar2,
step_name varchar2,
description varchar2,
step_configuration_details dbms_cloud_oci_datascience_pipeline_step_configuration_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_pipeline_ml_job_step_update_details_t is a subtype of the dbms_cloud_oci_datascience_pipeline_step_update_details_t type.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_RUN_LOG_DETAILS_T Type 🔗
Customer logging details for pipeline run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_run_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
log_group_id varchar2(32767),
log_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_run_log_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_run_log_details_t (
log_group_id varchar2,
log_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
log_group_id
(required) The log group id for where log objects will be for pipeline runs.
log_id
(required) The log id of the log object the pipeline run logs will be shipped to.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_RUN_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_pipeline_step_run_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_run_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_pipeline_step_run_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_RUN_T Type 🔗
Description of PipelineRun.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_run_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_updated timestamp with time zone,
time_finished timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
pipeline_id varchar2(32767),
display_name varchar2(32767),
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
configuration_override_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_override_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
step_override_details dbms_cloud_oci_datascience_pipeline_step_override_details_tbl,
log_details dbms_cloud_oci_datascience_pipeline_run_log_details_t,
step_runs dbms_cloud_oci_datascience_pipeline_step_run_tbl,
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_run_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_run_t (
id varchar2,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_updated timestamp with time zone,
time_finished timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
pipeline_id varchar2,
display_name varchar2,
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
configuration_override_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_override_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
step_override_details dbms_cloud_oci_datascience_pipeline_step_override_details_tbl,
log_details dbms_cloud_oci_datascience_pipeline_run_log_details_t,
step_runs dbms_cloud_oci_datascience_pipeline_step_run_tbl,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
freeform_tags
(optional) 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\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_RUN_SUMMARY_T Type 🔗
Summary of the PipelineRun.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_run_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
pipeline_id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
lifecycle_details varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_run_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_run_summary_t (
id varchar2,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
pipeline_id varchar2,
display_name varchar2,
lifecycle_state varchar2,
lifecycle_details varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(optional) A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in 'Failed' state.
freeform_tags
(optional) 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\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_SUMMARY_T Type 🔗
Summary of the Pipeline.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2(32767),
project_id varchar2(32767),
compartment_id varchar2(32767),
display_name varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_pipeline_summary_t (
id varchar2,
time_created timestamp with time zone,
time_updated timestamp with time zone,
created_by varchar2,
project_id varchar2,
compartment_id varchar2,
display_name varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
system_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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\"}}`
system_tags
(optional) Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}`
DBMS_CLOUD_OCI_DATASCIENCE_PROJECT_T Type 🔗
Projects enable users to organize their data science work.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_project_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
created_by varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_project_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_project_t (
id varchar2,
time_created timestamp with time zone,
display_name varchar2,
description varchar2,
compartment_id varchar2,
created_by varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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_DATASCIENCE_PROJECT_SUMMARY_T Type 🔗
Summary information for a project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_project_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
time_created timestamp with time zone,
display_name varchar2(32767),
description varchar2(32767),
compartment_id varchar2(32767),
created_by varchar2(32767),
lifecycle_state varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_project_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_project_summary_t (
id varchar2,
time_created timestamp with time zone,
display_name varchar2,
description varchar2,
compartment_id varchar2,
created_by varchar2,
lifecycle_state varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(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_DATASCIENCE_SINGLE_MODEL_DEPLOYMENT_CONFIGURATION_DETAILS_T Type 🔗
The single model type deployment.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_single_model_deployment_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_model_deployment_configuration_details_t (
model_configuration_details dbms_cloud_oci_datascience_model_configuration_details_t,
environment_configuration_details dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_single_model_deployment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_single_model_deployment_configuration_details_t (
deployment_type varchar2,
model_configuration_details dbms_cloud_oci_datascience_model_configuration_details_t,
environment_configuration_details dbms_cloud_oci_datascience_model_deployment_environment_configuration_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_single_model_deployment_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_model_deployment_configuration_details_t type.
Fields
Field
Description
model_configuration_details
(required)
environment_configuration_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_STANDALONE_JOB_INFRASTRUCTURE_CONFIGURATION_DETAILS_T Type 🔗
The standalone job infrastructure configuration.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_standalone_job_infrastructure_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t (
shape_name varchar2(32767),
subnet_id varchar2(32767),
block_storage_size_in_g_bs number,
job_shape_config_details dbms_cloud_oci_datascience_job_shape_config_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_standalone_job_infrastructure_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_standalone_job_infrastructure_configuration_details_t (
job_infrastructure_type varchar2,
shape_name varchar2,
subnet_id varchar2,
block_storage_size_in_g_bs number,
job_shape_config_details dbms_cloud_oci_datascience_job_shape_config_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_standalone_job_infrastructure_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t type.
Fields
Field
Description
shape_name
(required) The shape used to launch the job run instances.
subnet_id
(required) The subnet to create a secondary vnic in to attach to the instance running the job
block_storage_size_in_g_bs
(required) The size of the block storage volume to attach to the instance running the job
job_shape_config_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_CATEGORY_LOG_DETAILS_T Type 🔗
The log details for each category for update.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_category_log_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
l_access dbms_cloud_oci_datascience_log_details_t,
predict dbms_cloud_oci_datascience_log_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_category_log_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_category_log_details_t (
l_access dbms_cloud_oci_datascience_log_details_t,
predict dbms_cloud_oci_datascience_log_details_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
l_access
(optional)
predict
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_DATA_SCIENCE_PRIVATE_ENDPOINT_DETAILS_T Type 🔗
The details required to update a private endpoint.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_data_science_private_endpoint_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),
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_data_science_private_endpoint_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_data_science_private_endpoint_details_t (
freeform_tags json_element_t,
defined_tags json_element_t,
description varchar2,
display_name varchar2,
nsg_ids dbms_cloud_oci_datascience_varchar2_tbl
) 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 friendly description. Avoid entering confidential information.
display_name
(optional) A user friendly name. It doesn't have to be unique. Avoid entering confidential information.
nsg_ids
(optional) An array of network security group OCIDs.
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_MODEL_DEPLOYMENT_ENVIRONMENT_CONFIGURATION_DETAILS_T Type 🔗
The configuration to carry the environment details thats used in Model Deployment update
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
environment_configuration_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t (
environment_configuration_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
environment_configuration_type
(required) The environment configuration type
Allowed values are: 'DEFAULT', 'OCIR_CONTAINER'
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_DEFAULT_MODEL_DEPLOYMENT_ENVIRONMENT_CONFIGURATION_DETAILS_T Type 🔗
The update environment configuration details object for managed container
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_default_model_deployment_environment_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t (
environment_variables json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_default_model_deployment_environment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_default_model_deployment_environment_configuration_details_t (
environment_configuration_type varchar2,
environment_variables json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_update_default_model_deployment_environment_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t type.
Fields
Field
Description
environment_variables
(optional) Environment variables to set for the web server container. The size of envVars must be less than 2048 bytes. Key should be under 32 characters. Key should contain only letters, digits and underscore (_) Key should start with a letter. Key should have at least 2 characters. Key should not end with underscore eg. `TEST_` Key if added cannot be empty. Value can be empty. No specific size limits on individual Values. But overall environment variables is limited to 2048 bytes. Key can't be reserved Model Deployment environment variables.
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_JOB_DETAILS_T Type 🔗
Details for updating a job.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_job_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_job_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_job_details_t (
display_name varchar2,
description varchar2,
job_infrastructure_configuration_details dbms_cloud_oci_datascience_job_infrastructure_configuration_details_t,
job_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource.
description
(optional) A short description of the job.
job_infrastructure_configuration_details
(optional)
job_storage_mount_configuration_details_list
(optional) Collection of JobStorageMountConfigurationDetails.
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_DATASCIENCE_UPDATE_JOB_RUN_DETAILS_T Type 🔗
Details for updating a job run.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_job_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_job_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_job_run_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource.
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_DATASCIENCE_UPDATE_MODEL_CONFIGURATION_DETAILS_T Type 🔗
The model configuration details for update.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_model_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
model_id varchar2(32767),
instance_configuration dbms_cloud_oci_datascience_instance_configuration_t,
scaling_policy dbms_cloud_oci_datascience_scaling_policy_t,
bandwidth_mbps number,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_configuration_details_t (
model_id varchar2,
instance_configuration dbms_cloud_oci_datascience_instance_configuration_t,
scaling_policy dbms_cloud_oci_datascience_scaling_policy_t,
bandwidth_mbps number
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
model_id
(required) The OCID of the model you want to update.
instance_configuration
(optional)
scaling_policy
(optional)
bandwidth_mbps
(optional) The minimum network bandwidth for the model deployment.
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_MODEL_DEPLOYMENT_CONFIGURATION_DETAILS_T Type 🔗
The model deployment configuration details for update.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_model_deployment_configuration_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
deployment_type varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_deployment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_deployment_configuration_details_t (
deployment_type varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE NOT FINAL;
Fields
Field
Description
deployment_type
(optional) The type of the model deployment.
Allowed values are: 'SINGLE_MODEL'
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_MODEL_DEPLOYMENT_DETAILS_T Type 🔗
Details for updating a model deployment. You can update `modelDeploymentConfigurationDetails` and change `instanceShapeName` and `modelId` when the model deployment is in the ACTIVE lifecycle state. The `bandwidthMbps` or `instanceCount` can only be updated while the model deployment is in the `INACTIVE` state. Changes to the `bandwidthMbps` or `instanceCount` will take effect the next time the `ActivateModelDeployment` action is invoked on the model deployment resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_model_deployment_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
model_deployment_configuration_details dbms_cloud_oci_datascience_update_model_deployment_configuration_details_t,
category_log_details dbms_cloud_oci_datascience_update_category_log_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_deployment_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_deployment_details_t (
display_name varchar2,
description varchar2,
model_deployment_configuration_details dbms_cloud_oci_datascience_update_model_deployment_configuration_details_t,
category_log_details dbms_cloud_oci_datascience_update_category_log_details_t,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. Does not have to be unique, and can be modified. Avoid entering confidential information. Example: `My ModelDeployment`
description
(optional) A short description of the model deployment.
model_deployment_configuration_details
(optional)
category_log_details
(optional)
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_DATASCIENCE_UPDATE_MODEL_DETAILS_T Type 🔗
Details for updating a model.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_model_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
custom_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
defined_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
model_version_set_id varchar2(32767),
version_label varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_details_t (
display_name varchar2,
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t,
custom_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
defined_metadata_list dbms_cloud_oci_datascience_metadata_tbl,
model_version_set_id varchar2,
version_label varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My Model`
description
(optional) A short description of the model.
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\"}}`
custom_metadata_list
(optional) An array of custom metadata details for the model.
defined_metadata_list
(optional) An array of defined metadata details for the model.
model_version_set_id
(optional) The OCID of the model version set that the model is associated to.
version_label
(optional) The version label can add an additional description of the lifecycle state of the model or the application using/training the model.
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_MODEL_PROVENANCE_DETAILS_T Type 🔗
Model provenance gives data scientists information about the origin of their model. This information allows data scientists to reproduce the development environment in which the model was trained.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_model_provenance_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
repository_url varchar2(32767),
git_branch varchar2(32767),
git_commit varchar2(32767),
script_dir varchar2(32767),
training_script varchar2(32767),
training_id varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_provenance_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_provenance_details_t (
repository_url varchar2,
git_branch varchar2,
git_commit varchar2,
script_dir varchar2,
training_script varchar2,
training_id varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
repository_url
(optional) For model reproducibility purposes. URL of the git repository associated with model training.
git_branch
(optional) For model reproducibility purposes. Branch of the git repository associated with model training.
git_commit
(optional) For model reproducibility purposes. Commit ID of the git repository associated with model training.
script_dir
(optional) For model reproducibility purposes. Path to model artifacts.
training_script
(optional) For model reproducibility purposes. Path to the python script or notebook in which the model was trained.\"
training_id
(optional) The OCID of a training session(Job or NotebookSession) in which the model was trained. It is used for model reproducibility purposes.
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_MODEL_VERSION_SET_DETAILS_T Type 🔗
Details for updating a model version set.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_model_version_set_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_version_set_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_model_version_set_details_t (
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
description
(optional) A short description of the model version set.
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_DATASCIENCE_UPDATE_NOTEBOOK_SESSION_DETAILS_T Type 🔗
Details for updating a notebook session. `notebookSessionConfigurationDetails` can only be updated while the notebook session is in the `INACTIVE` state. Changes to the `notebookSessionConfigurationDetails` take effect the next time the `ActivateNotebookSession` action is invoked on the notebook session resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_notebook_session_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
notebook_session_configuration_details dbms_cloud_oci_datascience_notebook_session_configuration_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
notebook_session_runtime_config_details dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t,
notebook_session_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_notebook_session_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_notebook_session_details_t (
display_name varchar2,
notebook_session_configuration_details dbms_cloud_oci_datascience_notebook_session_configuration_details_t,
freeform_tags json_element_t,
defined_tags json_element_t,
notebook_session_runtime_config_details dbms_cloud_oci_datascience_notebook_session_runtime_config_details_t,
notebook_session_storage_mount_configuration_details_list dbms_cloud_oci_datascience_storage_mount_configuration_details_tbl
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information. Example: `My NotebookSession`
notebook_session_configuration_details
(optional)
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\"}}`
(optional) Collection of NotebookSessionStorageMountConfigurationDetails.
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_OCIR_MODEL_DEPLOYMENT_ENVIRONMENT_CONFIGURATION_DETAILS_T Type 🔗
The update environment configuration details object for OCI Registry
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_ocir_model_deployment_environment_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t (
image varchar2(32767),
image_digest varchar2(32767),
cmd dbms_cloud_oci_datascience_varchar2_tbl,
entrypoint dbms_cloud_oci_datascience_varchar2_tbl,
server_port number,
health_check_port number,
environment_variables json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_ocir_model_deployment_environment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_ocir_model_deployment_environment_configuration_details_t (
environment_configuration_type varchar2,
image varchar2,
image_digest varchar2,
cmd dbms_cloud_oci_datascience_varchar2_tbl,
entrypoint dbms_cloud_oci_datascience_varchar2_tbl,
server_port number,
health_check_port number,
environment_variables json_element_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_update_ocir_model_deployment_environment_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t type.
Fields
Field
Description
image
(optional) The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format. Acceptable format: `<region>.ocir.io/<registry>/<image>:<tag>` `<region>.ocir.io/<registry>/<image>:<tag>@digest`
image_digest
(optional) The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
cmd
(optional) The container image run CMD as a list of strings. Use `CMD` as arguments to the `ENTRYPOINT` or the only command to run in the absence of an `ENTRYPOINT`. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes.
entrypoint
(optional) The container image run ENTRYPOINT as a list of strings. Accept the `CMD` as extra arguments. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes. More information on how `CMD` and `ENTRYPOINT` interact are here.
server_port
(optional) The port on which the web server serving the inference is running. The port can be anything between `1024` and `65535`. The following ports cannot be used `24224`, `8446`, `8447`.
health_check_port
(optional) The port on which the container HEALTHCHECK would listen. The port can be anything between `1024` and `65535`. The following ports cannot be used `24224`, `8446`, `8447`.
environment_variables
(optional) Environment variables to set for the web server container. The size of envVars must be less than 2048 bytes. Key should be under 32 characters. Key should contain only letters, digits and underscore (_) Key should start with a letter. Key should have at least 2 characters. Key should not end with underscore eg. `TEST_` Key if added cannot be empty. Value can be empty. No specific size limits on individual Values. But overall environment variables is limited to 2048 bytes. Key can't be reserved Model Deployment environment variables.
DBMS_CLOUD_OCI_DATASCIENCE_PIPELINE_STEP_UPDATE_DETAILS_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_pipeline_step_update_details_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_pipeline_step_update_details_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_pipeline_step_update_details_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_UPDATE_PIPELINE_DETAILS_T Type 🔗
The information of pipeline to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_pipeline_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
step_details dbms_cloud_oci_datascience_pipeline_step_update_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_pipeline_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_pipeline_details_t (
display_name varchar2,
description varchar2,
configuration_details dbms_cloud_oci_datascience_pipeline_configuration_details_t,
log_configuration_details dbms_cloud_oci_datascience_pipeline_log_configuration_details_t,
step_details dbms_cloud_oci_datascience_pipeline_step_update_details_tbl,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource.
description
(optional) A short description for the resource.
configuration_details
(optional)
log_configuration_details
(optional)
step_details
(optional) Array of update details for each step. Only step configurations are allowed to be updated.
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_DATASCIENCE_UPDATE_PIPELINE_RUN_DETAILS_T Type 🔗
The information to be updated.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_pipeline_run_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_pipeline_run_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_pipeline_run_details_t (
display_name varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) Name of the pipeline run.
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_DATASCIENCE_UPDATE_PROJECT_DETAILS_T Type 🔗
Details for updating a project.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_project_details_t FORCE AUTHID CURRENT_USER IS OBJECT (
display_name varchar2(32767),
description varchar2(32767),
freeform_tags json_element_t,
defined_tags json_element_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_project_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_project_details_t (
display_name varchar2,
description varchar2,
freeform_tags json_element_t,
defined_tags json_element_t
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
display_name
(optional) A user-friendly display name for the resource. It does not have to be unique and can be modified. Avoid entering confidential information.
description
(optional) A short description of the project.
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_DATASCIENCE_UPDATE_SINGLE_MODEL_DEPLOYMENT_CONFIGURATION_DETAILS_T Type 🔗
The single model type deployment for update.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_update_single_model_deployment_configuration_details_t FORCE AUTHID CURRENT_USER UNDER dbms_cloud_oci_datascience_update_model_deployment_configuration_details_t (
model_configuration_details dbms_cloud_oci_datascience_update_model_configuration_details_t,
environment_configuration_details dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_single_model_deployment_configuration_details_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_update_single_model_deployment_configuration_details_t (
deployment_type varchar2,
model_configuration_details dbms_cloud_oci_datascience_update_model_configuration_details_t,
environment_configuration_details dbms_cloud_oci_datascience_update_model_deployment_environment_configuration_details_t
) RETURN SELF AS RESULT
);
dbms_cloud_oci_datascience_update_single_model_deployment_configuration_details_t is a subtype of the dbms_cloud_oci_datascience_update_model_deployment_configuration_details_t type.
Fields
Field
Description
model_configuration_details
(optional)
environment_configuration_details
(optional)
DBMS_CLOUD_OCI_DATASCIENCE_WORK_REQUEST_RESOURCE_T Type 🔗
The properties that define a work request resource.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_work_request_resource_t FORCE AUTHID CURRENT_USER IS OBJECT (
action_type varchar2(32767),
entity_type varchar2(32767),
identifier varchar2(32767),
entity_uri varchar2(32767),
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_work_request_resource_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_work_request_resource_t (
action_type varchar2,
entity_type varchar2,
identifier varchar2,
entity_uri varchar2
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
action_type
(required) The way in which this resource was affected by the work tracked by the work request.
(required) The resource type the work request affects.
identifier
(required) The OCID of the resource the work request affects.
entity_uri
(optional) The URI path on which the user can issue a GET request to access the resource metadata.
DBMS_CLOUD_OCI_DATASCIENCE_WORK_REQUEST_RESOURCE_TBL Type 🔗
Nested table type of dbms_cloud_oci_datascience_work_request_resource_t.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_work_request_resource_tbl FORCE IS TABLE OF (dbms_cloud_oci_datascience_work_request_resource_t) NOT PERSISTABLE;
DBMS_CLOUD_OCI_DATASCIENCE_WORK_REQUEST_T Type 🔗
An asynchronous work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_work_request_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
operation_type varchar2(32767),
status varchar2(32767),
compartment_id varchar2(32767),
percent_complete number,
resources dbms_cloud_oci_datascience_work_request_resource_tbl,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_work_request_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_work_request_t (
id varchar2,
operation_type varchar2,
status varchar2,
compartment_id varchar2,
percent_complete number,
resources dbms_cloud_oci_datascience_work_request_resource_tbl,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
(required) The OCID of the work request's compartment.
percent_complete
(required) Percentage of the request completed.
resources
(required) The resources affected by this work request.
time_accepted
(required) The time the work request was accepted in the timestamp format defined by RFC3339.
time_started
(optional) The time the work request was started in the timestamp format defined by RFC3339.
time_finished
(optional) The time the work request was finished in the timestamp format defined by RFC3339.
DBMS_CLOUD_OCI_DATASCIENCE_WORK_REQUEST_ERROR_T Type 🔗
Errors related to a specific work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_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_datascience_work_request_error_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_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 short error code that defines the error, which is meant for programmatic parsing. See API Errors.
message
(required) A human-readable error string.
l_timestamp
(required) The date and time the error occurred.
DBMS_CLOUD_OCI_DATASCIENCE_WORK_REQUEST_LOG_ENTRY_T Type 🔗
Log entries related to a specific work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_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_datascience_work_request_log_entry_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_work_request_log_entry_t (
message varchar2,
l_timestamp timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;
Fields
Field
Description
message
(required) The description of an action that occurred.
l_timestamp
(required) The date and time the log entry occurred.
DBMS_CLOUD_OCI_DATASCIENCE_WORK_REQUEST_SUMMARY_T Type 🔗
Summary information for a work request.
Syntax
CREATE OR REPLACE NONEDITIONABLE TYPE dbms_cloud_oci_datascience_work_request_summary_t FORCE AUTHID CURRENT_USER IS OBJECT (
id varchar2(32767),
operation_type varchar2(32767),
status varchar2(32767),
compartment_id varchar2(32767),
percent_complete number,
resources dbms_cloud_oci_datascience_work_request_resource_tbl,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_work_request_summary_t
RETURN SELF AS RESULT,
CONSTRUCTOR FUNCTION dbms_cloud_oci_datascience_work_request_summary_t (
id varchar2,
operation_type varchar2,
status varchar2,
compartment_id varchar2,
percent_complete number,
resources dbms_cloud_oci_datascience_work_request_resource_tbl,
time_accepted timestamp with time zone,
time_started timestamp with time zone,
time_finished timestamp with time zone
) RETURN SELF AS RESULT
) NOT PERSISTABLE;