Displaying 7 results from an estimated 7 matches for "vmsservice".
Did you mean:
vms_service
2019 Apr 15
1
[PATCH] v2v: -o rhv-upload: check whether the cluster exists
...return SystemService()
class SystemService(object):
+ def clusters_service(self):
+ return ClustersService()
+
def data_centers_service(self):
return DataCentersService()
@@ -54,6 +57,10 @@ class SystemService(object):
def vms_service(self):
return VmsService()
+class ClustersService(object):
+ def list(self, search=None, case_sensitive=False):
+ return ["Default"]
+
class DataCentersService(object):
def list(self, search=None, case_sensitive=False):
return []
--
2.20.1
2019 Sep 19
2
[PATCH] v2v: -o rhv-upload: adapt phony ovirtsdk4 module to recent changes
...debug=True,
):
pass
def close(self):
pass
+ def follow_link(self, objs):
+ return objs
+
def system_service(self):
return SystemService()
@@ -60,26 +64,31 @@ class SystemService(object):
def vms_service(self):
return VmsService()
+class ClusterService(object):
+ def get(self):
+ return types.Cluster()
+
class ClustersService(object):
- def list(self, search=None, case_sensitive=False):
- return ["Default"]
+ def cluster_service(self, id):
+ return ClusterService()
class DataCe...
2020 Jan 10
7
[v2v PATCH 0/6] Various Python pycodestyle fixes
Fixes the majority of the pycodestyle issues in the Python scripts, and
fix the existing test-v2v-python-syntax.sh to use pycodestyle to
actually perform style checks.
Pino Toscano (6):
PEP 8: adapt whitespaces in lines
PEP 8: move imports at the top
PEP 8: adapt empty lines
tests: find all the Python scripts for syntax checks
-o rhv-upload: remove unused Python imports
Revamp check
2018 Sep 20
0
[PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
...eturn DataCentersService()
+
+ def disks_service(self):
+ return DisksService()
+
+ def image_transfers_service(self):
+ return ImageTransfersService()
+
+ def storage_domains_service(self):
+ return StorageDomainsService()
+
+ def vms_service(self):
+ return VmsService()
+
+class DataCentersService(object):
+ def list(self, search=None, case_sensitive=False):
+ return []
+
+class DiskService(object):
+ def __init__(self, disk_id):
+ self._disk_id = disk_id
+
+ def get(self):
+ return types.Disk()
+
+ def remove(self):
+ pas...
2018 Sep 20
7
[PATCH v2 0/3] v2v: -o rhv-upload: Add a test.
v1 was here:
https://www.redhat.com/archives/libguestfs/2018-September/msg00121.html
v2:
- Rewrote patch 2 from scratch so it incorporates Nir's suggestions.
- Add fake module to EXTRA_DIST.
- Retested.
Unfortunately I am no longer able to test the ordinary conversion path
because ovirtsdk4 is incompatible with Fedora 29 / Python 3.7:
2018 Sep 19
4
[PATCH 0/3] v2v: -o rhv-upload: Add a test.
This adds a test of -o rhv-upload.
Obviously for an upstream test we cannot require a working oVirt
server. This test works by faking the ovirtsdk4 Python module,
setting PYTHONPATH so that the fake module is picked up instead of the
real module (if installed).
However it's more complex than that because the nbdkit plugin also
expects to talk to a working imageio HTTPS server. Therefore
2018 Oct 09
2
Re: [PATCH v2 3/3] v2v: -o rhv-upload: Add a test.
...e(self):
> + return DisksService()
> +
> + def image_transfers_service(self):
> + return ImageTransfersService()
> +
> + def storage_domains_service(self):
> + return StorageDomainsService()
> +
> + def vms_service(self):
> + return VmsService()
> +
> +class DataCentersService(object):
> + def list(self, search=None, case_sensitive=False):
> + return []
> +
> +class DiskService(object):
> + def __init__(self, disk_id):
> + self._disk_id = disk_id
> +
> + def get(self):
> + re...