in gstack/controllers/__init__.py [0:0]
def get_item_with_name(authorization, name, args, type):
response = _get_items(
authorization=authorization,
args=args
)
if 'count' in response:
response = filter_by_name(
data=response[type],
name=name
)
return response
else:
return None