コード例 #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
ファイル: file.py プロジェクト: levensailor/pip4lambda
    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
ファイル: log_config.py プロジェクト: levensailor/pip4lambda
    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
ファイル: log_config.py プロジェクト: levensailor/pip4lambda
    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
ファイル: mixins.py プロジェクト: levensailor/pip4lambda
    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
ファイル: mixins.py プロジェクト: levensailor/pip4lambda
    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
ファイル: host_info.py プロジェクト: levensailor/pip4lambda
    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
ファイル: service.py プロジェクト: levensailor/pip4lambda
    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
ファイル: authn.py プロジェクト: levensailor/pip4lambda
 def get_collection(self, **kwargs):
     raise UnsupportedMethod(
         "%s does not support get_collection" % self.__class__.__name__
     )