Server IP : 103.119.228.120 / Your IP : 3.16.82.182 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/mysqlsh/lib/python3.9/site-packages/oci/data_integration/models/ |
Upload File : |
# coding: utf-8 # Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 from oci.decorators import init_model_state_from_kwargs @init_model_state_from_kwargs class TaskRunDetails(object): """ The task run object provides information on the execution of a task. """ #: A constant which can be used with the status property of a TaskRunDetails. #: This constant has a value of "NOT_STARTED" STATUS_NOT_STARTED = "NOT_STARTED" #: A constant which can be used with the status property of a TaskRunDetails. #: This constant has a value of "QUEUED" STATUS_QUEUED = "QUEUED" #: A constant which can be used with the status property of a TaskRunDetails. #: This constant has a value of "RUNNING" STATUS_RUNNING = "RUNNING" #: A constant which can be used with the status property of a TaskRunDetails. #: This constant has a value of "TERMINATING" STATUS_TERMINATING = "TERMINATING" #: A constant which can be used with the status property of a TaskRunDetails. #: This constant has a value of "TERMINATED" STATUS_TERMINATED = "TERMINATED" #: A constant which can be used with the status property of a TaskRunDetails. #: This constant has a value of "SUCCESS" STATUS_SUCCESS = "SUCCESS" #: A constant which can be used with the status property of a TaskRunDetails. #: This constant has a value of "ERROR" STATUS_ERROR = "ERROR" #: A constant which can be used with the task_type property of a TaskRunDetails. #: This constant has a value of "INTEGRATION_TASK" TASK_TYPE_INTEGRATION_TASK = "INTEGRATION_TASK" #: A constant which can be used with the task_type property of a TaskRunDetails. #: This constant has a value of "DATA_LOADER_TASK" TASK_TYPE_DATA_LOADER_TASK = "DATA_LOADER_TASK" #: A constant which can be used with the task_type property of a TaskRunDetails. #: This constant has a value of "PIPELINE_TASK" TASK_TYPE_PIPELINE_TASK = "PIPELINE_TASK" #: A constant which can be used with the task_type property of a TaskRunDetails. #: This constant has a value of "SQL_TASK" TASK_TYPE_SQL_TASK = "SQL_TASK" #: A constant which can be used with the task_type property of a TaskRunDetails. #: This constant has a value of "OCI_DATAFLOW_TASK" TASK_TYPE_OCI_DATAFLOW_TASK = "OCI_DATAFLOW_TASK" #: A constant which can be used with the task_type property of a TaskRunDetails. #: This constant has a value of "REST_TASK" TASK_TYPE_REST_TASK = "REST_TASK" #: A constant which can be used with the re_run_type property of a TaskRunDetails. #: This constant has a value of "BEGINNING" RE_RUN_TYPE_BEGINNING = "BEGINNING" #: A constant which can be used with the re_run_type property of a TaskRunDetails. #: This constant has a value of "FAILED" RE_RUN_TYPE_FAILED = "FAILED" #: A constant which can be used with the re_run_type property of a TaskRunDetails. #: This constant has a value of "STEP" RE_RUN_TYPE_STEP = "STEP" def __init__(self, **kwargs): """ Initializes a new TaskRunDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param key: The value to assign to the key property of this TaskRunDetails. :type key: str :param model_type: The value to assign to the model_type property of this TaskRunDetails. :type model_type: str :param model_version: The value to assign to the model_version property of this TaskRunDetails. :type model_version: str :param parent_ref: The value to assign to the parent_ref property of this TaskRunDetails. :type parent_ref: oci.data_integration.models.ParentReference :param name: The value to assign to the name property of this TaskRunDetails. :type name: str :param description: The value to assign to the description property of this TaskRunDetails. :type description: str :param object_version: The value to assign to the object_version property of this TaskRunDetails. :type object_version: int :param status: The value to assign to the status property of this TaskRunDetails. Allowed values for this property are: "NOT_STARTED", "QUEUED", "RUNNING", "TERMINATING", "TERMINATED", "SUCCESS", "ERROR", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type status: str :param start_time_millis: The value to assign to the start_time_millis property of this TaskRunDetails. :type start_time_millis: int :param end_time_millis: The value to assign to the end_time_millis property of this TaskRunDetails. :type end_time_millis: int :param last_updated: The value to assign to the last_updated property of this TaskRunDetails. :type last_updated: int :param records_written: The value to assign to the records_written property of this TaskRunDetails. :type records_written: int :param bytes_processed: The value to assign to the bytes_processed property of this TaskRunDetails. :type bytes_processed: int :param object_status: The value to assign to the object_status property of this TaskRunDetails. :type object_status: int :param task_type: The value to assign to the task_type property of this TaskRunDetails. Allowed values for this property are: "INTEGRATION_TASK", "DATA_LOADER_TASK", "PIPELINE_TASK", "SQL_TASK", "OCI_DATAFLOW_TASK", "REST_TASK", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type task_type: str :param identifier: The value to assign to the identifier property of this TaskRunDetails. :type identifier: str :param ref_task_run_id: The value to assign to the ref_task_run_id property of this TaskRunDetails. :type ref_task_run_id: str :param re_run_type: The value to assign to the re_run_type property of this TaskRunDetails. Allowed values for this property are: "BEGINNING", "FAILED", "STEP", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type re_run_type: str :param step_id: The value to assign to the step_id property of this TaskRunDetails. :type step_id: str :param inputs: The value to assign to the inputs property of this TaskRunDetails. :type inputs: dict(str, ParameterValue) :param metadata: The value to assign to the metadata property of this TaskRunDetails. :type metadata: oci.data_integration.models.ObjectMetadata """ self.swagger_types = { 'key': 'str', 'model_type': 'str', 'model_version': 'str', 'parent_ref': 'ParentReference', 'name': 'str', 'description': 'str', 'object_version': 'int', 'status': 'str', 'start_time_millis': 'int', 'end_time_millis': 'int', 'last_updated': 'int', 'records_written': 'int', 'bytes_processed': 'int', 'object_status': 'int', 'task_type': 'str', 'identifier': 'str', 'ref_task_run_id': 'str', 're_run_type': 'str', 'step_id': 'str', 'inputs': 'dict(str, ParameterValue)', 'metadata': 'ObjectMetadata' } self.attribute_map = { 'key': 'key', 'model_type': 'modelType', 'model_version': 'modelVersion', 'parent_ref': 'parentRef', 'name': 'name', 'description': 'description', 'object_version': 'objectVersion', 'status': 'status', 'start_time_millis': 'startTimeMillis', 'end_time_millis': 'endTimeMillis', 'last_updated': 'lastUpdated', 'records_written': 'recordsWritten', 'bytes_processed': 'bytesProcessed', 'object_status': 'objectStatus', 'task_type': 'taskType', 'identifier': 'identifier', 'ref_task_run_id': 'refTaskRunId', 're_run_type': 'reRunType', 'step_id': 'stepId', 'inputs': 'inputs', 'metadata': 'metadata' } self._key = None self._model_type = None self._model_version = None self._parent_ref = None self._name = None self._description = None self._object_version = None self._status = None self._start_time_millis = None self._end_time_millis = None self._last_updated = None self._records_written = None self._bytes_processed = None self._object_status = None self._task_type = None self._identifier = None self._ref_task_run_id = None self._re_run_type = None self._step_id = None self._inputs = None self._metadata = None @property def key(self): """ Gets the key of this TaskRunDetails. The object key. :return: The key of this TaskRunDetails. :rtype: str """ return self._key @key.setter def key(self, key): """ Sets the key of this TaskRunDetails. The object key. :param key: The key of this TaskRunDetails. :type: str """ self._key = key @property def model_type(self): """ Gets the model_type of this TaskRunDetails. The object type. :return: The model_type of this TaskRunDetails. :rtype: str """ return self._model_type @model_type.setter def model_type(self, model_type): """ Sets the model_type of this TaskRunDetails. The object type. :param model_type: The model_type of this TaskRunDetails. :type: str """ self._model_type = model_type @property def model_version(self): """ Gets the model_version of this TaskRunDetails. The object's model version. :return: The model_version of this TaskRunDetails. :rtype: str """ return self._model_version @model_version.setter def model_version(self, model_version): """ Sets the model_version of this TaskRunDetails. The object's model version. :param model_version: The model_version of this TaskRunDetails. :type: str """ self._model_version = model_version @property def parent_ref(self): """ Gets the parent_ref of this TaskRunDetails. :return: The parent_ref of this TaskRunDetails. :rtype: oci.data_integration.models.ParentReference """ return self._parent_ref @parent_ref.setter def parent_ref(self, parent_ref): """ Sets the parent_ref of this TaskRunDetails. :param parent_ref: The parent_ref of this TaskRunDetails. :type: oci.data_integration.models.ParentReference """ self._parent_ref = parent_ref @property def name(self): """ Gets the name of this TaskRunDetails. Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters. :return: The name of this TaskRunDetails. :rtype: str """ return self._name @name.setter def name(self, name): """ Sets the name of this TaskRunDetails. Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters. :param name: The name of this TaskRunDetails. :type: str """ self._name = name @property def description(self): """ Gets the description of this TaskRunDetails. Detailed description for the object. :return: The description of this TaskRunDetails. :rtype: str """ return self._description @description.setter def description(self, description): """ Sets the description of this TaskRunDetails. Detailed description for the object. :param description: The description of this TaskRunDetails. :type: str """ self._description = description @property def object_version(self): """ Gets the object_version of this TaskRunDetails. The version of the object that is used to track changes in the object instance. :return: The object_version of this TaskRunDetails. :rtype: int """ return self._object_version @object_version.setter def object_version(self, object_version): """ Sets the object_version of this TaskRunDetails. The version of the object that is used to track changes in the object instance. :param object_version: The object_version of this TaskRunDetails. :type: int """ self._object_version = object_version @property def status(self): """ Gets the status of this TaskRunDetails. status Allowed values for this property are: "NOT_STARTED", "QUEUED", "RUNNING", "TERMINATING", "TERMINATED", "SUCCESS", "ERROR", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The status of this TaskRunDetails. :rtype: str """ return self._status @status.setter def status(self, status): """ Sets the status of this TaskRunDetails. status :param status: The status of this TaskRunDetails. :type: str """ allowed_values = ["NOT_STARTED", "QUEUED", "RUNNING", "TERMINATING", "TERMINATED", "SUCCESS", "ERROR"] if not value_allowed_none_or_none_sentinel(status, allowed_values): status = 'UNKNOWN_ENUM_VALUE' self._status = status @property def start_time_millis(self): """ Gets the start_time_millis of this TaskRunDetails. The task run start time. :return: The start_time_millis of this TaskRunDetails. :rtype: int """ return self._start_time_millis @start_time_millis.setter def start_time_millis(self, start_time_millis): """ Sets the start_time_millis of this TaskRunDetails. The task run start time. :param start_time_millis: The start_time_millis of this TaskRunDetails. :type: int """ self._start_time_millis = start_time_millis @property def end_time_millis(self): """ Gets the end_time_millis of this TaskRunDetails. The task run end time. :return: The end_time_millis of this TaskRunDetails. :rtype: int """ return self._end_time_millis @end_time_millis.setter def end_time_millis(self, end_time_millis): """ Sets the end_time_millis of this TaskRunDetails. The task run end time. :param end_time_millis: The end_time_millis of this TaskRunDetails. :type: int """ self._end_time_millis = end_time_millis @property def last_updated(self): """ Gets the last_updated of this TaskRunDetails. The date and time the task run was last updated. :return: The last_updated of this TaskRunDetails. :rtype: int """ return self._last_updated @last_updated.setter def last_updated(self, last_updated): """ Sets the last_updated of this TaskRunDetails. The date and time the task run was last updated. :param last_updated: The last_updated of this TaskRunDetails. :type: int """ self._last_updated = last_updated @property def records_written(self): """ Gets the records_written of this TaskRunDetails. Number of records processed in task run. :return: The records_written of this TaskRunDetails. :rtype: int """ return self._records_written @records_written.setter def records_written(self, records_written): """ Sets the records_written of this TaskRunDetails. Number of records processed in task run. :param records_written: The records_written of this TaskRunDetails. :type: int """ self._records_written = records_written @property def bytes_processed(self): """ Gets the bytes_processed of this TaskRunDetails. Number of bytes processed in task run. :return: The bytes_processed of this TaskRunDetails. :rtype: int """ return self._bytes_processed @bytes_processed.setter def bytes_processed(self, bytes_processed): """ Sets the bytes_processed of this TaskRunDetails. Number of bytes processed in task run. :param bytes_processed: The bytes_processed of this TaskRunDetails. :type: int """ self._bytes_processed = bytes_processed @property def object_status(self): """ Gets the object_status of this TaskRunDetails. The status of an object that can be set to value 1 for shallow references across objects, other values reserved. :return: The object_status of this TaskRunDetails. :rtype: int """ return self._object_status @object_status.setter def object_status(self, object_status): """ Sets the object_status of this TaskRunDetails. The status of an object that can be set to value 1 for shallow references across objects, other values reserved. :param object_status: The object_status of this TaskRunDetails. :type: int """ self._object_status = object_status @property def task_type(self): """ Gets the task_type of this TaskRunDetails. The type of the task for the run. Allowed values for this property are: "INTEGRATION_TASK", "DATA_LOADER_TASK", "PIPELINE_TASK", "SQL_TASK", "OCI_DATAFLOW_TASK", "REST_TASK", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The task_type of this TaskRunDetails. :rtype: str """ return self._task_type @task_type.setter def task_type(self, task_type): """ Sets the task_type of this TaskRunDetails. The type of the task for the run. :param task_type: The task_type of this TaskRunDetails. :type: str """ allowed_values = ["INTEGRATION_TASK", "DATA_LOADER_TASK", "PIPELINE_TASK", "SQL_TASK", "OCI_DATAFLOW_TASK", "REST_TASK"] if not value_allowed_none_or_none_sentinel(task_type, allowed_values): task_type = 'UNKNOWN_ENUM_VALUE' self._task_type = task_type @property def identifier(self): """ Gets the identifier of this TaskRunDetails. Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified. :return: The identifier of this TaskRunDetails. :rtype: str """ return self._identifier @identifier.setter def identifier(self, identifier): """ Sets the identifier of this TaskRunDetails. Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified. :param identifier: The identifier of this TaskRunDetails. :type: str """ self._identifier = identifier @property def ref_task_run_id(self): """ Gets the ref_task_run_id of this TaskRunDetails. Reference Task Run Id to be used for re-run :return: The ref_task_run_id of this TaskRunDetails. :rtype: str """ return self._ref_task_run_id @ref_task_run_id.setter def ref_task_run_id(self, ref_task_run_id): """ Sets the ref_task_run_id of this TaskRunDetails. Reference Task Run Id to be used for re-run :param ref_task_run_id: The ref_task_run_id of this TaskRunDetails. :type: str """ self._ref_task_run_id = ref_task_run_id @property def re_run_type(self): """ Gets the re_run_type of this TaskRunDetails. Supported re-run types Allowed values for this property are: "BEGINNING", "FAILED", "STEP", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The re_run_type of this TaskRunDetails. :rtype: str """ return self._re_run_type @re_run_type.setter def re_run_type(self, re_run_type): """ Sets the re_run_type of this TaskRunDetails. Supported re-run types :param re_run_type: The re_run_type of this TaskRunDetails. :type: str """ allowed_values = ["BEGINNING", "FAILED", "STEP"] if not value_allowed_none_or_none_sentinel(re_run_type, allowed_values): re_run_type = 'UNKNOWN_ENUM_VALUE' self._re_run_type = re_run_type @property def step_id(self): """ Gets the step_id of this TaskRunDetails. Step Id for running from a certain step. :return: The step_id of this TaskRunDetails. :rtype: str """ return self._step_id @step_id.setter def step_id(self, step_id): """ Sets the step_id of this TaskRunDetails. Step Id for running from a certain step. :param step_id: The step_id of this TaskRunDetails. :type: str """ self._step_id = step_id @property def inputs(self): """ Gets the inputs of this TaskRunDetails. A map of the configuration provider input bindings of the run. :return: The inputs of this TaskRunDetails. :rtype: dict(str, ParameterValue) """ return self._inputs @inputs.setter def inputs(self, inputs): """ Sets the inputs of this TaskRunDetails. A map of the configuration provider input bindings of the run. :param inputs: The inputs of this TaskRunDetails. :type: dict(str, ParameterValue) """ self._inputs = inputs @property def metadata(self): """ Gets the metadata of this TaskRunDetails. :return: The metadata of this TaskRunDetails. :rtype: oci.data_integration.models.ObjectMetadata """ return self._metadata @metadata.setter def metadata(self, metadata): """ Sets the metadata of this TaskRunDetails. :param metadata: The metadata of this TaskRunDetails. :type: oci.data_integration.models.ObjectMetadata """ self._metadata = metadata def __repr__(self): return formatted_flat_dict(self) def __eq__(self, other): if other is None: return False return self.__dict__ == other.__dict__ def __ne__(self, other): return not self == other