fix merge problem
[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         'sliver_id': None,
11         'authority_id': None,    
12         'exclusive': None,
13         'location': None,
14         'bw_unallocated': None,
15         'bw_limit': None,
16         'boot_state': None,    
17         'slivers': [],
18         'hardware_types': [],
19         'disk_images': [],
20         'interfaces': [],
21         'services': [],
22         'tags': [],
23         'pl_initscripts': [],
24     }
25                 
26