Server IP : 103.119.228.120 / Your IP : 3.144.101.75 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/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 LabelSourceSummary(object): """ source summary """ def __init__(self, **kwargs): """ Initializes a new LabelSourceSummary object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param source_display_name: The value to assign to the source_display_name property of this LabelSourceSummary. :type source_display_name: str :param source_name: The value to assign to the source_name property of this LabelSourceSummary. :type source_name: str :param source_id: The value to assign to the source_id property of this LabelSourceSummary. :type source_id: int :param label_operator_name: The value to assign to the label_operator_name property of this LabelSourceSummary. :type label_operator_name: str :param label_condition: The value to assign to the label_condition property of this LabelSourceSummary. :type label_condition: str :param condition_string: The value to assign to the condition_string property of this LabelSourceSummary. :type condition_string: str :param condition_block: The value to assign to the condition_block property of this LabelSourceSummary. :type condition_block: oci.log_analytics.models.ConditionBlock :param label_field_displayname: The value to assign to the label_field_displayname property of this LabelSourceSummary. :type label_field_displayname: str :param label_field_name: The value to assign to the label_field_name property of this LabelSourceSummary. :type label_field_name: str """ self.swagger_types = { 'source_display_name': 'str', 'source_name': 'str', 'source_id': 'int', 'label_operator_name': 'str', 'label_condition': 'str', 'condition_string': 'str', 'condition_block': 'ConditionBlock', 'label_field_displayname': 'str', 'label_field_name': 'str' } self.attribute_map = { 'source_display_name': 'sourceDisplayName', 'source_name': 'sourceName', 'source_id': 'sourceId', 'label_operator_name': 'labelOperatorName', 'label_condition': 'labelCondition', 'condition_string': 'conditionString', 'condition_block': 'conditionBlock', 'label_field_displayname': 'labelFieldDisplayname', 'label_field_name': 'labelFieldName' } self._source_display_name = None self._source_name = None self._source_id = None self._label_operator_name = None self._label_condition = None self._condition_string = None self._condition_block = None self._label_field_displayname = None self._label_field_name = None @property def source_display_name(self): """ Gets the source_display_name of this LabelSourceSummary. The source display name. :return: The source_display_name of this LabelSourceSummary. :rtype: str """ return self._source_display_name @source_display_name.setter def source_display_name(self, source_display_name): """ Sets the source_display_name of this LabelSourceSummary. The source display name. :param source_display_name: The source_display_name of this LabelSourceSummary. :type: str """ self._source_display_name = source_display_name @property def source_name(self): """ Gets the source_name of this LabelSourceSummary. The source internal name. :return: The source_name of this LabelSourceSummary. :rtype: str """ return self._source_name @source_name.setter def source_name(self, source_name): """ Sets the source_name of this LabelSourceSummary. The source internal name. :param source_name: The source_name of this LabelSourceSummary. :type: str """ self._source_name = source_name @property def source_id(self): """ Gets the source_id of this LabelSourceSummary. The source unique identifier. :return: The source_id of this LabelSourceSummary. :rtype: int """ return self._source_id @source_id.setter def source_id(self, source_id): """ Sets the source_id of this LabelSourceSummary. The source unique identifier. :param source_id: The source_id of this LabelSourceSummary. :type: int """ self._source_id = source_id @property def label_operator_name(self): """ Gets the label_operator_name of this LabelSourceSummary. The label operator. :return: The label_operator_name of this LabelSourceSummary. :rtype: str """ return self._label_operator_name @label_operator_name.setter def label_operator_name(self, label_operator_name): """ Sets the label_operator_name of this LabelSourceSummary. The label operator. :param label_operator_name: The label_operator_name of this LabelSourceSummary. :type: str """ self._label_operator_name = label_operator_name @property def label_condition(self): """ Gets the label_condition of this LabelSourceSummary. The label condition. :return: The label_condition of this LabelSourceSummary. :rtype: str """ return self._label_condition @label_condition.setter def label_condition(self, label_condition): """ Sets the label_condition of this LabelSourceSummary. The label condition. :param label_condition: The label_condition of this LabelSourceSummary. :type: str """ self._label_condition = label_condition @property def condition_string(self): """ Gets the condition_string of this LabelSourceSummary. String representation of the label condition. :return: The condition_string of this LabelSourceSummary. :rtype: str """ return self._condition_string @condition_string.setter def condition_string(self, condition_string): """ Sets the condition_string of this LabelSourceSummary. String representation of the label condition. :param condition_string: The condition_string of this LabelSourceSummary. :type: str """ self._condition_string = condition_string @property def condition_block(self): """ Gets the condition_block of this LabelSourceSummary. :return: The condition_block of this LabelSourceSummary. :rtype: oci.log_analytics.models.ConditionBlock """ return self._condition_block @condition_block.setter def condition_block(self, condition_block): """ Sets the condition_block of this LabelSourceSummary. :param condition_block: The condition_block of this LabelSourceSummary. :type: oci.log_analytics.models.ConditionBlock """ self._condition_block = condition_block @property def label_field_displayname(self): """ Gets the label_field_displayname of this LabelSourceSummary. The label field display name. :return: The label_field_displayname of this LabelSourceSummary. :rtype: str """ return self._label_field_displayname @label_field_displayname.setter def label_field_displayname(self, label_field_displayname): """ Sets the label_field_displayname of this LabelSourceSummary. The label field display name. :param label_field_displayname: The label_field_displayname of this LabelSourceSummary. :type: str """ self._label_field_displayname = label_field_displayname @property def label_field_name(self): """ Gets the label_field_name of this LabelSourceSummary. The label field name. :return: The label_field_name of this LabelSourceSummary. :rtype: str """ return self._label_field_name @label_field_name.setter def label_field_name(self, label_field_name): """ Sets the label_field_name of this LabelSourceSummary. The label field name. :param label_field_name: The label_field_name of this LabelSourceSummary. :type: str """ self._label_field_name = label_field_name 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