modified field names
[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         'client_id': None,
10         'authority_id': None,    
11         'exclusive': None,
12         'location': None,
13         'bw_unallocated': None,
14         'bw_limit': None,
15         'boot_state': None,    
16         'slivers': [],
17         'hardware_types': [],
18         'disk_images': [],
19         'interfaces': [],
20         'tags': [],
21     }
22                 
23