| 92 | |
| 93 | |
| 94 | class trafficType(object): |
| 95 | |
| 96 | def __init__(self, typ, labeldict=None): |
| 97 | self.typ = typ # Guest/Management/Public |
| 98 | if labeldict: |
| 99 | self.xen = labeldict['xen'] if 'xen' in list(labeldict.keys()) else None |
| 100 | self.kvm = labeldict['kvm'] if 'kvm' in list(labeldict.keys()) else None |
| 101 | self.vmware = labeldict['vmware']\ |
| 102 | if 'vmware' in list(labeldict.keys()) else None |
| 103 | self.simulator = labeldict['simulator']\ |
| 104 | if 'simulator' in list(labeldict.keys()) else None |
| 105 | |
| 106 | |
| 107 | class pod(object): |
no outgoing calls
no test coverage detected