示例#1
0
 def put(self, blueprint_id, **kwargs):
     """
     Upload a blueprint (id specified)
     """
     with resources.skip_nested_marshalling():
         return super(BlueprintsId, self).put(blueprint_id=blueprint_id,
                                              **kwargs)
示例#2
0
 def delete(self, blueprint_id, **kwargs):
     """
     Delete blueprint by id
     """
     with resources.skip_nested_marshalling():
         return super(BlueprintsId, self).delete(
             blueprint_id=blueprint_id, **kwargs)
示例#3
0
 def put(self, blueprint_id, **kwargs):
     """
     Upload a blueprint (id specified)
     """
     with resources.skip_nested_marshalling():
         return super(BlueprintsId, self).put(blueprint_id=blueprint_id,
                                              **kwargs)
示例#4
0
 def delete(self, blueprint_id, **kwargs):
     """
     Delete blueprint by id
     """
     with resources.skip_nested_marshalling():
         return super(BlueprintsId, self).delete(blueprint_id=blueprint_id,
                                                 **kwargs)
示例#5
0
 def get(self, blueprint_id, _include=None, **kwargs):
     """
     Get blueprint by id
     """
     with resources.skip_nested_marshalling():
         return super(BlueprintsId, self).get(blueprint_id=blueprint_id,
                                              _include=_include,
                                              **kwargs)
 def get(self, blueprint_id, _include=None, **kwargs):
     """
     Get blueprint by id
     """
     with resources.skip_nested_marshalling():
         return super(BlueprintsId, self).get(blueprint_id=blueprint_id,
                                              _include=_include,
                                              **kwargs)
 def wrapper(*args, **kwargs):
     with resources.skip_nested_marshalling():
         return f(*args, **kwargs)
 def wrapper(*args, **kwargs):
     with resources.skip_nested_marshalling():
         return f(*args, **kwargs)