aliyun/log/logclient.py [4689:4700]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if not isinstance(topostore_name, str):
            raise TypeError("topostore_name type must be str")
        if not isinstance(node, TopostoreNode):
            raise TypeError("node must be instance of TopostoreNode ")
        params = {}
        node.check_for_create()
        body = node.to_dict()
        property = node.get_property()
        if property:
            body['property'] = json.dumps(property)
        body_str = six.b(json.dumps(body))
        headers = {'x-log-bodyrawsize': str(len(body_str))}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aliyun/log/logclient.py [4745:4756]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if not isinstance(topostore_name, str):
            raise TypeError("topostore_name type must be str")
        if not isinstance(node, TopostoreNode):
            raise TypeError("node must be instance of TopostoreNode ")
        params = {}
        node.check_for_create()
        body = node.to_dict()
        property = node.get_property()
        if property:
            body['property'] = json.dumps(property)
        body_str = six.b(json.dumps(body))
        headers = {'x-log-bodyrawsize': str(len(body_str))}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



