Server IP : 103.119.228.120 / Your IP : 3.144.48.72 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 : /lib/mysqlsh/lib/python3.9/site-packages/oci/stack_monitoring/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: 20210330 from .metric_extension_query_properties import MetricExtensionQueryProperties 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 JmxQueryProperties(MetricExtensionQueryProperties): """ Query Properties applicable to JMX type of collection method """ def __init__(self, **kwargs): """ Initializes a new JmxQueryProperties object with values from keyword arguments. The default value of the :py:attr:`~oci.stack_monitoring.models.JmxQueryProperties.collection_method` attribute of this class is ``JMX`` and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param collection_method: The value to assign to the collection_method property of this JmxQueryProperties. Allowed values for this property are: "OS_COMMAND", "SQL", "JMX" :type collection_method: str :param managed_bean_query: The value to assign to the managed_bean_query property of this JmxQueryProperties. :type managed_bean_query: str :param jmx_attributes: The value to assign to the jmx_attributes property of this JmxQueryProperties. :type jmx_attributes: str :param identity_metric: The value to assign to the identity_metric property of this JmxQueryProperties. :type identity_metric: str :param auto_row_prefix: The value to assign to the auto_row_prefix property of this JmxQueryProperties. :type auto_row_prefix: str :param is_metric_service_enabled: The value to assign to the is_metric_service_enabled property of this JmxQueryProperties. :type is_metric_service_enabled: bool """ self.swagger_types = { 'collection_method': 'str', 'managed_bean_query': 'str', 'jmx_attributes': 'str', 'identity_metric': 'str', 'auto_row_prefix': 'str', 'is_metric_service_enabled': 'bool' } self.attribute_map = { 'collection_method': 'collectionMethod', 'managed_bean_query': 'managedBeanQuery', 'jmx_attributes': 'jmxAttributes', 'identity_metric': 'identityMetric', 'auto_row_prefix': 'autoRowPrefix', 'is_metric_service_enabled': 'isMetricServiceEnabled' } self._collection_method = None self._managed_bean_query = None self._jmx_attributes = None self._identity_metric = None self._auto_row_prefix = None self._is_metric_service_enabled = None self._collection_method = 'JMX' @property def managed_bean_query(self): """ **[Required]** Gets the managed_bean_query of this JmxQueryProperties. JMX Managed Bean Query or Metric Service Table name :return: The managed_bean_query of this JmxQueryProperties. :rtype: str """ return self._managed_bean_query @managed_bean_query.setter def managed_bean_query(self, managed_bean_query): """ Sets the managed_bean_query of this JmxQueryProperties. JMX Managed Bean Query or Metric Service Table name :param managed_bean_query: The managed_bean_query of this JmxQueryProperties. :type: str """ self._managed_bean_query = managed_bean_query @property def jmx_attributes(self): """ **[Required]** Gets the jmx_attributes of this JmxQueryProperties. List of JMX attributes or Metric Service Table columns separated by semi-colon :return: The jmx_attributes of this JmxQueryProperties. :rtype: str """ return self._jmx_attributes @jmx_attributes.setter def jmx_attributes(self, jmx_attributes): """ Sets the jmx_attributes of this JmxQueryProperties. List of JMX attributes or Metric Service Table columns separated by semi-colon :param jmx_attributes: The jmx_attributes of this JmxQueryProperties. :type: str """ self._jmx_attributes = jmx_attributes @property def identity_metric(self): """ Gets the identity_metric of this JmxQueryProperties. Semi-colon separated list of key properties from Managed Bean ObjectName to be used as key metrics :return: The identity_metric of this JmxQueryProperties. :rtype: str """ return self._identity_metric @identity_metric.setter def identity_metric(self, identity_metric): """ Sets the identity_metric of this JmxQueryProperties. Semi-colon separated list of key properties from Managed Bean ObjectName to be used as key metrics :param identity_metric: The identity_metric of this JmxQueryProperties. :type: str """ self._identity_metric = identity_metric @property def auto_row_prefix(self): """ Gets the auto_row_prefix of this JmxQueryProperties. Prefix for an auto generated metric, in case multiple rows with non unique key values are returned :return: The auto_row_prefix of this JmxQueryProperties. :rtype: str """ return self._auto_row_prefix @auto_row_prefix.setter def auto_row_prefix(self, auto_row_prefix): """ Sets the auto_row_prefix of this JmxQueryProperties. Prefix for an auto generated metric, in case multiple rows with non unique key values are returned :param auto_row_prefix: The auto_row_prefix of this JmxQueryProperties. :type: str """ self._auto_row_prefix = auto_row_prefix @property def is_metric_service_enabled(self): """ Gets the is_metric_service_enabled of this JmxQueryProperties. Indicates if Metric Service is enabled on server domain :return: The is_metric_service_enabled of this JmxQueryProperties. :rtype: bool """ return self._is_metric_service_enabled @is_metric_service_enabled.setter def is_metric_service_enabled(self, is_metric_service_enabled): """ Sets the is_metric_service_enabled of this JmxQueryProperties. Indicates if Metric Service is enabled on server domain :param is_metric_service_enabled: The is_metric_service_enabled of this JmxQueryProperties. :type: bool """ self._is_metric_service_enabled = is_metric_service_enabled 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