Server IP : 103.119.228.120 / Your IP : 3.135.219.153 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/golden_gate/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: 20200407 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 TrailFileSummary(object): """ Summary of the TrailFiles. """ def __init__(self, **kwargs): """ Initializes a new TrailFileSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param trail_file_id: The value to assign to the trail_file_id property of this TrailFileSummary. :type trail_file_id: str :param display_name: The value to assign to the display_name property of this TrailFileSummary. :type display_name: str :param size_in_bytes: The value to assign to the size_in_bytes property of this TrailFileSummary. :type size_in_bytes: int :param time_last_updated: The value to assign to the time_last_updated property of this TrailFileSummary. :type time_last_updated: datetime :param number_of_sequences: The value to assign to the number_of_sequences property of this TrailFileSummary. :type number_of_sequences: int :param min_sequence_number: The value to assign to the min_sequence_number property of this TrailFileSummary. :type min_sequence_number: str :param max_sequence_number: The value to assign to the max_sequence_number property of this TrailFileSummary. :type max_sequence_number: str :param producer: The value to assign to the producer property of this TrailFileSummary. :type producer: str :param consumers: The value to assign to the consumers property of this TrailFileSummary. :type consumers: list[str] """ self.swagger_types = { 'trail_file_id': 'str', 'display_name': 'str', 'size_in_bytes': 'int', 'time_last_updated': 'datetime', 'number_of_sequences': 'int', 'min_sequence_number': 'str', 'max_sequence_number': 'str', 'producer': 'str', 'consumers': 'list[str]' } self.attribute_map = { 'trail_file_id': 'trailFileId', 'display_name': 'displayName', 'size_in_bytes': 'sizeInBytes', 'time_last_updated': 'timeLastUpdated', 'number_of_sequences': 'numberOfSequences', 'min_sequence_number': 'minSequenceNumber', 'max_sequence_number': 'maxSequenceNumber', 'producer': 'producer', 'consumers': 'consumers' } self._trail_file_id = None self._display_name = None self._size_in_bytes = None self._time_last_updated = None self._number_of_sequences = None self._min_sequence_number = None self._max_sequence_number = None self._producer = None self._consumers = None @property def trail_file_id(self): """ **[Required]** Gets the trail_file_id of this TrailFileSummary. The TrailFile Id. :return: The trail_file_id of this TrailFileSummary. :rtype: str """ return self._trail_file_id @trail_file_id.setter def trail_file_id(self, trail_file_id): """ Sets the trail_file_id of this TrailFileSummary. The TrailFile Id. :param trail_file_id: The trail_file_id of this TrailFileSummary. :type: str """ self._trail_file_id = trail_file_id @property def display_name(self): """ Gets the display_name of this TrailFileSummary. An object's Display Name. :return: The display_name of this TrailFileSummary. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this TrailFileSummary. An object's Display Name. :param display_name: The display_name of this TrailFileSummary. :type: str """ self._display_name = display_name @property def size_in_bytes(self): """ Gets the size_in_bytes of this TrailFileSummary. The size of the backup stored in object storage (in bytes) :return: The size_in_bytes of this TrailFileSummary. :rtype: int """ return self._size_in_bytes @size_in_bytes.setter def size_in_bytes(self, size_in_bytes): """ Sets the size_in_bytes of this TrailFileSummary. The size of the backup stored in object storage (in bytes) :param size_in_bytes: The size_in_bytes of this TrailFileSummary. :type: int """ self._size_in_bytes = size_in_bytes @property def time_last_updated(self): """ Gets the time_last_updated of this TrailFileSummary. The time the resource was last updated. The format is defined by `RFC3339`__, such as `2016-08-25T21:10:29.600Z`. __ https://tools.ietf.org/html/rfc3339 :return: The time_last_updated of this TrailFileSummary. :rtype: datetime """ return self._time_last_updated @time_last_updated.setter def time_last_updated(self, time_last_updated): """ Sets the time_last_updated of this TrailFileSummary. The time the resource was last updated. The format is defined by `RFC3339`__, such as `2016-08-25T21:10:29.600Z`. __ https://tools.ietf.org/html/rfc3339 :param time_last_updated: The time_last_updated of this TrailFileSummary. :type: datetime """ self._time_last_updated = time_last_updated @property def number_of_sequences(self): """ Gets the number_of_sequences of this TrailFileSummary. Number of sequences for a specific trail file :return: The number_of_sequences of this TrailFileSummary. :rtype: int """ return self._number_of_sequences @number_of_sequences.setter def number_of_sequences(self, number_of_sequences): """ Sets the number_of_sequences of this TrailFileSummary. Number of sequences for a specific trail file :param number_of_sequences: The number_of_sequences of this TrailFileSummary. :type: int """ self._number_of_sequences = number_of_sequences @property def min_sequence_number(self): """ Gets the min_sequence_number of this TrailFileSummary. Minimum sequence number :return: The min_sequence_number of this TrailFileSummary. :rtype: str """ return self._min_sequence_number @min_sequence_number.setter def min_sequence_number(self, min_sequence_number): """ Sets the min_sequence_number of this TrailFileSummary. Minimum sequence number :param min_sequence_number: The min_sequence_number of this TrailFileSummary. :type: str """ self._min_sequence_number = min_sequence_number @property def max_sequence_number(self): """ Gets the max_sequence_number of this TrailFileSummary. Maximum sequence number :return: The max_sequence_number of this TrailFileSummary. :rtype: str """ return self._max_sequence_number @max_sequence_number.setter def max_sequence_number(self, max_sequence_number): """ Sets the max_sequence_number of this TrailFileSummary. Maximum sequence number :param max_sequence_number: The max_sequence_number of this TrailFileSummary. :type: str """ self._max_sequence_number = max_sequence_number @property def producer(self): """ Gets the producer of this TrailFileSummary. Producer Process Name if any. :return: The producer of this TrailFileSummary. :rtype: str """ return self._producer @producer.setter def producer(self, producer): """ Sets the producer of this TrailFileSummary. Producer Process Name if any. :param producer: The producer of this TrailFileSummary. :type: str """ self._producer = producer @property def consumers(self): """ Gets the consumers of this TrailFileSummary. array of consumer process names :return: The consumers of this TrailFileSummary. :rtype: list[str] """ return self._consumers @consumers.setter def consumers(self, consumers): """ Sets the consumers of this TrailFileSummary. array of consumer process names :param consumers: The consumers of this TrailFileSummary. :type: list[str] """ self._consumers = consumers 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