Server IP : 103.119.228.120 / Your IP : 3.129.42.198 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/log_analytics/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: 20200601 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 EfdRegexResult(object): """ EfdRegexResult """ def __init__(self, **kwargs): """ Initializes a new EfdRegexResult object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param base_field_name: The value to assign to the base_field_name property of this EfdRegexResult. :type base_field_name: str :param id: The value to assign to the id property of this EfdRegexResult. :type id: int :param match_result: The value to assign to the match_result property of this EfdRegexResult. :type match_result: oci.log_analytics.models.RegexMatchResult :param parsed_field_count: The value to assign to the parsed_field_count property of this EfdRegexResult. :type parsed_field_count: int :param parsed_fields: The value to assign to the parsed_fields property of this EfdRegexResult. :type parsed_fields: dict(str, str) :param regex: The value to assign to the regex property of this EfdRegexResult. :type regex: str :param status: The value to assign to the status property of this EfdRegexResult. :type status: str :param status_description: The value to assign to the status_description property of this EfdRegexResult. :type status_description: str :param is_valid_regex_syntax: The value to assign to the is_valid_regex_syntax property of this EfdRegexResult. :type is_valid_regex_syntax: bool :param violations: The value to assign to the violations property of this EfdRegexResult. :type violations: list[oci.log_analytics.models.Violation] """ self.swagger_types = { 'base_field_name': 'str', 'id': 'int', 'match_result': 'RegexMatchResult', 'parsed_field_count': 'int', 'parsed_fields': 'dict(str, str)', 'regex': 'str', 'status': 'str', 'status_description': 'str', 'is_valid_regex_syntax': 'bool', 'violations': 'list[Violation]' } self.attribute_map = { 'base_field_name': 'baseFieldName', 'id': 'id', 'match_result': 'matchResult', 'parsed_field_count': 'parsedFieldCount', 'parsed_fields': 'parsedFields', 'regex': 'regex', 'status': 'status', 'status_description': 'statusDescription', 'is_valid_regex_syntax': 'isValidRegexSyntax', 'violations': 'violations' } self._base_field_name = None self._id = None self._match_result = None self._parsed_field_count = None self._parsed_fields = None self._regex = None self._status = None self._status_description = None self._is_valid_regex_syntax = None self._violations = None @property def base_field_name(self): """ Gets the base_field_name of this EfdRegexResult. The base field name. :return: The base_field_name of this EfdRegexResult. :rtype: str """ return self._base_field_name @base_field_name.setter def base_field_name(self, base_field_name): """ Sets the base_field_name of this EfdRegexResult. The base field name. :param base_field_name: The base_field_name of this EfdRegexResult. :type: str """ self._base_field_name = base_field_name @property def id(self): """ Gets the id of this EfdRegexResult. the unique identifier. :return: The id of this EfdRegexResult. :rtype: int """ return self._id @id.setter def id(self, id): """ Sets the id of this EfdRegexResult. the unique identifier. :param id: The id of this EfdRegexResult. :type: int """ self._id = id @property def match_result(self): """ Gets the match_result of this EfdRegexResult. :return: The match_result of this EfdRegexResult. :rtype: oci.log_analytics.models.RegexMatchResult """ return self._match_result @match_result.setter def match_result(self, match_result): """ Sets the match_result of this EfdRegexResult. :param match_result: The match_result of this EfdRegexResult. :type: oci.log_analytics.models.RegexMatchResult """ self._match_result = match_result @property def parsed_field_count(self): """ Gets the parsed_field_count of this EfdRegexResult. The parsed field count. :return: The parsed_field_count of this EfdRegexResult. :rtype: int """ return self._parsed_field_count @parsed_field_count.setter def parsed_field_count(self, parsed_field_count): """ Sets the parsed_field_count of this EfdRegexResult. The parsed field count. :param parsed_field_count: The parsed_field_count of this EfdRegexResult. :type: int """ self._parsed_field_count = parsed_field_count @property def parsed_fields(self): """ Gets the parsed_fields of this EfdRegexResult. The parsed fields. :return: The parsed_fields of this EfdRegexResult. :rtype: dict(str, str) """ return self._parsed_fields @parsed_fields.setter def parsed_fields(self, parsed_fields): """ Sets the parsed_fields of this EfdRegexResult. The parsed fields. :param parsed_fields: The parsed_fields of this EfdRegexResult. :type: dict(str, str) """ self._parsed_fields = parsed_fields @property def regex(self): """ Gets the regex of this EfdRegexResult. The regular expression. :return: The regex of this EfdRegexResult. :rtype: str """ return self._regex @regex.setter def regex(self, regex): """ Sets the regex of this EfdRegexResult. The regular expression. :param regex: The regex of this EfdRegexResult. :type: str """ self._regex = regex @property def status(self): """ Gets the status of this EfdRegexResult. The status. :return: The status of this EfdRegexResult. :rtype: str """ return self._status @status.setter def status(self, status): """ Sets the status of this EfdRegexResult. The status. :param status: The status of this EfdRegexResult. :type: str """ self._status = status @property def status_description(self): """ Gets the status_description of this EfdRegexResult. The Status description. :return: The status_description of this EfdRegexResult. :rtype: str """ return self._status_description @status_description.setter def status_description(self, status_description): """ Sets the status_description of this EfdRegexResult. The Status description. :param status_description: The status_description of this EfdRegexResult. :type: str """ self._status_description = status_description @property def is_valid_regex_syntax(self): """ Gets the is_valid_regex_syntax of this EfdRegexResult. A flag indicating whether or not the regular expression is valid. :return: The is_valid_regex_syntax of this EfdRegexResult. :rtype: bool """ return self._is_valid_regex_syntax @is_valid_regex_syntax.setter def is_valid_regex_syntax(self, is_valid_regex_syntax): """ Sets the is_valid_regex_syntax of this EfdRegexResult. A flag indicating whether or not the regular expression is valid. :param is_valid_regex_syntax: The is_valid_regex_syntax of this EfdRegexResult. :type: bool """ self._is_valid_regex_syntax = is_valid_regex_syntax @property def violations(self): """ Gets the violations of this EfdRegexResult. The list of violations (if any). :return: The violations of this EfdRegexResult. :rtype: list[oci.log_analytics.models.Violation] """ return self._violations @violations.setter def violations(self, violations): """ Sets the violations of this EfdRegexResult. The list of violations (if any). :param violations: The violations of this EfdRegexResult. :type: list[oci.log_analytics.models.Violation] """ self._violations = violations 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