initial checkin
[sfa.git] / sfa / rspecs / elements / node.py
1 from sfa.rspecs.elements.element import Element
2  
3 class Node(Element):
4     
5     fields = {
6         'component_id': None,
7         'component_name': None,
8         'component_manager_id': None,
9         'authority_id': None,    
10         'exclusive': None,
11         'location': None,
12         'bw_unallocated': None,
13         'bw_limit': None,
14         'boot_state': None,    
15         'slivers': [],
16         'hardware_type': [],
17         'disk_image': [],
18         'interfaces': [],
19         'tags': [],
20     }
21                 
22