예제 #1
0
    def delete(self, **kwargs):
        """Delete is not supported for Classification

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the delete method" %
                                   self.__class__.__name__)
예제 #2
0
    def delete(self):
        """Delete is not supported for Signature System resource

                :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the delete method" %
                                   self.__class__.__name__)
예제 #3
0
    def modify(self, **kwargs):
        """Modify is not supported for History Revision resources

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the modify method" %
                                   self.__class__.__name__)
예제 #4
0
    def update(self, **kwargs):
        """Update is not supported for Web Security

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the update method" %
                                   self.__class__.__name__)
예제 #5
0
    def create(self, **kwargs):
        """Modify is not supported for Suggestions resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the create method" %
                                   self.__class__.__name__)
예제 #6
0
    def update(self, **kwargs):
        """Update is not supported for Volume resource.

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the update method." %
                                   self.__class__.__name__)
예제 #7
0
    def delete(self, **kwargs):
        """Delete is not supported for Web Services Security resources

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the delete method" %
                                   self.__class__.__name__)
예제 #8
0
    def modify(self, **kwargs):
        """Modify is not supported for Apply Policy resource

                :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the modify method" %
                                   self.__class__.__name__)
예제 #9
0
    def modify(self, **patch):
        """Modify is not supported for Topology

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the modify method" %
                                   self.__class__.__name__)
예제 #10
0
    def modify(self, **kwargs):
        """Modify is not supported for Sensitive Parameters resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the update method" %
                                   self.__class__.__name__)
    def update(self, **kwargs):
        """Update is not supported for Redirection Protection resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the update method" %
                                   self.__class__.__name__)
예제 #12
0
    def delete(self):
        """Delete is not supported for interfaces.

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedOperation`
        """
        raise UnsupportedOperation(
            "BigIP interfaces cannot be deleted by users")
예제 #13
0
    def create(self, **kwargs):
        """Create is not supported for interfaces.

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedOperation`
        """
        raise UnsupportedOperation(
            "BigIP interfaces cannot be created by users")
예제 #14
0
    def delete(self):
        """Delete is not supported for trust domains.

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedOperation`
        """
        raise UnsupportedOperation(
            "BIG-IP trust domains cannot be deleted by users")
예제 #15
0
    def update(self, **kwargs):
        '''Update is not supported for statistics.

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedOperation`
        '''
        raise UnsupportedOperation(
            'Stats do not support create, only load and refresh')
예제 #16
0
    def modify(self, **kwargs):
        """Modify is not supported for Import Vulnerabilities resource

                :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the modify method" %
                                   self.__class__.__name__)
예제 #17
0
    def delete(self, **kwargs):
        """Delete is not supported for Vulnerabilities resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the delete method" %
                                   self.__class__.__name__)
예제 #18
0
    def update(self, **kwargs):
        """Update is not supported for Vulnerability Assessment resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the update method" %
                                   self.__class__.__name__)
예제 #19
0
    def update(self, **kwargs):
        """Update is not supported for Policy Builder resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the update method" %
                                   self.__class__.__name__)
예제 #20
0
    def modify(self, **kwargs):
        """Modify is not supported for Volume resource.

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the modify method." %
                                   self.__class__.__name__)
예제 #21
0
    def update(self, **kwargs):
        """Update is not supported for IP Intelligence resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the update method" %
                                   self.__class__.__name__)
예제 #22
0
    def create(self, **kwargs):
        """Create is not supported for History Revision resources

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the create method" %
                                   self.__class__.__name__)
예제 #23
0
    def create(self, **kwargs):
        """Create is not supported for hotfix resource.

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the create method." %
                                   self.__class__.__name__)
예제 #24
0
    def delete(self, **kwargs):
        """Delete is not supported for Response Page resources

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the delete method" %
                                   self.__class__.__name__)
예제 #25
0
    def create(self, **kwargs):
        """Create is not supported for Signature System resource

                :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the create method" %
                                   self.__class__.__name__)
예제 #26
0
    def refresh(self, **kwargs):
        """Refresh is not supported for Web Security

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the refresh method" %
                                   self.__class__.__name__)
예제 #27
0
    def create(self, **kwargs):
        """Create is not supported for profile sub-collection

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation("%s does not support the modify method" %
                                   self.__class__.__name__)
예제 #28
0
    def create(self, **kwargs):
        """Create is not supported for trust domains.

        :raises: :exc:`~f5.BIG-IP.resource.UnsupportedOperation`
        """
        raise UnsupportedOperation(
            "BIG-IP trust domains cannot be created by users")
예제 #29
0
    def update(self, **kwargs):
        """Update is not supported for Session Tracking resource

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation(
            "%s does not support the update method" % self.__class__.__name__
        )
예제 #30
0
    def create(self, **kwargs):
        """Create is not supported for Device_Config

        :raises: UnsupportedOperation
        """
        raise UnsupportedOperation(
            "%s does not support the update method" % self.__class__.__name__
        )