示例#1
0
    def update(self, **kwargs):
        '''Update is not supported for License Activation

        :raises: UnsupportedOperation
        '''
        raise UnsupportedMethod("%s does not support the update method" %
                                self.__class__.__name__)
示例#2
0
    def modify(self, **kwargs):
        '''Modify is not supported for iFiles

        :raises: UnsupportedOperation
        '''
        raise UnsupportedMethod("%s does not support the update method" %
                                self.__class__.__name__)
示例#3
0
    def create(self, **kwargs):
        '''Create is not supported for Local_Syslog

        :raises: UnsupportedOperation
        '''
        raise UnsupportedMethod("%s does not support the create method" %
                                self.__class__.__name__)
示例#4
0
    def update(self, **kwargs):
        '''Update is not supported.

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedMethod`
        '''
        raise UnsupportedMethod(
            'Stats do not support create, only load and refresh')
示例#5
0
    def update(self, **kwargs):
        '''Update is not supported for LTM Auth Profiles

        :raises: UnsupportedOperation
        '''
        raise UnsupportedMethod("%s does not support the modify method" %
                                self.__class__.__name__)
示例#6
0
    def delete(self, **kwargs):
        '''Delete is not supported for Alertd

        :raises: UnsupportedOperation
        '''
        raise UnsupportedMethod("%s does not support the delete method" %
                                self.__class__.__name__)
示例#7
0
    def load(self, **kwargs):
        """Load is not supported for command execution

                :raises: UnsupportedOperation
        """
        raise UnsupportedMethod("%s does not support the load method" %
                                self.__class__.__name__)
示例#8
0
    def delete(self, **kwargs):
        """Delete is not supported for command execution

        :raises: UnsupportedOperation
        """
        raise UnsupportedMethod("%s does not support the delete method" %
                                self.__class__.__name__)
示例#9
0
    def update(self, **kwargs):
        """Update is not supported for host info

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedMethod`
        """
        raise UnsupportedMethod(
            "{0} does not support the update method, only load and refresh".
            format(self.__class__.__name__))
示例#10
0
    def modify(self, **kwargs):
        """Update is not supported

        :raises: UnsupportedMethod
        """
        raise UnsupportedMethod(
            "%s does not support the modify method" % self.__class__.__name__
        )
示例#11
0
    def modify(self, **kwargs):
        """Modify is not supported for logical disk.

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedMethod`
        """
        raise UnsupportedMethod(
            "{0} does not support the modify method, only load and refresh".
            format(self.__class__.__name__))
示例#12
0
    def update(self, **kwargs):
        '''Update is not supported for BIG-IP® failover state.

        :raises: UnsupportedOperation
        '''
        raise UnsupportedMethod(
            "%s does not support the update method" % self.__class__.__name__
        )
示例#13
0
 def modify(self, **kwargs):
     raise UnsupportedMethod("%s does not support the delete method" %
                             self.__class__.__name__)
示例#14
0
 def create(self, **kwargs):
     raise UnsupportedMethod("%s does not support the create method" %
                             self.__class__.__name__)
示例#15
0
 def create(self, **kwargs):
     raise UnsupportedMethod(
         "Only a single remote mcp auth provider allowed.")
示例#16
0
 def get_collection(self, **kwargs):
     raise UnsupportedMethod(
         "%s does not support get_collection" % self.__class__.__name__
     )