Server IP : 103.119.228.120 / Your IP : 18.117.232.215 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 : /usr/local/ssl/lib/mysqlsh/lib/python3.9/site-packages/oci/data_safe/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: 20181201 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 DiscoveryJobResult(object): """ A discovery job result representing a sensitive column. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified. """ #: A constant which can be used with the discovery_type property of a DiscoveryJobResult. #: This constant has a value of "NEW" DISCOVERY_TYPE_NEW = "NEW" #: A constant which can be used with the discovery_type property of a DiscoveryJobResult. #: This constant has a value of "MODIFIED" DISCOVERY_TYPE_MODIFIED = "MODIFIED" #: A constant which can be used with the discovery_type property of a DiscoveryJobResult. #: This constant has a value of "DELETED" DISCOVERY_TYPE_DELETED = "DELETED" #: A constant which can be used with the object_type property of a DiscoveryJobResult. #: This constant has a value of "TABLE" OBJECT_TYPE_TABLE = "TABLE" #: A constant which can be used with the object_type property of a DiscoveryJobResult. #: This constant has a value of "EDITIONING_VIEW" OBJECT_TYPE_EDITIONING_VIEW = "EDITIONING_VIEW" #: A constant which can be used with the relation_type property of a DiscoveryJobResult. #: This constant has a value of "NONE" RELATION_TYPE_NONE = "NONE" #: A constant which can be used with the relation_type property of a DiscoveryJobResult. #: This constant has a value of "APP_DEFINED" RELATION_TYPE_APP_DEFINED = "APP_DEFINED" #: A constant which can be used with the relation_type property of a DiscoveryJobResult. #: This constant has a value of "DB_DEFINED" RELATION_TYPE_DB_DEFINED = "DB_DEFINED" #: A constant which can be used with the planned_action property of a DiscoveryJobResult. #: This constant has a value of "NONE" PLANNED_ACTION_NONE = "NONE" #: A constant which can be used with the planned_action property of a DiscoveryJobResult. #: This constant has a value of "ACCEPT" PLANNED_ACTION_ACCEPT = "ACCEPT" #: A constant which can be used with the planned_action property of a DiscoveryJobResult. #: This constant has a value of "INVALIDATE" PLANNED_ACTION_INVALIDATE = "INVALIDATE" #: A constant which can be used with the planned_action property of a DiscoveryJobResult. #: This constant has a value of "REJECT" PLANNED_ACTION_REJECT = "REJECT" def __init__(self, **kwargs): """ Initializes a new DiscoveryJobResult 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 DiscoveryJobResult. :type key: str :param discovery_type: The value to assign to the discovery_type property of this DiscoveryJobResult. Allowed values for this property are: "NEW", "MODIFIED", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type discovery_type: str :param sensitive_columnkey: The value to assign to the sensitive_columnkey property of this DiscoveryJobResult. :type sensitive_columnkey: str :param app_name: The value to assign to the app_name property of this DiscoveryJobResult. :type app_name: str :param schema_name: The value to assign to the schema_name property of this DiscoveryJobResult. :type schema_name: str :param object_name: The value to assign to the object_name property of this DiscoveryJobResult. :type object_name: str :param column_name: The value to assign to the column_name property of this DiscoveryJobResult. :type column_name: str :param object_type: The value to assign to the object_type property of this DiscoveryJobResult. Allowed values for this property are: "TABLE", "EDITIONING_VIEW", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type object_type: str :param data_type: The value to assign to the data_type property of this DiscoveryJobResult. :type data_type: str :param sensitive_type_id: The value to assign to the sensitive_type_id property of this DiscoveryJobResult. :type sensitive_type_id: str :param parent_column_keys: The value to assign to the parent_column_keys property of this DiscoveryJobResult. :type parent_column_keys: list[str] :param relation_type: The value to assign to the relation_type property of this DiscoveryJobResult. Allowed values for this property are: "NONE", "APP_DEFINED", "DB_DEFINED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type relation_type: str :param estimated_data_value_count: The value to assign to the estimated_data_value_count property of this DiscoveryJobResult. :type estimated_data_value_count: int :param sample_data_values: The value to assign to the sample_data_values property of this DiscoveryJobResult. :type sample_data_values: list[str] :param app_defined_child_column_keys: The value to assign to the app_defined_child_column_keys property of this DiscoveryJobResult. :type app_defined_child_column_keys: list[str] :param db_defined_child_column_keys: The value to assign to the db_defined_child_column_keys property of this DiscoveryJobResult. :type db_defined_child_column_keys: list[str] :param planned_action: The value to assign to the planned_action property of this DiscoveryJobResult. Allowed values for this property are: "NONE", "ACCEPT", "INVALIDATE", "REJECT", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type planned_action: str :param is_result_applied: The value to assign to the is_result_applied property of this DiscoveryJobResult. :type is_result_applied: bool :param discovery_job_id: The value to assign to the discovery_job_id property of this DiscoveryJobResult. :type discovery_job_id: str :param modified_attributes: The value to assign to the modified_attributes property of this DiscoveryJobResult. :type modified_attributes: oci.data_safe.models.ModifiedAttributes """ self.swagger_types = { 'key': 'str', 'discovery_type': 'str', 'sensitive_columnkey': 'str', 'app_name': 'str', 'schema_name': 'str', 'object_name': 'str', 'column_name': 'str', 'object_type': 'str', 'data_type': 'str', 'sensitive_type_id': 'str', 'parent_column_keys': 'list[str]', 'relation_type': 'str', 'estimated_data_value_count': 'int', 'sample_data_values': 'list[str]', 'app_defined_child_column_keys': 'list[str]', 'db_defined_child_column_keys': 'list[str]', 'planned_action': 'str', 'is_result_applied': 'bool', 'discovery_job_id': 'str', 'modified_attributes': 'ModifiedAttributes' } self.attribute_map = { 'key': 'key', 'discovery_type': 'discoveryType', 'sensitive_columnkey': 'sensitiveColumnkey', 'app_name': 'appName', 'schema_name': 'schemaName', 'object_name': 'objectName', 'column_name': 'columnName', 'object_type': 'objectType', 'data_type': 'dataType', 'sensitive_type_id': 'sensitiveTypeId', 'parent_column_keys': 'parentColumnKeys', 'relation_type': 'relationType', 'estimated_data_value_count': 'estimatedDataValueCount', 'sample_data_values': 'sampleDataValues', 'app_defined_child_column_keys': 'appDefinedChildColumnKeys', 'db_defined_child_column_keys': 'dbDefinedChildColumnKeys', 'planned_action': 'plannedAction', 'is_result_applied': 'isResultApplied', 'discovery_job_id': 'discoveryJobId', 'modified_attributes': 'modifiedAttributes' } self._key = None self._discovery_type = None self._sensitive_columnkey = None self._app_name = None self._schema_name = None self._object_name = None self._column_name = None self._object_type = None self._data_type = None self._sensitive_type_id = None self._parent_column_keys = None self._relation_type = None self._estimated_data_value_count = None self._sample_data_values = None self._app_defined_child_column_keys = None self._db_defined_child_column_keys = None self._planned_action = None self._is_result_applied = None self._discovery_job_id = None self._modified_attributes = None @property def key(self): """ **[Required]** Gets the key of this DiscoveryJobResult. The unique key that identifies the discovery result. :return: The key of this DiscoveryJobResult. :rtype: str """ return self._key @key.setter def key(self, key): """ Sets the key of this DiscoveryJobResult. The unique key that identifies the discovery result. :param key: The key of this DiscoveryJobResult. :type: str """ self._key = key @property def discovery_type(self): """ **[Required]** Gets the discovery_type of this DiscoveryJobResult. The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified. Allowed values for this property are: "NEW", "MODIFIED", "DELETED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The discovery_type of this DiscoveryJobResult. :rtype: str """ return self._discovery_type @discovery_type.setter def discovery_type(self, discovery_type): """ Sets the discovery_type of this DiscoveryJobResult. The type of the discovery result. It can be one of the following three types: NEW: A new sensitive column in the target database that is not in the sensitive data model. DELETED: A column that is present in the sensitive data model but has been deleted from the target database. MODIFIED: A column that is present in the target database as well as the sensitive data model but some of its attributes have been modified. :param discovery_type: The discovery_type of this DiscoveryJobResult. :type: str """ allowed_values = ["NEW", "MODIFIED", "DELETED"] if not value_allowed_none_or_none_sentinel(discovery_type, allowed_values): discovery_type = 'UNKNOWN_ENUM_VALUE' self._discovery_type = discovery_type @property def sensitive_columnkey(self): """ Gets the sensitive_columnkey of this DiscoveryJobResult. The unique key that identifies the sensitive column represented by the discovery result. :return: The sensitive_columnkey of this DiscoveryJobResult. :rtype: str """ return self._sensitive_columnkey @sensitive_columnkey.setter def sensitive_columnkey(self, sensitive_columnkey): """ Sets the sensitive_columnkey of this DiscoveryJobResult. The unique key that identifies the sensitive column represented by the discovery result. :param sensitive_columnkey: The sensitive_columnkey of this DiscoveryJobResult. :type: str """ self._sensitive_columnkey = sensitive_columnkey @property def app_name(self): """ Gets the app_name of this DiscoveryJobResult. The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed. :return: The app_name of this DiscoveryJobResult. :rtype: str """ return self._app_name @app_name.setter def app_name(self, app_name): """ Sets the app_name of this DiscoveryJobResult. The name of the application. An application is an entity that is identified by a schema and stores sensitive information for that schema. Its value will be same as schemaName, if no value is passed. :param app_name: The app_name of this DiscoveryJobResult. :type: str """ self._app_name = app_name @property def schema_name(self): """ **[Required]** Gets the schema_name of this DiscoveryJobResult. The database schema that contains the sensitive column. :return: The schema_name of this DiscoveryJobResult. :rtype: str """ return self._schema_name @schema_name.setter def schema_name(self, schema_name): """ Sets the schema_name of this DiscoveryJobResult. The database schema that contains the sensitive column. :param schema_name: The schema_name of this DiscoveryJobResult. :type: str """ self._schema_name = schema_name @property def object_name(self): """ **[Required]** Gets the object_name of this DiscoveryJobResult. The database object that contains the sensitive column. :return: The object_name of this DiscoveryJobResult. :rtype: str """ return self._object_name @object_name.setter def object_name(self, object_name): """ Sets the object_name of this DiscoveryJobResult. The database object that contains the sensitive column. :param object_name: The object_name of this DiscoveryJobResult. :type: str """ self._object_name = object_name @property def column_name(self): """ **[Required]** Gets the column_name of this DiscoveryJobResult. The name of the sensitive column. :return: The column_name of this DiscoveryJobResult. :rtype: str """ return self._column_name @column_name.setter def column_name(self, column_name): """ Sets the column_name of this DiscoveryJobResult. The name of the sensitive column. :param column_name: The column_name of this DiscoveryJobResult. :type: str """ self._column_name = column_name @property def object_type(self): """ **[Required]** Gets the object_type of this DiscoveryJobResult. The type of the database object that contains the sensitive column. Allowed values for this property are: "TABLE", "EDITIONING_VIEW", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The object_type of this DiscoveryJobResult. :rtype: str """ return self._object_type @object_type.setter def object_type(self, object_type): """ Sets the object_type of this DiscoveryJobResult. The type of the database object that contains the sensitive column. :param object_type: The object_type of this DiscoveryJobResult. :type: str """ allowed_values = ["TABLE", "EDITIONING_VIEW"] if not value_allowed_none_or_none_sentinel(object_type, allowed_values): object_type = 'UNKNOWN_ENUM_VALUE' self._object_type = object_type @property def data_type(self): """ **[Required]** Gets the data_type of this DiscoveryJobResult. The data type of the sensitive column. :return: The data_type of this DiscoveryJobResult. :rtype: str """ return self._data_type @data_type.setter def data_type(self, data_type): """ Sets the data_type of this DiscoveryJobResult. The data type of the sensitive column. :param data_type: The data_type of this DiscoveryJobResult. :type: str """ self._data_type = data_type @property def sensitive_type_id(self): """ Gets the sensitive_type_id of this DiscoveryJobResult. The OCID of the sensitive type associated with the sensitive column. :return: The sensitive_type_id of this DiscoveryJobResult. :rtype: str """ return self._sensitive_type_id @sensitive_type_id.setter def sensitive_type_id(self, sensitive_type_id): """ Sets the sensitive_type_id of this DiscoveryJobResult. The OCID of the sensitive type associated with the sensitive column. :param sensitive_type_id: The sensitive_type_id of this DiscoveryJobResult. :type: str """ self._sensitive_type_id = sensitive_type_id @property def parent_column_keys(self): """ Gets the parent_column_keys of this DiscoveryJobResult. Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only. :return: The parent_column_keys of this DiscoveryJobResult. :rtype: list[str] """ return self._parent_column_keys @parent_column_keys.setter def parent_column_keys(self, parent_column_keys): """ Sets the parent_column_keys of this DiscoveryJobResult. Unique keys identifying the columns that are parents of the sensitive column. At present, it tracks a single parent only. :param parent_column_keys: The parent_column_keys of this DiscoveryJobResult. :type: list[str] """ self._parent_column_keys = parent_column_keys @property def relation_type(self): """ **[Required]** Gets the relation_type of this DiscoveryJobResult. The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary. Allowed values for this property are: "NONE", "APP_DEFINED", "DB_DEFINED", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The relation_type of this DiscoveryJobResult. :rtype: str """ return self._relation_type @relation_type.setter def relation_type(self, relation_type): """ Sets the relation_type of this DiscoveryJobResult. The type of referential relationship the sensitive column has with its parent. NONE indicates that the sensitive column does not have a parent. DB_DEFINED indicates that the relationship is defined in the database dictionary. APP_DEFINED indicates that the relationship is defined at the application level and not in the database dictionary. :param relation_type: The relation_type of this DiscoveryJobResult. :type: str """ allowed_values = ["NONE", "APP_DEFINED", "DB_DEFINED"] if not value_allowed_none_or_none_sentinel(relation_type, allowed_values): relation_type = 'UNKNOWN_ENUM_VALUE' self._relation_type = relation_type @property def estimated_data_value_count(self): """ **[Required]** Gets the estimated_data_value_count of this DiscoveryJobResult. The estimated number of data values the column has in the associated database. :return: The estimated_data_value_count of this DiscoveryJobResult. :rtype: int """ return self._estimated_data_value_count @estimated_data_value_count.setter def estimated_data_value_count(self, estimated_data_value_count): """ Sets the estimated_data_value_count of this DiscoveryJobResult. The estimated number of data values the column has in the associated database. :param estimated_data_value_count: The estimated_data_value_count of this DiscoveryJobResult. :type: int """ self._estimated_data_value_count = estimated_data_value_count @property def sample_data_values(self): """ Gets the sample_data_values of this DiscoveryJobResult. Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column. :return: The sample_data_values of this DiscoveryJobResult. :rtype: list[str] """ return self._sample_data_values @sample_data_values.setter def sample_data_values(self, sample_data_values): """ Sets the sample_data_values of this DiscoveryJobResult. Original data values collected for the sensitive column from the associated database. Sample data helps review the column and ensure that it actually contains sensitive data. Note that sample data is retrieved by a data discovery job only if the isSampleDataCollectionEnabled attribute is set to true. At present, only one data value is collected per sensitive column. :param sample_data_values: The sample_data_values of this DiscoveryJobResult. :type: list[str] """ self._sample_data_values = sample_data_values @property def app_defined_child_column_keys(self): """ Gets the app_defined_child_column_keys of this DiscoveryJobResult. Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column. :return: The app_defined_child_column_keys of this DiscoveryJobResult. :rtype: list[str] """ return self._app_defined_child_column_keys @app_defined_child_column_keys.setter def app_defined_child_column_keys(self, app_defined_child_column_keys): """ Sets the app_defined_child_column_keys of this DiscoveryJobResult. Unique keys identifying the columns that are application-level (non-dictionary) children of the sensitive column. :param app_defined_child_column_keys: The app_defined_child_column_keys of this DiscoveryJobResult. :type: list[str] """ self._app_defined_child_column_keys = app_defined_child_column_keys @property def db_defined_child_column_keys(self): """ Gets the db_defined_child_column_keys of this DiscoveryJobResult. Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column. :return: The db_defined_child_column_keys of this DiscoveryJobResult. :rtype: list[str] """ return self._db_defined_child_column_keys @db_defined_child_column_keys.setter def db_defined_child_column_keys(self, db_defined_child_column_keys): """ Sets the db_defined_child_column_keys of this DiscoveryJobResult. Unique keys identifying the columns that are database-level (dictionary-defined) children of the sensitive column. :param db_defined_child_column_keys: The db_defined_child_column_keys of this DiscoveryJobResult. :type: list[str] """ self._db_defined_child_column_keys = db_defined_child_column_keys @property def planned_action(self): """ **[Required]** Gets the planned_action of this DiscoveryJobResult. Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results. Allowed values for this property are: "NONE", "ACCEPT", "INVALIDATE", "REJECT", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :return: The planned_action of this DiscoveryJobResult. :rtype: str """ return self._planned_action @planned_action.setter def planned_action(self, planned_action): """ Sets the planned_action of this DiscoveryJobResult. Specifies how to process the discovery result. It's set to NONE by default. Use the PatchDiscoveryJobResults operation to update this attribute. You can choose one of the following options: ACCEPT: To accept the discovery result and update the sensitive data model to reflect the changes. REJECT: To reject the discovery result so that it doesn't change the sensitive data model. INVALIDATE: To invalidate a newly discovered column. It adds the column to the sensitive data model but marks it as invalid. It helps track false positives and ensure that they aren't reported by future discovery jobs. After specifying the planned action, you can use the ApplyDiscoveryJobResults operation to automatically process the discovery results. :param planned_action: The planned_action of this DiscoveryJobResult. :type: str """ allowed_values = ["NONE", "ACCEPT", "INVALIDATE", "REJECT"] if not value_allowed_none_or_none_sentinel(planned_action, allowed_values): planned_action = 'UNKNOWN_ENUM_VALUE' self._planned_action = planned_action @property def is_result_applied(self): """ **[Required]** Gets the is_result_applied of this DiscoveryJobResult. Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model. :return: The is_result_applied of this DiscoveryJobResult. :rtype: bool """ return self._is_result_applied @is_result_applied.setter def is_result_applied(self, is_result_applied): """ Sets the is_result_applied of this DiscoveryJobResult. Indicates whether the discovery result has been processed. You can update this attribute using the PatchDiscoveryJobResults operation to track whether the discovery result has already been processed and applied to the sensitive data model. :param is_result_applied: The is_result_applied of this DiscoveryJobResult. :type: bool """ self._is_result_applied = is_result_applied @property def discovery_job_id(self): """ **[Required]** Gets the discovery_job_id of this DiscoveryJobResult. The OCID of the discovery job. :return: The discovery_job_id of this DiscoveryJobResult. :rtype: str """ return self._discovery_job_id @discovery_job_id.setter def discovery_job_id(self, discovery_job_id): """ Sets the discovery_job_id of this DiscoveryJobResult. The OCID of the discovery job. :param discovery_job_id: The discovery_job_id of this DiscoveryJobResult. :type: str """ self._discovery_job_id = discovery_job_id @property def modified_attributes(self): """ Gets the modified_attributes of this DiscoveryJobResult. :return: The modified_attributes of this DiscoveryJobResult. :rtype: oci.data_safe.models.ModifiedAttributes """ return self._modified_attributes @modified_attributes.setter def modified_attributes(self, modified_attributes): """ Sets the modified_attributes of this DiscoveryJobResult. :param modified_attributes: The modified_attributes of this DiscoveryJobResult. :type: oci.data_safe.models.ModifiedAttributes """ self._modified_attributes = modified_attributes 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