Server IP : 103.119.228.120 / Your IP : 13.58.161.115 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/lib/mysqlsh/lib/python3.9/site-packages/oci/nosql/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: 20190828 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 UpdateRowResult(object): """ The result of an UpdateRow operation. """ def __init__(self, **kwargs): """ Initializes a new UpdateRowResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param version: The value to assign to the version property of this UpdateRowResult. :type version: str :param existing_version: The value to assign to the existing_version property of this UpdateRowResult. :type existing_version: str :param existing_value: The value to assign to the existing_value property of this UpdateRowResult. :type existing_value: dict(str, object) :param generated_value: The value to assign to the generated_value property of this UpdateRowResult. :type generated_value: str :param usage: The value to assign to the usage property of this UpdateRowResult. :type usage: oci.nosql.models.RequestUsage """ self.swagger_types = { 'version': 'str', 'existing_version': 'str', 'existing_value': 'dict(str, object)', 'generated_value': 'str', 'usage': 'RequestUsage' } self.attribute_map = { 'version': 'version', 'existing_version': 'existingVersion', 'existing_value': 'existingValue', 'generated_value': 'generatedValue', 'usage': 'usage' } self._version = None self._existing_version = None self._existing_value = None self._generated_value = None self._usage = None @property def version(self): """ Gets the version of this UpdateRowResult. An opaque version string associated with the row. :return: The version of this UpdateRowResult. :rtype: str """ return self._version @version.setter def version(self, version): """ Sets the version of this UpdateRowResult. An opaque version string associated with the row. :param version: The version of this UpdateRowResult. :type: str """ self._version = version @property def existing_version(self): """ Gets the existing_version of this UpdateRowResult. The version string associated with the existing row. Returned if the put fails due to options setting in the request. :return: The existing_version of this UpdateRowResult. :rtype: str """ return self._existing_version @existing_version.setter def existing_version(self, existing_version): """ Sets the existing_version of this UpdateRowResult. The version string associated with the existing row. Returned if the put fails due to options setting in the request. :param existing_version: The existing_version of this UpdateRowResult. :type: str """ self._existing_version = existing_version @property def existing_value(self): """ Gets the existing_value of this UpdateRowResult. The map of values from a row. :return: The existing_value of this UpdateRowResult. :rtype: dict(str, object) """ return self._existing_value @existing_value.setter def existing_value(self, existing_value): """ Sets the existing_value of this UpdateRowResult. The map of values from a row. :param existing_value: The existing_value of this UpdateRowResult. :type: dict(str, object) """ self._existing_value = existing_value @property def generated_value(self): """ Gets the generated_value of this UpdateRowResult. The value generated if the operation created a new value for an identity column. If the table has no identity column, this value is null. If it has an identity column, and a value was generated for that column, it is non-null. :return: The generated_value of this UpdateRowResult. :rtype: str """ return self._generated_value @generated_value.setter def generated_value(self, generated_value): """ Sets the generated_value of this UpdateRowResult. The value generated if the operation created a new value for an identity column. If the table has no identity column, this value is null. If it has an identity column, and a value was generated for that column, it is non-null. :param generated_value: The generated_value of this UpdateRowResult. :type: str """ self._generated_value = generated_value @property def usage(self): """ Gets the usage of this UpdateRowResult. :return: The usage of this UpdateRowResult. :rtype: oci.nosql.models.RequestUsage """ return self._usage @usage.setter def usage(self, usage): """ Sets the usage of this UpdateRowResult. :param usage: The usage of this UpdateRowResult. :type: oci.nosql.models.RequestUsage """ self._usage = usage 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