Пример #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__
     )