def __init__(self): super(ImageCache, self).__init__() self._pathutils = utilsfactory.get_pathutils() self._vhdutils = utilsfactory.get_vhdutils() self.used_images = [] self.unexplained_images = [] self.originals = []
def __init__(self): self._hostutils = utilsfactory.get_hostutils() self._vmutils = utilsfactory.get_vmutils() self._vhdutils = utilsfactory.get_vhdutils() self._pathutils = utilsfactory.get_pathutils() self._volumeops = volumeops.VolumeOps() self._vmops = vmops.VMOps() self._imagecache = imagecache.ImageCache()
def __init__(self): self._hostutils = utilsfactory.get_hostutils() self._vmutils = utilsfactory.get_vmutils() self._vhdutils = utilsfactory.get_vhdutils() self._pathutils = utilsfactory.get_pathutils() self._volumeops = volumeops.VolumeOps() self._vmops = vmops.VMOps() self._imagecache = imagecache.ImageCache() self._block_dev_manager = block_device_manager.BlockDeviceInfoManager()
def __init__(self): self._vmutils = utilsfactory.get_vmutils() self._vhdutils = utilsfactory.get_vhdutils() self._pathutils = utilsfactory.get_pathutils() self._hostutils = utilsfactory.get_hostutils() self._serial_console_ops = serialconsoleops.SerialConsoleOps() self._volumeops = volumeops.VolumeOps() self._imagecache = imagecache.ImageCache() self._vif_driver_cache = {}
def __init__(self): self._vmutils = utilsfactory.get_vmutils() self._vhdutils = utilsfactory.get_vhdutils() self._pathutils = utilsfactory.get_pathutils() self._hostutils = utilsfactory.get_hostutils() self._serial_console_ops = serialconsoleops.SerialConsoleOps() self._volumeops = volumeops.VolumeOps() self._imagecache = imagecache.ImageCache() self._vif_driver_cache = {} self._block_device_manager = ( block_device_manager.BlockDeviceInfoManager())
def __init__(self): # Live migration is supported starting from Hyper-V Server 2012 if utilsfactory.get_hostutils().check_min_windows_version(6, 2): self._livemigrutils = utilsfactory.get_livemigrationutils() else: self._livemigrutils = None self._pathutils = utilsfactory.get_pathutils() self._vmops = vmops.VMOps() self._volumeops = volumeops.VolumeOps() self._serial_console_ops = serialconsoleops.SerialConsoleOps() self._imagecache = imagecache.ImageCache()
def __init__(self, instance_name): self._vmutils = utilsfactory.get_vmutils() self._pathutils = utilsfactory.get_pathutils() self._instance_name = instance_name self._log_path = self._pathutils.get_vm_console_log_paths( self._instance_name)[0] self._client_connected = None self._input_queue = None self._output_queue = None self._serial_proxy = None self._workers = []
def __init__(self): self._hostutils = utilsfactory.get_hostutils() self._pathutils = utilsfactory.get_pathutils()
def __init__(self): self._pathutils = utilsfactory.get_pathutils() self._vhdutils = utilsfactory.get_vhdutils()
def __init__(self): self._pathutils = utilsfactory.get_pathutils() self._vmutils = utilsfactory.get_vmutils() self._volutils = utilsfactory.get_volumeutils() self._username_regex = re.compile(r'user(?:name)?=([^, ]+)') self._password_regex = re.compile(r'pass(?:word)?=([^, ]+)')
def __init__(self): self._pathutils = utilsfactory.get_pathutils() self._vmutils = utilsfactory.get_vmutils() self._vhdutils = utilsfactory.get_vhdutils()
def __init__(self): self._hostutils = utilsfactory.get_hostutils() self._pathutils = utilsfactory.get_pathutils() self._vmutils = utilsfactory.get_vmutils() self._vmops = vmops.VMOps() self._api = api.API()